Page MenuHomec4science

No OneTemporary

File Metadata

Created
Fri, Jun 6, 19:26
This file is larger than 256 KB, so syntax highlighting was skipped.
diff --git a/EscapeTheGhost/.gitignore b/EscapeTheGhost/.gitignore
deleted file mode 100644
index 51c8639..0000000
--- a/EscapeTheGhost/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-Temp/*
diff --git a/EscapeTheGhost/Assets/Cellulo.cs b/EscapeTheGhost/Assets/Cellulo.cs
deleted file mode 100644
index 29aec3e..0000000
--- a/EscapeTheGhost/Assets/Cellulo.cs
+++ /dev/null
@@ -1,203 +0,0 @@
-using UnityEngine;
-using System.Collections;
-using System.Runtime.InteropServices;
-
-public class Cellulo {
- // id inside the library
- private long id;
-
- // constructor: connect to robot
- public Cellulo()
- {
- id = newRobot();
- if(id == 0) {
- Debug.Log("WARNING: using zero pointer as a Cellulo object. It means that Cellulo object creation failed.");
- return;
- }
- }
-
- // disconnect from robot on exit
- ~Cellulo() {
- destroyRobot(id);
- }
-
- // INIT Library, must call a bit before connecting
- [DllImport ("cellulo-unity")]
- public static extern void initialize();
-
- // number of robots in the pool
- [DllImport ("cellulo-unity")]
- public static extern long totalRobots();
-
- // number of robots available (not used in Unity yet)
- [DllImport ("cellulo-unity")]
- public static extern long robotsRemaining();
-
- // Cellulo methods export below...
- [DllImport ("cellulo-unity")]
- private static extern long newRobot();
- [DllImport ("cellulo-unity")]
- private static extern void destroyRobot(long id);
- [DllImport ("cellulo-unity")]
- private static extern void setGoalVelocity(long robot, float vx, float vy, float w);
- public void setGoalVelocity(float vx, float vy, float w) {
- if(id == 0) {
- Debug.Log("Robot is broken (connection to pool failed). Cannot do API call");
- return;
- }
- setGoalVelocity(id, vx, -vy, w);
- }
-
- [DllImport ("cellulo-unity")]
- private static extern void setGoalPose(long robot, float x, float y, float theta, float v, float w);
- public void setGoalPose(float x, float y, float theta, float v, float w) {
- if(id == 0) {
- Debug.Log("Robot is broken (connection to pool failed). Cannot do API call");
- return;
- }
- setGoalPose(id, x, -y, theta, v, w);
- }
-
- [DllImport ("cellulo-unity")]
- private static extern void setGoalPosition(long robot, float x, float y, float v);
- public void setGoalPosition(float x, float y, float v) {
- if(id == 0) {
- Debug.Log("Robot is broken (connection to pool failed). Cannot do API call");
- return;
- }
- setGoalPosition(id, x, -y, v);
- }
-
- [DllImport ("cellulo-unity")]
- private static extern void clearTracking(long robot);
- public void clearTracking() {
- if(id == 0) {
- Debug.Log("Robot is broken (connection to pool failed). Cannot do API call");
- return;
- }
- clearTracking(id);
- }
-
- [DllImport ("cellulo-unity")]
- private static extern void clearHapticFeedback(long robot);
- public void clearHapticFeedback() {
- if(id == 0) {
- Debug.Log("Robot is broken (connection to pool failed). Cannot do API call");
- return;
- }
- clearHapticFeedback(id);
- }
-
- [DllImport ("cellulo-unity")]
- private static extern void setVisualEffect(long robot, long effect, long r, long g, long b, long value);
- public void setVisualEffect(long effect, long r, long g, long b, long value) {
- if(id == 0) {
- Debug.Log("Robot is broken (connection to pool failed). Cannot do API call");
- return;
- }
- setVisualEffect(id, effect, r, g, b, value);
- }
-
-
- [DllImport ("cellulo-unity")]
- private static extern void setCasualBackdriveAssistEnabled(long robot, long enabled);
- public void setCasualBackdriveAssistEnabled(long enabled) {
- if(id == 0) {
- Debug.Log("Robot is broken (connection to pool failed). Cannot do API call");
- return;
- }
- setCasualBackdriveAssistEnabled(id, enabled);
- }
-
- [DllImport ("cellulo-unity")]
- private static extern void setHapticBackdriveAssist(long robot, float xAssist, float yAssist, float thetaAssist);
- public void setHapticBackdriveAssist(float xAssist, float yAssist, float thetaAssist) {
- if(id == 0) {
- Debug.Log("Robot is broken (connection to pool failed). Cannot do API call");
- return;
- }
- setHapticBackdriveAssist(id, xAssist, yAssist, thetaAssist);
- }
-
- [DllImport ("cellulo-unity")]
- private static extern void reset(long robot);
- public void reset() {
- if(id == 0) {
- Debug.Log("Robot is broken (connection to pool failed). Cannot do API call");
- return;
- }
- reset(id);
- }
-
- [DllImport ("cellulo-unity")]
- private static extern void simpleVibrate(long robot, float iX, float iY, float iTheta, long period, long duration);
- public void simpleVibrate(float iX, float iY, float iTheta, long period, long duration) {
- if(id == 0) {
- Debug.Log("Robot is broken (connection to pool failed). Cannot do API call");
- return;
- }
- simpleVibrate(id, iX, iY, iTheta, period, duration);
- }
-
- [DllImport ("cellulo-unity")]
- private static extern float getX(long robot);
- public float getX() {
- if(id == 0) {
- Debug.Log("Robot is broken (connection to pool failed). Cannot do API call");
- return(0.0f);
- }
- return getX(id);
- }
-
- [DllImport ("cellulo-unity")]
- private static extern float getY(long robot);
- public float getY() {
- if(id == 0) {
- Debug.Log("Robot is broken (connection to pool failed). Cannot do API call");
- return(0.0f);
- }
- // Unity's y is up
- return -getY(id);
- }
-
- [DllImport ("cellulo-unity")]
- private static extern float getTheta(long robot);
- public float getTheta() {
- if(id == 0) {
- Debug.Log("Robot is broken (connection to pool failed). Cannot do API call");
- return(0.0f);
- }
- return getTheta(id);
- }
-
- [DllImport ("cellulo-unity")]
- private static extern long getKidnapped(long robot);
- public bool getKidnapped() {
- if(id == 0) {
- Debug.Log("Robot is broken (connection to pool failed). Cannot do API call");
- return(false);
- }
- return getKidnapped(id) > 0;
- }
-
- // defining the type
- public delegate void kidnappedCallbackType();
-
- // our variable (need to remember the value, otherwise it gets garbage collected)
- // See https://forum.unity.com/threads/native-plugin-c-interop-crash-in-callback.337178/
- private kidnappedCallbackType kidnappedCallback;
-
- // function from C to set the callback
- [DllImport ("cellulo-unity")]
- private static extern void setKidnappedCallback(long robot, kidnappedCallbackType callback);
-
- // public function in C# to set the callback
- public void setKidnappedCallback(kidnappedCallbackType callback) {
- if(id == 0) {
- Debug.Log("Robot is broken (connection to pool failed). Cannot do API call");
- return;
- }
- kidnappedCallback = callback;
- setKidnappedCallback(id, kidnappedCallback);
- }
-}
diff --git a/EscapeTheGhost/Assets/Cellulo.cs.meta b/EscapeTheGhost/Assets/Cellulo.cs.meta
deleted file mode 100644
index 5279bac..0000000
--- a/EscapeTheGhost/Assets/Cellulo.cs.meta
+++ /dev/null
@@ -1,11 +0,0 @@
-fileFormatVersion: 2
-guid: 7648cb5b603be420181d45567fb411b0
-MonoImporter:
- externalObjects: {}
- serializedVersion: 2
- defaultReferences: []
- executionOrder: 0
- icon: {instanceID: 0}
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/EscapeTheGhost/Assets/CelluloCollider.cs b/EscapeTheGhost/Assets/CelluloCollider.cs
deleted file mode 100644
index 83e94f4..0000000
--- a/EscapeTheGhost/Assets/CelluloCollider.cs
+++ /dev/null
@@ -1,21 +0,0 @@
-using UnityEngine;
-using System.Collections;
-
-public class CelluloCollider : MonoBehaviour
-{
- public GameScript controller;
-
- void Start()
- {
- }
-
- void OnCollisionEnter2D(Collision2D collision)
- {
- if(collision.gameObject.name == "Capsule") {
- controller.solved();
- }
- else {
- controller.vibrate();
- }
- }
-}
diff --git a/EscapeTheGhost/Assets/CelluloCollider.cs.meta b/EscapeTheGhost/Assets/CelluloCollider.cs.meta
deleted file mode 100644
index 4d9d984..0000000
--- a/EscapeTheGhost/Assets/CelluloCollider.cs.meta
+++ /dev/null
@@ -1,11 +0,0 @@
-fileFormatVersion: 2
-guid: d6281499612ea4fb7ad0766e692e5c6d
-MonoImporter:
- externalObjects: {}
- serializedVersion: 2
- defaultReferences: []
- executionOrder: 0
- icon: {instanceID: 0}
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/EscapeTheGhost/Assets/GameScript.cs b/EscapeTheGhost/Assets/GameScript.cs
deleted file mode 100644
index 873a74e..0000000
--- a/EscapeTheGhost/Assets/GameScript.cs
+++ /dev/null
@@ -1,131 +0,0 @@
-using System;
-using System.Collections;
-using System.Collections.Generic;
-using UnityEngine;
-using UnityEngine.UI;
-
-public class GameScript : MonoBehaviour {
- public Cellulo robot1;
- public Cellulo robot2;
- public GameObject obj1;
- public GameObject obj2;
- private float start_time;
- private float vibrate_start_time;
- private float update_time_s = 1;
- private float vibrate_time_s = 0.5f;
- private float min_dist_mm = 80;
- private bool wasKidnapped = false;
- private bool isRunning = false;
- public Text infoText;
-
- private void setInfo(string s) {
- infoText.text = "EscapeTheGhost: " + s;
- }
-
- public void start() {
- wasKidnapped = false;
- onKidnappedChanged();
- if(robot1 != null) {
- robot1.clearTracking();
- robot2.clearTracking();
- robot2.setHapticBackdriveAssist(0.8f, 0.8f, 0.8f);
- }
- isRunning = true;
- setGhostColor(255, 0, 0);
- setInfo("Game started");
- }
-
- public void stop() {
- isRunning = false;
- initRobots();
- }
-
- public void solved() {
- if(!isRunning) return;
- stop();
- setInfo("You win!");
- robot2.setVisualEffect(0, 0, 255, 0, 255);
- }
-
- void setGhostColor(int r, int g, int b) {
- // https://docs.unity3d.com/ScriptReference/Material.SetColor.html
- //Fetch the Renderer from the GameObject
- Renderer rend = obj1.GetComponent<Renderer>();
-
- //Set the main Color of the Material to green
- Color color = new Color(r, g, b);
- rend.material.SetColor("_Color", color);
- if(robot1 != null) robot1.setVisualEffect(0, r, g, b, 255);
- }
-
- void connect() {
- if(robot1 != null) return;
- robot1 = new Cellulo(); // just taking new robot from the pool or failing
- robot2 = new Cellulo();
- robot1.setKidnappedCallback(this.onKidnappedChanged);
- robot2.setKidnappedCallback(this.onKidnappedChanged);
- }
-
- // Use this for initialization
- void Start () {
- Cellulo.initialize();
- start_time = Time.time;
- vibrate_start_time = 0;
- }
-
- void initRobots() {
- robot1.setHapticBackdriveAssist(0, 0, 0);
- robot1.setGoalPose(40, -40, 0, 1000, 1000);
- robot2.setHapticBackdriveAssist(0, 0, 0);
- robot2.setGoalPose(40, -180, 0, 1000, 1000);
- robot2.setVisualEffect(0, 0, 0, 255, 255);
- setGhostColor(0, 255, 0);
- wasKidnapped = false;
- onKidnappedChanged();
- setInfo("Robots initialized");
- }
-
- // Update is called once per frame
- void Update () {
- if(robot1 != null) {
- obj1.transform.position = new Vector3(robot1.getX(), robot1.getY(), 10.0f);
- obj2.transform.position = new Vector3(robot2.getX(), robot2.getY(), 10.0f);
- float now = Time.time;
- double distance = Math.Pow(Math.Pow(robot1.getX() - robot2.getX(), 2) + Math.Pow(robot1.getY() - robot2.getY(), 2), 0.5);
- if(!isRunning) return;
- if(wasKidnapped) {
- vibrate();
- setInfo("Game over: kidnapped");
- wasKidnapped = false;
- }
- if(distance < min_dist_mm) {
- vibrate();
- setInfo("Game over: ghost ate you");
- }
- if(now - start_time > update_time_s) {
- robot1.setGoalPose(robot2.getX(), robot2.getY(), 0, 1000, 1000);
- start_time = now;
- }
- }
- else {
- if(Cellulo.robotsRemaining() >= 2) connect();
- }
- }
-
- public void vibrate() {
- float now = Time.time;
- if(now - vibrate_start_time > vibrate_time_s) {
- if(robot2 != null) robot2.simpleVibrate(0, 0, 10, 0, 200);
- vibrate_start_time = now;
- }
- if(isRunning) {
- stop();
- setInfo("Game over: collision with obstacle");
- }
- }
-
- public void onKidnappedChanged() {
- if(robot1 == null) return;
- if(robot1.getKidnapped() || robot2.getKidnapped()) wasKidnapped = true;
- }
-}
diff --git a/EscapeTheGhost/Assets/GameScript.cs.meta b/EscapeTheGhost/Assets/GameScript.cs.meta
deleted file mode 100644
index 0333f45..0000000
--- a/EscapeTheGhost/Assets/GameScript.cs.meta
+++ /dev/null
@@ -1,11 +0,0 @@
-fileFormatVersion: 2
-guid: 0a4b2268f6bec4f3f9a9d36adb1efcc4
-MonoImporter:
- externalObjects: {}
- serializedVersion: 2
- defaultReferences: []
- executionOrder: 0
- icon: {instanceID: 0}
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/EscapeTheGhost/Assets/Ghost.mat b/EscapeTheGhost/Assets/Ghost.mat
deleted file mode 100644
index d121b01..0000000
--- a/EscapeTheGhost/Assets/Ghost.mat
+++ /dev/null
@@ -1,76 +0,0 @@
-%YAML 1.1
-%TAG !u! tag:unity3d.com,2011:
---- !u!21 &2100000
-Material:
- serializedVersion: 6
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_Name: Ghost
- m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0}
- m_ShaderKeywords:
- m_LightmapFlags: 4
- m_EnableInstancingVariants: 0
- m_DoubleSidedGI: 0
- m_CustomRenderQueue: -1
- stringTagMap: {}
- disabledShaderPasses: []
- m_SavedProperties:
- serializedVersion: 3
- m_TexEnvs:
- - _BumpMap:
- m_Texture: {fileID: 0}
- m_Scale: {x: 1, y: 1}
- m_Offset: {x: 0, y: 0}
- - _DetailAlbedoMap:
- m_Texture: {fileID: 0}
- m_Scale: {x: 1, y: 1}
- m_Offset: {x: 0, y: 0}
- - _DetailMask:
- m_Texture: {fileID: 0}
- m_Scale: {x: 1, y: 1}
- m_Offset: {x: 0, y: 0}
- - _DetailNormalMap:
- m_Texture: {fileID: 0}
- m_Scale: {x: 1, y: 1}
- m_Offset: {x: 0, y: 0}
- - _EmissionMap:
- m_Texture: {fileID: 0}
- m_Scale: {x: 1, y: 1}
- m_Offset: {x: 0, y: 0}
- - _MainTex:
- m_Texture: {fileID: 0}
- m_Scale: {x: 1, y: 1}
- m_Offset: {x: 0, y: 0}
- - _MetallicGlossMap:
- m_Texture: {fileID: 0}
- m_Scale: {x: 1, y: 1}
- m_Offset: {x: 0, y: 0}
- - _OcclusionMap:
- m_Texture: {fileID: 0}
- m_Scale: {x: 1, y: 1}
- m_Offset: {x: 0, y: 0}
- - _ParallaxMap:
- m_Texture: {fileID: 0}
- m_Scale: {x: 1, y: 1}
- m_Offset: {x: 0, y: 0}
- m_Floats:
- - _BumpScale: 1
- - _Cutoff: 0.5
- - _DetailNormalMapScale: 1
- - _DstBlend: 0
- - _GlossMapScale: 1
- - _Glossiness: 0.5
- - _GlossyReflections: 1
- - _Metallic: 0
- - _Mode: 0
- - _OcclusionStrength: 1
- - _Parallax: 0.02
- - _SmoothnessTextureChannel: 0
- - _SpecularHighlights: 1
- - _SrcBlend: 1
- - _UVSec: 0
- - _ZWrite: 1
- m_Colors:
- - _Color: {r: 1, g: 0, b: 0, a: 1}
- - _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
diff --git a/EscapeTheGhost/Assets/Ghost.mat.meta b/EscapeTheGhost/Assets/Ghost.mat.meta
deleted file mode 100644
index 46ae84e..0000000
--- a/EscapeTheGhost/Assets/Ghost.mat.meta
+++ /dev/null
@@ -1,8 +0,0 @@
-fileFormatVersion: 2
-guid: 38d10cda59f30467ead377436c09ef9b
-NativeFormatImporter:
- externalObjects: {}
- mainObjectFileID: 2100000
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/EscapeTheGhost/Assets/Player.mat b/EscapeTheGhost/Assets/Player.mat
deleted file mode 100644
index 920db1c..0000000
--- a/EscapeTheGhost/Assets/Player.mat
+++ /dev/null
@@ -1,76 +0,0 @@
-%YAML 1.1
-%TAG !u! tag:unity3d.com,2011:
---- !u!21 &2100000
-Material:
- serializedVersion: 6
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_Name: Player
- m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0}
- m_ShaderKeywords:
- m_LightmapFlags: 4
- m_EnableInstancingVariants: 0
- m_DoubleSidedGI: 0
- m_CustomRenderQueue: -1
- stringTagMap: {}
- disabledShaderPasses: []
- m_SavedProperties:
- serializedVersion: 3
- m_TexEnvs:
- - _BumpMap:
- m_Texture: {fileID: 0}
- m_Scale: {x: 1, y: 1}
- m_Offset: {x: 0, y: 0}
- - _DetailAlbedoMap:
- m_Texture: {fileID: 0}
- m_Scale: {x: 1, y: 1}
- m_Offset: {x: 0, y: 0}
- - _DetailMask:
- m_Texture: {fileID: 0}
- m_Scale: {x: 1, y: 1}
- m_Offset: {x: 0, y: 0}
- - _DetailNormalMap:
- m_Texture: {fileID: 0}
- m_Scale: {x: 1, y: 1}
- m_Offset: {x: 0, y: 0}
- - _EmissionMap:
- m_Texture: {fileID: 0}
- m_Scale: {x: 1, y: 1}
- m_Offset: {x: 0, y: 0}
- - _MainTex:
- m_Texture: {fileID: 0}
- m_Scale: {x: 1, y: 1}
- m_Offset: {x: 0, y: 0}
- - _MetallicGlossMap:
- m_Texture: {fileID: 0}
- m_Scale: {x: 1, y: 1}
- m_Offset: {x: 0, y: 0}
- - _OcclusionMap:
- m_Texture: {fileID: 0}
- m_Scale: {x: 1, y: 1}
- m_Offset: {x: 0, y: 0}
- - _ParallaxMap:
- m_Texture: {fileID: 0}
- m_Scale: {x: 1, y: 1}
- m_Offset: {x: 0, y: 0}
- m_Floats:
- - _BumpScale: 1
- - _Cutoff: 0.5
- - _DetailNormalMapScale: 1
- - _DstBlend: 0
- - _GlossMapScale: 1
- - _Glossiness: 0.644
- - _GlossyReflections: 1
- - _Metallic: 0
- - _Mode: 0
- - _OcclusionStrength: 1
- - _Parallax: 0.02
- - _SmoothnessTextureChannel: 0
- - _SpecularHighlights: 1
- - _SrcBlend: 1
- - _UVSec: 0
- - _ZWrite: 1
- m_Colors:
- - _Color: {r: 0, g: 0.011148453, b: 1, a: 1}
- - _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
diff --git a/EscapeTheGhost/Assets/Player.mat.meta b/EscapeTheGhost/Assets/Player.mat.meta
deleted file mode 100644
index c094aa7..0000000
--- a/EscapeTheGhost/Assets/Player.mat.meta
+++ /dev/null
@@ -1,8 +0,0 @@
-fileFormatVersion: 2
-guid: 5bef055df2ab74b9cb16639963c14f6b
-NativeFormatImporter:
- externalObjects: {}
- mainObjectFileID: 2100000
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/EscapeTheGhost/Assets/Plugins.meta b/EscapeTheGhost/Assets/Plugins.meta
deleted file mode 100644
index e126088..0000000
--- a/EscapeTheGhost/Assets/Plugins.meta
+++ /dev/null
@@ -1,8 +0,0 @@
-fileFormatVersion: 2
-guid: 34652463ca66545cf9454b28705eed63
-folderAsset: yes
-DefaultImporter:
- externalObjects: {}
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/EscapeTheGhost/Assets/Plugins/Android.meta b/EscapeTheGhost/Assets/Plugins/Android.meta
deleted file mode 100644
index 0888c46..0000000
--- a/EscapeTheGhost/Assets/Plugins/Android.meta
+++ /dev/null
@@ -1,8 +0,0 @@
-fileFormatVersion: 2
-guid: cc0aeeaf68c0d4ee499cb21748af43e9
-folderAsset: yes
-DefaultImporter:
- externalObjects: {}
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/EscapeTheGhost/Assets/Plugins/Android/QtAndroid.jar b/EscapeTheGhost/Assets/Plugins/Android/QtAndroid.jar
deleted file mode 100755
index c02e293..0000000
Binary files a/EscapeTheGhost/Assets/Plugins/Android/QtAndroid.jar and /dev/null differ
diff --git a/EscapeTheGhost/Assets/Plugins/Android/QtAndroid.jar.meta b/EscapeTheGhost/Assets/Plugins/Android/QtAndroid.jar.meta
deleted file mode 100644
index de04f26..0000000
--- a/EscapeTheGhost/Assets/Plugins/Android/QtAndroid.jar.meta
+++ /dev/null
@@ -1,29 +0,0 @@
-fileFormatVersion: 2
-guid: e057a59e6547c4ad8909887f3d9c35aa
-PluginImporter:
- externalObjects: {}
- serializedVersion: 2
- iconMap: {}
- executionOrder: {}
- isPreloaded: 0
- isOverridable: 0
- platformData:
- - first:
- Android: Android
- second:
- enabled: 1
- settings: {}
- - first:
- Any:
- second:
- enabled: 0
- settings: {}
- - first:
- Editor: Editor
- second:
- enabled: 0
- settings:
- DefaultValueInitialized: true
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/EscapeTheGhost/Assets/Plugins/Android/QtAndroidBearer.jar b/EscapeTheGhost/Assets/Plugins/Android/QtAndroidBearer.jar
deleted file mode 100755
index c34401f..0000000
Binary files a/EscapeTheGhost/Assets/Plugins/Android/QtAndroidBearer.jar and /dev/null differ
diff --git a/EscapeTheGhost/Assets/Plugins/Android/QtAndroidBearer.jar.meta b/EscapeTheGhost/Assets/Plugins/Android/QtAndroidBearer.jar.meta
deleted file mode 100644
index d0b86f0..0000000
--- a/EscapeTheGhost/Assets/Plugins/Android/QtAndroidBearer.jar.meta
+++ /dev/null
@@ -1,29 +0,0 @@
-fileFormatVersion: 2
-guid: 69a8de809eca44cb59a09977c52740ac
-PluginImporter:
- externalObjects: {}
- serializedVersion: 2
- iconMap: {}
- executionOrder: {}
- isPreloaded: 0
- isOverridable: 0
- platformData:
- - first:
- Android: Android
- second:
- enabled: 1
- settings: {}
- - first:
- Any:
- second:
- enabled: 0
- settings: {}
- - first:
- Editor: Editor
- second:
- enabled: 0
- settings:
- DefaultValueInitialized: true
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/EscapeTheGhost/Assets/Plugins/Android/QtAndroidBluetooth.jar b/EscapeTheGhost/Assets/Plugins/Android/QtAndroidBluetooth.jar
deleted file mode 100755
index d41e19a..0000000
Binary files a/EscapeTheGhost/Assets/Plugins/Android/QtAndroidBluetooth.jar and /dev/null differ
diff --git a/EscapeTheGhost/Assets/Plugins/Android/QtAndroidBluetooth.jar.meta b/EscapeTheGhost/Assets/Plugins/Android/QtAndroidBluetooth.jar.meta
deleted file mode 100644
index 8ca76d6..0000000
--- a/EscapeTheGhost/Assets/Plugins/Android/QtAndroidBluetooth.jar.meta
+++ /dev/null
@@ -1,29 +0,0 @@
-fileFormatVersion: 2
-guid: 2759279b49ae84338a818fe5903419c1
-PluginImporter:
- externalObjects: {}
- serializedVersion: 2
- iconMap: {}
- executionOrder: {}
- isPreloaded: 0
- isOverridable: 0
- platformData:
- - first:
- Android: Android
- second:
- enabled: 1
- settings: {}
- - first:
- Any:
- second:
- enabled: 0
- settings: {}
- - first:
- Editor: Editor
- second:
- enabled: 0
- settings:
- DefaultValueInitialized: true
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/EscapeTheGhost/Assets/Plugins/Android/QtAndroidExtras.jar b/EscapeTheGhost/Assets/Plugins/Android/QtAndroidExtras.jar
deleted file mode 100755
index 1bfea60..0000000
Binary files a/EscapeTheGhost/Assets/Plugins/Android/QtAndroidExtras.jar and /dev/null differ
diff --git a/EscapeTheGhost/Assets/Plugins/Android/QtAndroidExtras.jar.meta b/EscapeTheGhost/Assets/Plugins/Android/QtAndroidExtras.jar.meta
deleted file mode 100644
index 89f7cc2..0000000
--- a/EscapeTheGhost/Assets/Plugins/Android/QtAndroidExtras.jar.meta
+++ /dev/null
@@ -1,29 +0,0 @@
-fileFormatVersion: 2
-guid: e29b8401ab02c42c5829fd59d5a2846c
-PluginImporter:
- externalObjects: {}
- serializedVersion: 2
- iconMap: {}
- executionOrder: {}
- isPreloaded: 0
- isOverridable: 0
- platformData:
- - first:
- Android: Android
- second:
- enabled: 1
- settings: {}
- - first:
- Any:
- second:
- enabled: 0
- settings: {}
- - first:
- Editor: Editor
- second:
- enabled: 0
- settings:
- DefaultValueInitialized: true
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/EscapeTheGhost/Assets/Plugins/Android/QtAndroidGamepad.jar b/EscapeTheGhost/Assets/Plugins/Android/QtAndroidGamepad.jar
deleted file mode 100755
index e4ddb2b..0000000
Binary files a/EscapeTheGhost/Assets/Plugins/Android/QtAndroidGamepad.jar and /dev/null differ
diff --git a/EscapeTheGhost/Assets/Plugins/Android/QtAndroidGamepad.jar.meta b/EscapeTheGhost/Assets/Plugins/Android/QtAndroidGamepad.jar.meta
deleted file mode 100644
index b0a5282..0000000
--- a/EscapeTheGhost/Assets/Plugins/Android/QtAndroidGamepad.jar.meta
+++ /dev/null
@@ -1,29 +0,0 @@
-fileFormatVersion: 2
-guid: 19439a8dbd6e246fa883a262ada31e37
-PluginImporter:
- externalObjects: {}
- serializedVersion: 2
- iconMap: {}
- executionOrder: {}
- isPreloaded: 0
- isOverridable: 0
- platformData:
- - first:
- Android: Android
- second:
- enabled: 1
- settings: {}
- - first:
- Any:
- second:
- enabled: 0
- settings: {}
- - first:
- Editor: Editor
- second:
- enabled: 0
- settings:
- DefaultValueInitialized: true
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/EscapeTheGhost/Assets/Plugins/Android/QtAndroidWebView.jar b/EscapeTheGhost/Assets/Plugins/Android/QtAndroidWebView.jar
deleted file mode 100755
index 84c3ca7..0000000
Binary files a/EscapeTheGhost/Assets/Plugins/Android/QtAndroidWebView.jar and /dev/null differ
diff --git a/EscapeTheGhost/Assets/Plugins/Android/QtAndroidWebView.jar.meta b/EscapeTheGhost/Assets/Plugins/Android/QtAndroidWebView.jar.meta
deleted file mode 100644
index 4f1dfe3..0000000
--- a/EscapeTheGhost/Assets/Plugins/Android/QtAndroidWebView.jar.meta
+++ /dev/null
@@ -1,29 +0,0 @@
-fileFormatVersion: 2
-guid: dddeecc066d4e49649fbba36dcb02faa
-PluginImporter:
- externalObjects: {}
- serializedVersion: 2
- iconMap: {}
- executionOrder: {}
- isPreloaded: 0
- isOverridable: 0
- platformData:
- - first:
- Android: Android
- second:
- enabled: 1
- settings: {}
- - first:
- Any:
- second:
- enabled: 0
- settings: {}
- - first:
- Editor: Editor
- second:
- enabled: 0
- settings:
- DefaultValueInitialized: true
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/EscapeTheGhost/Assets/Plugins/Android/QtMultimedia.jar b/EscapeTheGhost/Assets/Plugins/Android/QtMultimedia.jar
deleted file mode 100755
index 36f2160..0000000
Binary files a/EscapeTheGhost/Assets/Plugins/Android/QtMultimedia.jar and /dev/null differ
diff --git a/EscapeTheGhost/Assets/Plugins/Android/QtMultimedia.jar.meta b/EscapeTheGhost/Assets/Plugins/Android/QtMultimedia.jar.meta
deleted file mode 100644
index 8871ae7..0000000
--- a/EscapeTheGhost/Assets/Plugins/Android/QtMultimedia.jar.meta
+++ /dev/null
@@ -1,29 +0,0 @@
-fileFormatVersion: 2
-guid: e435d8de5f4b140c7bbdefde7689f69b
-PluginImporter:
- externalObjects: {}
- serializedVersion: 2
- iconMap: {}
- executionOrder: {}
- isPreloaded: 0
- isOverridable: 0
- platformData:
- - first:
- Android: Android
- second:
- enabled: 1
- settings: {}
- - first:
- Any:
- second:
- enabled: 0
- settings: {}
- - first:
- Editor: Editor
- second:
- enabled: 0
- settings:
- DefaultValueInitialized: true
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/EscapeTheGhost/Assets/Plugins/Android/QtNfc.jar b/EscapeTheGhost/Assets/Plugins/Android/QtNfc.jar
deleted file mode 100755
index 1f41a63..0000000
Binary files a/EscapeTheGhost/Assets/Plugins/Android/QtNfc.jar and /dev/null differ
diff --git a/EscapeTheGhost/Assets/Plugins/Android/QtNfc.jar.meta b/EscapeTheGhost/Assets/Plugins/Android/QtNfc.jar.meta
deleted file mode 100644
index 8f8f474..0000000
--- a/EscapeTheGhost/Assets/Plugins/Android/QtNfc.jar.meta
+++ /dev/null
@@ -1,29 +0,0 @@
-fileFormatVersion: 2
-guid: 1141b1e00aab94f12a6c2b2ed9d3dfa0
-PluginImporter:
- externalObjects: {}
- serializedVersion: 2
- iconMap: {}
- executionOrder: {}
- isPreloaded: 0
- isOverridable: 0
- platformData:
- - first:
- Android: Android
- second:
- enabled: 1
- settings: {}
- - first:
- Any:
- second:
- enabled: 0
- settings: {}
- - first:
- Editor: Editor
- second:
- enabled: 0
- settings:
- DefaultValueInitialized: true
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/EscapeTheGhost/Assets/Plugins/Android/QtPositioning.jar b/EscapeTheGhost/Assets/Plugins/Android/QtPositioning.jar
deleted file mode 100755
index ff97467..0000000
Binary files a/EscapeTheGhost/Assets/Plugins/Android/QtPositioning.jar and /dev/null differ
diff --git a/EscapeTheGhost/Assets/Plugins/Android/QtPositioning.jar.meta b/EscapeTheGhost/Assets/Plugins/Android/QtPositioning.jar.meta
deleted file mode 100644
index 1dc1459..0000000
--- a/EscapeTheGhost/Assets/Plugins/Android/QtPositioning.jar.meta
+++ /dev/null
@@ -1,29 +0,0 @@
-fileFormatVersion: 2
-guid: 65b084fc444f7446386fad12317ea917
-PluginImporter:
- externalObjects: {}
- serializedVersion: 2
- iconMap: {}
- executionOrder: {}
- isPreloaded: 0
- isOverridable: 0
- platformData:
- - first:
- Android: Android
- second:
- enabled: 1
- settings: {}
- - first:
- Any:
- second:
- enabled: 0
- settings: {}
- - first:
- Editor: Editor
- second:
- enabled: 0
- settings:
- DefaultValueInitialized: true
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/EscapeTheGhost/Assets/Plugins/Android/QtSensors.jar b/EscapeTheGhost/Assets/Plugins/Android/QtSensors.jar
deleted file mode 100755
index 95a79e0..0000000
Binary files a/EscapeTheGhost/Assets/Plugins/Android/QtSensors.jar and /dev/null differ
diff --git a/EscapeTheGhost/Assets/Plugins/Android/QtSensors.jar.meta b/EscapeTheGhost/Assets/Plugins/Android/QtSensors.jar.meta
deleted file mode 100644
index 6bf32d5..0000000
--- a/EscapeTheGhost/Assets/Plugins/Android/QtSensors.jar.meta
+++ /dev/null
@@ -1,29 +0,0 @@
-fileFormatVersion: 2
-guid: 827e333f991ce49aeab918199cb8563d
-PluginImporter:
- externalObjects: {}
- serializedVersion: 2
- iconMap: {}
- executionOrder: {}
- isPreloaded: 0
- isOverridable: 0
- platformData:
- - first:
- Android: Android
- second:
- enabled: 1
- settings: {}
- - first:
- Any:
- second:
- enabled: 0
- settings: {}
- - first:
- Editor: Editor
- second:
- enabled: 0
- settings:
- DefaultValueInitialized: true
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/EscapeTheGhost/Assets/Plugins/Android/QtTextToSpeech.jar b/EscapeTheGhost/Assets/Plugins/Android/QtTextToSpeech.jar
deleted file mode 100755
index ab768c6..0000000
Binary files a/EscapeTheGhost/Assets/Plugins/Android/QtTextToSpeech.jar and /dev/null differ
diff --git a/EscapeTheGhost/Assets/Plugins/Android/QtTextToSpeech.jar.meta b/EscapeTheGhost/Assets/Plugins/Android/QtTextToSpeech.jar.meta
deleted file mode 100644
index 0199d1f..0000000
--- a/EscapeTheGhost/Assets/Plugins/Android/QtTextToSpeech.jar.meta
+++ /dev/null
@@ -1,29 +0,0 @@
-fileFormatVersion: 2
-guid: 4c0d87135c87149ffaf0566ccb537c67
-PluginImporter:
- externalObjects: {}
- serializedVersion: 2
- iconMap: {}
- executionOrder: {}
- isPreloaded: 0
- isOverridable: 0
- platformData:
- - first:
- Android: Android
- second:
- enabled: 1
- settings: {}
- - first:
- Any:
- second:
- enabled: 0
- settings: {}
- - first:
- Editor: Editor
- second:
- enabled: 0
- settings:
- DefaultValueInitialized: true
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/EscapeTheGhost/Assets/Plugins/Android/libQt5AndroidExtras.so b/EscapeTheGhost/Assets/Plugins/Android/libQt5AndroidExtras.so
deleted file mode 100755
index bbc9f7e..0000000
Binary files a/EscapeTheGhost/Assets/Plugins/Android/libQt5AndroidExtras.so and /dev/null differ
diff --git a/EscapeTheGhost/Assets/Plugins/Android/libQt5AndroidExtras.so.meta b/EscapeTheGhost/Assets/Plugins/Android/libQt5AndroidExtras.so.meta
deleted file mode 100644
index a3131e7..0000000
--- a/EscapeTheGhost/Assets/Plugins/Android/libQt5AndroidExtras.so.meta
+++ /dev/null
@@ -1,93 +0,0 @@
-fileFormatVersion: 2
-guid: 039bd337da33e4bb7984d0383fcaa8ff
-PluginImporter:
- externalObjects: {}
- serializedVersion: 2
- iconMap: {}
- executionOrder: {}
- isPreloaded: 0
- isOverridable: 0
- platformData:
- - first:
- '': Any
- second:
- enabled: 0
- settings:
- Exclude Android: 0
- Exclude Editor: 1
- Exclude Linux: 1
- Exclude Linux64: 1
- Exclude LinuxUniversal: 1
- Exclude OSXUniversal: 1
- Exclude Win: 1
- Exclude Win64: 1
- - first:
- Android: Android
- second:
- enabled: 1
- settings:
- CPU: ARMv7
- - first:
- Any:
- second:
- enabled: 0
- settings: {}
- - first:
- Editor: Editor
- second:
- enabled: 0
- settings:
- CPU: AnyCPU
- DefaultValueInitialized: true
- OS: AnyOS
- - first:
- Facebook: Win
- second:
- enabled: 0
- settings:
- CPU: None
- - first:
- Facebook: Win64
- second:
- enabled: 0
- settings:
- CPU: None
- - first:
- Standalone: Linux
- second:
- enabled: 0
- settings:
- CPU: None
- - first:
- Standalone: Linux64
- second:
- enabled: 0
- settings:
- CPU: None
- - first:
- Standalone: LinuxUniversal
- second:
- enabled: 0
- settings:
- CPU: None
- - first:
- Standalone: OSXUniversal
- second:
- enabled: 0
- settings:
- CPU: x86
- - first:
- Standalone: Win
- second:
- enabled: 0
- settings:
- CPU: None
- - first:
- Standalone: Win64
- second:
- enabled: 0
- settings:
- CPU: None
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/EscapeTheGhost/Assets/Plugins/Android/libQt5Bluetooth.so b/EscapeTheGhost/Assets/Plugins/Android/libQt5Bluetooth.so
deleted file mode 100755
index 856503f..0000000
Binary files a/EscapeTheGhost/Assets/Plugins/Android/libQt5Bluetooth.so and /dev/null differ
diff --git a/EscapeTheGhost/Assets/Plugins/Android/libQt5Bluetooth.so.meta b/EscapeTheGhost/Assets/Plugins/Android/libQt5Bluetooth.so.meta
deleted file mode 100644
index 044ea8e..0000000
--- a/EscapeTheGhost/Assets/Plugins/Android/libQt5Bluetooth.so.meta
+++ /dev/null
@@ -1,93 +0,0 @@
-fileFormatVersion: 2
-guid: eda2fa5524cd44de48d928b9c47ac0e1
-PluginImporter:
- externalObjects: {}
- serializedVersion: 2
- iconMap: {}
- executionOrder: {}
- isPreloaded: 0
- isOverridable: 0
- platformData:
- - first:
- '': Any
- second:
- enabled: 0
- settings:
- Exclude Android: 0
- Exclude Editor: 1
- Exclude Linux: 1
- Exclude Linux64: 1
- Exclude LinuxUniversal: 1
- Exclude OSXUniversal: 1
- Exclude Win: 1
- Exclude Win64: 1
- - first:
- Android: Android
- second:
- enabled: 1
- settings:
- CPU: ARMv7
- - first:
- Any:
- second:
- enabled: 0
- settings: {}
- - first:
- Editor: Editor
- second:
- enabled: 0
- settings:
- CPU: AnyCPU
- DefaultValueInitialized: true
- OS: AnyOS
- - first:
- Facebook: Win
- second:
- enabled: 0
- settings:
- CPU: None
- - first:
- Facebook: Win64
- second:
- enabled: 0
- settings:
- CPU: None
- - first:
- Standalone: Linux
- second:
- enabled: 0
- settings:
- CPU: None
- - first:
- Standalone: Linux64
- second:
- enabled: 0
- settings:
- CPU: None
- - first:
- Standalone: LinuxUniversal
- second:
- enabled: 0
- settings:
- CPU: None
- - first:
- Standalone: OSXUniversal
- second:
- enabled: 0
- settings:
- CPU: x86
- - first:
- Standalone: Win
- second:
- enabled: 0
- settings:
- CPU: None
- - first:
- Standalone: Win64
- second:
- enabled: 0
- settings:
- CPU: None
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/EscapeTheGhost/Assets/Plugins/Android/libQt5Concurrent.so b/EscapeTheGhost/Assets/Plugins/Android/libQt5Concurrent.so
deleted file mode 100755
index 7dc93be..0000000
Binary files a/EscapeTheGhost/Assets/Plugins/Android/libQt5Concurrent.so and /dev/null differ
diff --git a/EscapeTheGhost/Assets/Plugins/Android/libQt5Concurrent.so.meta b/EscapeTheGhost/Assets/Plugins/Android/libQt5Concurrent.so.meta
deleted file mode 100644
index 79d3f9f..0000000
--- a/EscapeTheGhost/Assets/Plugins/Android/libQt5Concurrent.so.meta
+++ /dev/null
@@ -1,93 +0,0 @@
-fileFormatVersion: 2
-guid: b477863df05004372a7f00730ef3bb55
-PluginImporter:
- externalObjects: {}
- serializedVersion: 2
- iconMap: {}
- executionOrder: {}
- isPreloaded: 0
- isOverridable: 0
- platformData:
- - first:
- '': Any
- second:
- enabled: 0
- settings:
- Exclude Android: 0
- Exclude Editor: 1
- Exclude Linux: 1
- Exclude Linux64: 1
- Exclude LinuxUniversal: 1
- Exclude OSXUniversal: 1
- Exclude Win: 1
- Exclude Win64: 1
- - first:
- Android: Android
- second:
- enabled: 1
- settings:
- CPU: ARMv7
- - first:
- Any:
- second:
- enabled: 0
- settings: {}
- - first:
- Editor: Editor
- second:
- enabled: 0
- settings:
- CPU: AnyCPU
- DefaultValueInitialized: true
- OS: AnyOS
- - first:
- Facebook: Win
- second:
- enabled: 0
- settings:
- CPU: None
- - first:
- Facebook: Win64
- second:
- enabled: 0
- settings:
- CPU: None
- - first:
- Standalone: Linux
- second:
- enabled: 0
- settings:
- CPU: None
- - first:
- Standalone: Linux64
- second:
- enabled: 0
- settings:
- CPU: None
- - first:
- Standalone: LinuxUniversal
- second:
- enabled: 0
- settings:
- CPU: None
- - first:
- Standalone: OSXUniversal
- second:
- enabled: 0
- settings:
- CPU: x86
- - first:
- Standalone: Win
- second:
- enabled: 0
- settings:
- CPU: None
- - first:
- Standalone: Win64
- second:
- enabled: 0
- settings:
- CPU: None
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/EscapeTheGhost/Assets/Plugins/Android/libQt5Core.so b/EscapeTheGhost/Assets/Plugins/Android/libQt5Core.so
deleted file mode 100755
index 69a0c8c..0000000
Binary files a/EscapeTheGhost/Assets/Plugins/Android/libQt5Core.so and /dev/null differ
diff --git a/EscapeTheGhost/Assets/Plugins/Android/libQt5Core.so.meta b/EscapeTheGhost/Assets/Plugins/Android/libQt5Core.so.meta
deleted file mode 100644
index 64cdf0a..0000000
--- a/EscapeTheGhost/Assets/Plugins/Android/libQt5Core.so.meta
+++ /dev/null
@@ -1,93 +0,0 @@
-fileFormatVersion: 2
-guid: ff4e7e56da0854496bc82775733a8ef6
-PluginImporter:
- externalObjects: {}
- serializedVersion: 2
- iconMap: {}
- executionOrder: {}
- isPreloaded: 0
- isOverridable: 0
- platformData:
- - first:
- '': Any
- second:
- enabled: 0
- settings:
- Exclude Android: 0
- Exclude Editor: 1
- Exclude Linux: 1
- Exclude Linux64: 1
- Exclude LinuxUniversal: 1
- Exclude OSXUniversal: 1
- Exclude Win: 1
- Exclude Win64: 1
- - first:
- Android: Android
- second:
- enabled: 1
- settings:
- CPU: ARMv7
- - first:
- Any:
- second:
- enabled: 0
- settings: {}
- - first:
- Editor: Editor
- second:
- enabled: 0
- settings:
- CPU: AnyCPU
- DefaultValueInitialized: true
- OS: AnyOS
- - first:
- Facebook: Win
- second:
- enabled: 0
- settings:
- CPU: None
- - first:
- Facebook: Win64
- second:
- enabled: 0
- settings:
- CPU: None
- - first:
- Standalone: Linux
- second:
- enabled: 0
- settings:
- CPU: None
- - first:
- Standalone: Linux64
- second:
- enabled: 0
- settings:
- CPU: None
- - first:
- Standalone: LinuxUniversal
- second:
- enabled: 0
- settings:
- CPU: None
- - first:
- Standalone: OSXUniversal
- second:
- enabled: 0
- settings:
- CPU: x86
- - first:
- Standalone: Win
- second:
- enabled: 0
- settings:
- CPU: None
- - first:
- Standalone: Win64
- second:
- enabled: 0
- settings:
- CPU: None
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/EscapeTheGhost/Assets/Plugins/Android/libQt5Gui.so b/EscapeTheGhost/Assets/Plugins/Android/libQt5Gui.so
deleted file mode 100755
index 217de54..0000000
Binary files a/EscapeTheGhost/Assets/Plugins/Android/libQt5Gui.so and /dev/null differ
diff --git a/EscapeTheGhost/Assets/Plugins/Android/libQt5Gui.so.meta b/EscapeTheGhost/Assets/Plugins/Android/libQt5Gui.so.meta
deleted file mode 100644
index c75a0e9..0000000
--- a/EscapeTheGhost/Assets/Plugins/Android/libQt5Gui.so.meta
+++ /dev/null
@@ -1,93 +0,0 @@
-fileFormatVersion: 2
-guid: 12b71d24f8b054f88b93357ef91540b2
-PluginImporter:
- externalObjects: {}
- serializedVersion: 2
- iconMap: {}
- executionOrder: {}
- isPreloaded: 0
- isOverridable: 0
- platformData:
- - first:
- '': Any
- second:
- enabled: 0
- settings:
- Exclude Android: 0
- Exclude Editor: 1
- Exclude Linux: 1
- Exclude Linux64: 1
- Exclude LinuxUniversal: 1
- Exclude OSXUniversal: 1
- Exclude Win: 1
- Exclude Win64: 1
- - first:
- Android: Android
- second:
- enabled: 1
- settings:
- CPU: ARMv7
- - first:
- Any:
- second:
- enabled: 0
- settings: {}
- - first:
- Editor: Editor
- second:
- enabled: 0
- settings:
- CPU: AnyCPU
- DefaultValueInitialized: true
- OS: AnyOS
- - first:
- Facebook: Win
- second:
- enabled: 0
- settings:
- CPU: None
- - first:
- Facebook: Win64
- second:
- enabled: 0
- settings:
- CPU: None
- - first:
- Standalone: Linux
- second:
- enabled: 0
- settings:
- CPU: None
- - first:
- Standalone: Linux64
- second:
- enabled: 0
- settings:
- CPU: None
- - first:
- Standalone: LinuxUniversal
- second:
- enabled: 0
- settings:
- CPU: None
- - first:
- Standalone: OSXUniversal
- second:
- enabled: 0
- settings:
- CPU: x86
- - first:
- Standalone: Win
- second:
- enabled: 0
- settings:
- CPU: None
- - first:
- Standalone: Win64
- second:
- enabled: 0
- settings:
- CPU: None
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/EscapeTheGhost/Assets/Plugins/Android/libQt5Multimedia.so b/EscapeTheGhost/Assets/Plugins/Android/libQt5Multimedia.so
deleted file mode 100755
index 814e6c6..0000000
Binary files a/EscapeTheGhost/Assets/Plugins/Android/libQt5Multimedia.so and /dev/null differ
diff --git a/EscapeTheGhost/Assets/Plugins/Android/libQt5Multimedia.so.meta b/EscapeTheGhost/Assets/Plugins/Android/libQt5Multimedia.so.meta
deleted file mode 100644
index 56c7bef..0000000
--- a/EscapeTheGhost/Assets/Plugins/Android/libQt5Multimedia.so.meta
+++ /dev/null
@@ -1,93 +0,0 @@
-fileFormatVersion: 2
-guid: 656001254ef2d4d9cb59d524be0e8576
-PluginImporter:
- externalObjects: {}
- serializedVersion: 2
- iconMap: {}
- executionOrder: {}
- isPreloaded: 0
- isOverridable: 0
- platformData:
- - first:
- '': Any
- second:
- enabled: 0
- settings:
- Exclude Android: 0
- Exclude Editor: 1
- Exclude Linux: 1
- Exclude Linux64: 1
- Exclude LinuxUniversal: 1
- Exclude OSXUniversal: 1
- Exclude Win: 1
- Exclude Win64: 1
- - first:
- Android: Android
- second:
- enabled: 1
- settings:
- CPU: ARMv7
- - first:
- Any:
- second:
- enabled: 0
- settings: {}
- - first:
- Editor: Editor
- second:
- enabled: 0
- settings:
- CPU: AnyCPU
- DefaultValueInitialized: true
- OS: AnyOS
- - first:
- Facebook: Win
- second:
- enabled: 0
- settings:
- CPU: None
- - first:
- Facebook: Win64
- second:
- enabled: 0
- settings:
- CPU: None
- - first:
- Standalone: Linux
- second:
- enabled: 0
- settings:
- CPU: None
- - first:
- Standalone: Linux64
- second:
- enabled: 0
- settings:
- CPU: None
- - first:
- Standalone: LinuxUniversal
- second:
- enabled: 0
- settings:
- CPU: None
- - first:
- Standalone: OSXUniversal
- second:
- enabled: 0
- settings:
- CPU: x86
- - first:
- Standalone: Win
- second:
- enabled: 0
- settings:
- CPU: None
- - first:
- Standalone: Win64
- second:
- enabled: 0
- settings:
- CPU: None
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/EscapeTheGhost/Assets/Plugins/Android/libQt5Network.so b/EscapeTheGhost/Assets/Plugins/Android/libQt5Network.so
deleted file mode 100755
index 079d60d..0000000
Binary files a/EscapeTheGhost/Assets/Plugins/Android/libQt5Network.so and /dev/null differ
diff --git a/EscapeTheGhost/Assets/Plugins/Android/libQt5Network.so.meta b/EscapeTheGhost/Assets/Plugins/Android/libQt5Network.so.meta
deleted file mode 100644
index ece4f43..0000000
--- a/EscapeTheGhost/Assets/Plugins/Android/libQt5Network.so.meta
+++ /dev/null
@@ -1,93 +0,0 @@
-fileFormatVersion: 2
-guid: 733ecdbcc8dda4699838a7124a5ebb33
-PluginImporter:
- externalObjects: {}
- serializedVersion: 2
- iconMap: {}
- executionOrder: {}
- isPreloaded: 0
- isOverridable: 0
- platformData:
- - first:
- '': Any
- second:
- enabled: 0
- settings:
- Exclude Android: 0
- Exclude Editor: 1
- Exclude Linux: 1
- Exclude Linux64: 1
- Exclude LinuxUniversal: 1
- Exclude OSXUniversal: 1
- Exclude Win: 1
- Exclude Win64: 1
- - first:
- Android: Android
- second:
- enabled: 1
- settings:
- CPU: ARMv7
- - first:
- Any:
- second:
- enabled: 0
- settings: {}
- - first:
- Editor: Editor
- second:
- enabled: 0
- settings:
- CPU: AnyCPU
- DefaultValueInitialized: true
- OS: AnyOS
- - first:
- Facebook: Win
- second:
- enabled: 0
- settings:
- CPU: None
- - first:
- Facebook: Win64
- second:
- enabled: 0
- settings:
- CPU: None
- - first:
- Standalone: Linux
- second:
- enabled: 0
- settings:
- CPU: None
- - first:
- Standalone: Linux64
- second:
- enabled: 0
- settings:
- CPU: None
- - first:
- Standalone: LinuxUniversal
- second:
- enabled: 0
- settings:
- CPU: None
- - first:
- Standalone: OSXUniversal
- second:
- enabled: 0
- settings:
- CPU: x86
- - first:
- Standalone: Win
- second:
- enabled: 0
- settings:
- CPU: None
- - first:
- Standalone: Win64
- second:
- enabled: 0
- settings:
- CPU: None
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/EscapeTheGhost/Assets/Plugins/Android/libQt5Qml.so b/EscapeTheGhost/Assets/Plugins/Android/libQt5Qml.so
deleted file mode 100755
index 1b446fc..0000000
Binary files a/EscapeTheGhost/Assets/Plugins/Android/libQt5Qml.so and /dev/null differ
diff --git a/EscapeTheGhost/Assets/Plugins/Android/libQt5Qml.so.meta b/EscapeTheGhost/Assets/Plugins/Android/libQt5Qml.so.meta
deleted file mode 100644
index ab111af..0000000
--- a/EscapeTheGhost/Assets/Plugins/Android/libQt5Qml.so.meta
+++ /dev/null
@@ -1,93 +0,0 @@
-fileFormatVersion: 2
-guid: 4cbc62eaec7a84466897a5f501429b74
-PluginImporter:
- externalObjects: {}
- serializedVersion: 2
- iconMap: {}
- executionOrder: {}
- isPreloaded: 0
- isOverridable: 0
- platformData:
- - first:
- '': Any
- second:
- enabled: 0
- settings:
- Exclude Android: 0
- Exclude Editor: 1
- Exclude Linux: 1
- Exclude Linux64: 1
- Exclude LinuxUniversal: 1
- Exclude OSXUniversal: 1
- Exclude Win: 1
- Exclude Win64: 1
- - first:
- Android: Android
- second:
- enabled: 1
- settings:
- CPU: ARMv7
- - first:
- Any:
- second:
- enabled: 0
- settings: {}
- - first:
- Editor: Editor
- second:
- enabled: 0
- settings:
- CPU: AnyCPU
- DefaultValueInitialized: true
- OS: AnyOS
- - first:
- Facebook: Win
- second:
- enabled: 0
- settings:
- CPU: None
- - first:
- Facebook: Win64
- second:
- enabled: 0
- settings:
- CPU: None
- - first:
- Standalone: Linux
- second:
- enabled: 0
- settings:
- CPU: None
- - first:
- Standalone: Linux64
- second:
- enabled: 0
- settings:
- CPU: None
- - first:
- Standalone: LinuxUniversal
- second:
- enabled: 0
- settings:
- CPU: None
- - first:
- Standalone: OSXUniversal
- second:
- enabled: 0
- settings:
- CPU: x86
- - first:
- Standalone: Win
- second:
- enabled: 0
- settings:
- CPU: None
- - first:
- Standalone: Win64
- second:
- enabled: 0
- settings:
- CPU: None
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/EscapeTheGhost/Assets/Plugins/Android/libQt5Quick.so b/EscapeTheGhost/Assets/Plugins/Android/libQt5Quick.so
deleted file mode 100755
index 24e5688..0000000
Binary files a/EscapeTheGhost/Assets/Plugins/Android/libQt5Quick.so and /dev/null differ
diff --git a/EscapeTheGhost/Assets/Plugins/Android/libQt5Quick.so.meta b/EscapeTheGhost/Assets/Plugins/Android/libQt5Quick.so.meta
deleted file mode 100644
index 2bb42af..0000000
--- a/EscapeTheGhost/Assets/Plugins/Android/libQt5Quick.so.meta
+++ /dev/null
@@ -1,93 +0,0 @@
-fileFormatVersion: 2
-guid: 62e9e2c15c7c04d3195c136b99a5e4aa
-PluginImporter:
- externalObjects: {}
- serializedVersion: 2
- iconMap: {}
- executionOrder: {}
- isPreloaded: 0
- isOverridable: 0
- platformData:
- - first:
- '': Any
- second:
- enabled: 0
- settings:
- Exclude Android: 0
- Exclude Editor: 1
- Exclude Linux: 1
- Exclude Linux64: 1
- Exclude LinuxUniversal: 1
- Exclude OSXUniversal: 1
- Exclude Win: 1
- Exclude Win64: 1
- - first:
- Android: Android
- second:
- enabled: 1
- settings:
- CPU: ARMv7
- - first:
- Any:
- second:
- enabled: 0
- settings: {}
- - first:
- Editor: Editor
- second:
- enabled: 0
- settings:
- CPU: AnyCPU
- DefaultValueInitialized: true
- OS: AnyOS
- - first:
- Facebook: Win
- second:
- enabled: 0
- settings:
- CPU: None
- - first:
- Facebook: Win64
- second:
- enabled: 0
- settings:
- CPU: None
- - first:
- Standalone: Linux
- second:
- enabled: 0
- settings:
- CPU: None
- - first:
- Standalone: Linux64
- second:
- enabled: 0
- settings:
- CPU: None
- - first:
- Standalone: LinuxUniversal
- second:
- enabled: 0
- settings:
- CPU: None
- - first:
- Standalone: OSXUniversal
- second:
- enabled: 0
- settings:
- CPU: x86
- - first:
- Standalone: Win
- second:
- enabled: 0
- settings:
- CPU: None
- - first:
- Standalone: Win64
- second:
- enabled: 0
- settings:
- CPU: None
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/EscapeTheGhost/Assets/Plugins/Android/libcellulo-unity.so b/EscapeTheGhost/Assets/Plugins/Android/libcellulo-unity.so
deleted file mode 100755
index ad5712a..0000000
Binary files a/EscapeTheGhost/Assets/Plugins/Android/libcellulo-unity.so and /dev/null differ
diff --git a/EscapeTheGhost/Assets/Plugins/Android/libcellulo-unity.so.meta b/EscapeTheGhost/Assets/Plugins/Android/libcellulo-unity.so.meta
deleted file mode 100644
index e0293cd..0000000
--- a/EscapeTheGhost/Assets/Plugins/Android/libcellulo-unity.so.meta
+++ /dev/null
@@ -1,93 +0,0 @@
-fileFormatVersion: 2
-guid: 0a281221c146e4700a74c9d3a357f299
-PluginImporter:
- externalObjects: {}
- serializedVersion: 2
- iconMap: {}
- executionOrder: {}
- isPreloaded: 0
- isOverridable: 0
- platformData:
- - first:
- '': Any
- second:
- enabled: 0
- settings:
- Exclude Android: 0
- Exclude Editor: 1
- Exclude Linux: 1
- Exclude Linux64: 1
- Exclude LinuxUniversal: 1
- Exclude OSXUniversal: 1
- Exclude Win: 1
- Exclude Win64: 1
- - first:
- Android: Android
- second:
- enabled: 1
- settings:
- CPU: ARMv7
- - first:
- Any:
- second:
- enabled: 0
- settings: {}
- - first:
- Editor: Editor
- second:
- enabled: 0
- settings:
- CPU: AnyCPU
- DefaultValueInitialized: true
- OS: AnyOS
- - first:
- Facebook: Win
- second:
- enabled: 0
- settings:
- CPU: AnyCPU
- - first:
- Facebook: Win64
- second:
- enabled: 0
- settings:
- CPU: AnyCPU
- - first:
- Standalone: Linux
- second:
- enabled: 0
- settings:
- CPU: x86
- - first:
- Standalone: Linux64
- second:
- enabled: 0
- settings:
- CPU: x86_64
- - first:
- Standalone: LinuxUniversal
- second:
- enabled: 0
- settings:
- CPU: None
- - first:
- Standalone: OSXUniversal
- second:
- enabled: 0
- settings:
- CPU: AnyCPU
- - first:
- Standalone: Win
- second:
- enabled: 0
- settings:
- CPU: AnyCPU
- - first:
- Standalone: Win64
- second:
- enabled: 0
- settings:
- CPU: AnyCPU
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/EscapeTheGhost/Assets/Plugins/Android/libcelluloplugin.so b/EscapeTheGhost/Assets/Plugins/Android/libcelluloplugin.so
deleted file mode 100755
index 96d94cf..0000000
Binary files a/EscapeTheGhost/Assets/Plugins/Android/libcelluloplugin.so and /dev/null differ
diff --git a/EscapeTheGhost/Assets/Plugins/Android/libcelluloplugin.so.meta b/EscapeTheGhost/Assets/Plugins/Android/libcelluloplugin.so.meta
deleted file mode 100644
index ecc2573..0000000
--- a/EscapeTheGhost/Assets/Plugins/Android/libcelluloplugin.so.meta
+++ /dev/null
@@ -1,30 +0,0 @@
-fileFormatVersion: 2
-guid: d5502e7df7eab4c6885f3f012d039148
-PluginImporter:
- externalObjects: {}
- serializedVersion: 2
- iconMap: {}
- executionOrder: {}
- isPreloaded: 0
- isOverridable: 0
- platformData:
- - first:
- Android: Android
- second:
- enabled: 1
- settings:
- CPU: ARMv7
- - first:
- Any:
- second:
- enabled: 0
- settings: {}
- - first:
- Editor: Editor
- second:
- enabled: 0
- settings:
- DefaultValueInitialized: true
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/EscapeTheGhost/Assets/Plugins/Android/libgnustl_shared.so b/EscapeTheGhost/Assets/Plugins/Android/libgnustl_shared.so
deleted file mode 100755
index 75de31b..0000000
Binary files a/EscapeTheGhost/Assets/Plugins/Android/libgnustl_shared.so and /dev/null differ
diff --git a/EscapeTheGhost/Assets/Plugins/Android/libgnustl_shared.so.meta b/EscapeTheGhost/Assets/Plugins/Android/libgnustl_shared.so.meta
deleted file mode 100644
index dcc5744..0000000
--- a/EscapeTheGhost/Assets/Plugins/Android/libgnustl_shared.so.meta
+++ /dev/null
@@ -1,93 +0,0 @@
-fileFormatVersion: 2
-guid: 1fe40690cc55e4fb7995b058357fd3e3
-PluginImporter:
- externalObjects: {}
- serializedVersion: 2
- iconMap: {}
- executionOrder: {}
- isPreloaded: 0
- isOverridable: 0
- platformData:
- - first:
- '': Any
- second:
- enabled: 0
- settings:
- Exclude Android: 0
- Exclude Editor: 1
- Exclude Linux: 1
- Exclude Linux64: 1
- Exclude LinuxUniversal: 1
- Exclude OSXUniversal: 1
- Exclude Win: 1
- Exclude Win64: 1
- - first:
- Android: Android
- second:
- enabled: 1
- settings:
- CPU: ARMv7
- - first:
- Any:
- second:
- enabled: 0
- settings: {}
- - first:
- Editor: Editor
- second:
- enabled: 0
- settings:
- CPU: AnyCPU
- DefaultValueInitialized: true
- OS: AnyOS
- - first:
- Facebook: Win
- second:
- enabled: 0
- settings:
- CPU: AnyCPU
- - first:
- Facebook: Win64
- second:
- enabled: 0
- settings:
- CPU: AnyCPU
- - first:
- Standalone: Linux
- second:
- enabled: 0
- settings:
- CPU: x86
- - first:
- Standalone: Linux64
- second:
- enabled: 0
- settings:
- CPU: x86_64
- - first:
- Standalone: LinuxUniversal
- second:
- enabled: 0
- settings:
- CPU: None
- - first:
- Standalone: OSXUniversal
- second:
- enabled: 0
- settings:
- CPU: AnyCPU
- - first:
- Standalone: Win
- second:
- enabled: 0
- settings:
- CPU: AnyCPU
- - first:
- Standalone: Win64
- second:
- enabled: 0
- settings:
- CPU: AnyCPU
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/EscapeTheGhost/Assets/Plugins/Android/libqandroidbearer.so b/EscapeTheGhost/Assets/Plugins/Android/libqandroidbearer.so
deleted file mode 100755
index ad6d27f..0000000
Binary files a/EscapeTheGhost/Assets/Plugins/Android/libqandroidbearer.so and /dev/null differ
diff --git a/EscapeTheGhost/Assets/Plugins/Android/libqandroidbearer.so.meta b/EscapeTheGhost/Assets/Plugins/Android/libqandroidbearer.so.meta
deleted file mode 100644
index ff8a74c..0000000
--- a/EscapeTheGhost/Assets/Plugins/Android/libqandroidbearer.so.meta
+++ /dev/null
@@ -1,30 +0,0 @@
-fileFormatVersion: 2
-guid: b84e31775b6c7466392d5c8a0eb32027
-PluginImporter:
- externalObjects: {}
- serializedVersion: 2
- iconMap: {}
- executionOrder: {}
- isPreloaded: 0
- isOverridable: 0
- platformData:
- - first:
- Android: Android
- second:
- enabled: 1
- settings:
- CPU: ARMv7
- - first:
- Any:
- second:
- enabled: 0
- settings: {}
- - first:
- Editor: Editor
- second:
- enabled: 0
- settings:
- DefaultValueInitialized: true
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/EscapeTheGhost/Assets/Plugins/Android/libqtforandroid.so b/EscapeTheGhost/Assets/Plugins/Android/libqtforandroid.so
deleted file mode 100755
index 07509e5..0000000
Binary files a/EscapeTheGhost/Assets/Plugins/Android/libqtforandroid.so and /dev/null differ
diff --git a/EscapeTheGhost/Assets/Plugins/Android/libqtforandroid.so.meta b/EscapeTheGhost/Assets/Plugins/Android/libqtforandroid.so.meta
deleted file mode 100644
index e3b8c6a..0000000
--- a/EscapeTheGhost/Assets/Plugins/Android/libqtforandroid.so.meta
+++ /dev/null
@@ -1,30 +0,0 @@
-fileFormatVersion: 2
-guid: 448c614d4e3aa46b8badb330e977ae75
-PluginImporter:
- externalObjects: {}
- serializedVersion: 2
- iconMap: {}
- executionOrder: {}
- isPreloaded: 0
- isOverridable: 0
- platformData:
- - first:
- Android: Android
- second:
- enabled: 1
- settings:
- CPU: ARMv7
- - first:
- Any:
- second:
- enabled: 0
- settings: {}
- - first:
- Editor: Editor
- second:
- enabled: 0
- settings:
- DefaultValueInitialized: true
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/EscapeTheGhost/Assets/Plugins/Linux.meta b/EscapeTheGhost/Assets/Plugins/Linux.meta
deleted file mode 100644
index 9f88b99..0000000
--- a/EscapeTheGhost/Assets/Plugins/Linux.meta
+++ /dev/null
@@ -1,8 +0,0 @@
-fileFormatVersion: 2
-guid: 756038d97d4e441fdb7725337e2ed81f
-folderAsset: yes
-DefaultImporter:
- externalObjects: {}
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/EscapeTheGhost/Assets/Plugins/Linux/libcellulo-unity.so b/EscapeTheGhost/Assets/Plugins/Linux/libcellulo-unity.so
deleted file mode 100755
index 7005387..0000000
Binary files a/EscapeTheGhost/Assets/Plugins/Linux/libcellulo-unity.so and /dev/null differ
diff --git a/EscapeTheGhost/Assets/Plugins/Linux/libcellulo-unity.so.meta b/EscapeTheGhost/Assets/Plugins/Linux/libcellulo-unity.so.meta
deleted file mode 100644
index 016e27d..0000000
--- a/EscapeTheGhost/Assets/Plugins/Linux/libcellulo-unity.so.meta
+++ /dev/null
@@ -1,92 +0,0 @@
-fileFormatVersion: 2
-guid: 40f49bdf17e7d406f9f89b0afd423ae9
-PluginImporter:
- externalObjects: {}
- serializedVersion: 2
- iconMap: {}
- executionOrder: {}
- isPreloaded: 0
- isOverridable: 0
- platformData:
- - first:
- '': Any
- second:
- enabled: 0
- settings:
- Exclude Android: 1
- Exclude Editor: 0
- Exclude Linux: 0
- Exclude Linux64: 0
- Exclude LinuxUniversal: 0
- Exclude OSXUniversal: 0
- Exclude Win: 0
- Exclude Win64: 0
- - first:
- Android: Android
- second:
- enabled: 0
- settings:
- CPU: ARMv7
- - first:
- Any:
- second:
- enabled: 0
- settings: {}
- - first:
- Editor: Editor
- second:
- enabled: 1
- settings:
- CPU: AnyCPU
- DefaultValueInitialized: true
- OS: Linux
- - first:
- Facebook: Win
- second:
- enabled: 0
- settings:
- CPU: AnyCPU
- - first:
- Facebook: Win64
- second:
- enabled: 0
- settings:
- CPU: AnyCPU
- - first:
- Standalone: Linux
- second:
- enabled: 1
- settings:
- CPU: x86
- - first:
- Standalone: Linux64
- second:
- enabled: 1
- settings:
- CPU: x86_64
- - first:
- Standalone: LinuxUniversal
- second:
- enabled: 1
- settings: {}
- - first:
- Standalone: OSXUniversal
- second:
- enabled: 1
- settings:
- CPU: AnyCPU
- - first:
- Standalone: Win
- second:
- enabled: 1
- settings:
- CPU: AnyCPU
- - first:
- Standalone: Win64
- second:
- enabled: 1
- settings:
- CPU: AnyCPU
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/EscapeTheGhost/Assets/Scenes.meta b/EscapeTheGhost/Assets/Scenes.meta
deleted file mode 100644
index 7fe8e10..0000000
--- a/EscapeTheGhost/Assets/Scenes.meta
+++ /dev/null
@@ -1,8 +0,0 @@
-fileFormatVersion: 2
-guid: 131a6b21c8605f84396be9f6751fb6e3
-folderAsset: yes
-DefaultImporter:
- externalObjects: {}
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/EscapeTheGhost/Assets/Scenes/SampleScene.unity b/EscapeTheGhost/Assets/Scenes/SampleScene.unity
deleted file mode 100644
index 55bbbef..0000000
--- a/EscapeTheGhost/Assets/Scenes/SampleScene.unity
+++ /dev/null
@@ -1,1508 +0,0 @@
-%YAML 1.1
-%TAG !u! tag:unity3d.com,2011:
---- !u!29 &1
-OcclusionCullingSettings:
- m_ObjectHideFlags: 0
- serializedVersion: 2
- m_OcclusionBakeSettings:
- smallestOccluder: 5
- smallestHole: 0.25
- backfaceThreshold: 100
- m_SceneGUID: 00000000000000000000000000000000
- m_OcclusionCullingData: {fileID: 0}
---- !u!104 &2
-RenderSettings:
- m_ObjectHideFlags: 0
- serializedVersion: 9
- m_Fog: 0
- m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
- m_FogMode: 3
- m_FogDensity: 0.01
- m_LinearFogStart: 0
- m_LinearFogEnd: 300
- m_AmbientSkyColor: {r: 0.212, g: 0.227, b: 0.259, a: 1}
- m_AmbientEquatorColor: {r: 0.114, g: 0.125, b: 0.133, a: 1}
- m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1}
- m_AmbientIntensity: 1
- m_AmbientMode: 3
- m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1}
- m_SkyboxMaterial: {fileID: 0}
- m_HaloStrength: 0.5
- m_FlareStrength: 1
- m_FlareFadeSpeed: 3
- m_HaloTexture: {fileID: 0}
- m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0}
- m_DefaultReflectionMode: 0
- m_DefaultReflectionResolution: 128
- m_ReflectionBounces: 1
- m_ReflectionIntensity: 1
- m_CustomReflection: {fileID: 0}
- m_Sun: {fileID: 0}
- m_IndirectSpecularColor: {r: 0, g: 0, b: 0, a: 1}
- m_UseRadianceAmbientProbe: 0
---- !u!157 &3
-LightmapSettings:
- m_ObjectHideFlags: 0
- serializedVersion: 11
- m_GIWorkflowMode: 1
- m_GISettings:
- serializedVersion: 2
- m_BounceScale: 1
- m_IndirectOutputScale: 1
- m_AlbedoBoost: 1
- m_TemporalCoherenceThreshold: 1
- m_EnvironmentLightingMode: 0
- m_EnableBakedLightmaps: 0
- m_EnableRealtimeLightmaps: 0
- m_LightmapEditorSettings:
- serializedVersion: 10
- m_Resolution: 2
- m_BakeResolution: 40
- m_AtlasSize: 1024
- m_AO: 0
- m_AOMaxDistance: 1
- m_CompAOExponent: 1
- m_CompAOExponentDirect: 0
- m_Padding: 2
- m_LightmapParameters: {fileID: 0}
- m_LightmapsBakeMode: 1
- m_TextureCompression: 1
- m_FinalGather: 0
- m_FinalGatherFiltering: 1
- m_FinalGatherRayCount: 256
- m_ReflectionCompression: 2
- m_MixedBakeMode: 2
- m_BakeBackend: 0
- m_PVRSampling: 1
- m_PVRDirectSampleCount: 32
- m_PVRSampleCount: 500
- m_PVRBounces: 2
- m_PVRFilterTypeDirect: 0
- m_PVRFilterTypeIndirect: 0
- m_PVRFilterTypeAO: 0
- m_PVRFilteringMode: 1
- m_PVRCulling: 1
- m_PVRFilteringGaussRadiusDirect: 1
- m_PVRFilteringGaussRadiusIndirect: 5
- m_PVRFilteringGaussRadiusAO: 2
- m_PVRFilteringAtrousPositionSigmaDirect: 0.5
- m_PVRFilteringAtrousPositionSigmaIndirect: 2
- m_PVRFilteringAtrousPositionSigmaAO: 1
- m_ShowResolutionOverlay: 1
- m_LightingDataAsset: {fileID: 0}
- m_UseShadowmask: 1
---- !u!196 &4
-NavMeshSettings:
- serializedVersion: 2
- m_ObjectHideFlags: 0
- m_BuildSettings:
- serializedVersion: 2
- agentTypeID: 0
- agentRadius: 0.5
- agentHeight: 2
- agentSlope: 45
- agentClimb: 0.4
- ledgeDropHeight: 0
- maxJumpAcrossDistance: 0
- minRegionArea: 2
- manualCellSize: 0
- cellSize: 0.16666667
- manualTileSize: 0
- tileSize: 256
- accuratePlacement: 0
- debug:
- m_Flags: 0
- m_NavMeshData: {fileID: 0}
---- !u!1 &44541876
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 44541877}
- - component: {fileID: 44541878}
- m_Layer: 0
- m_Name: Point Light
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!4 &44541877
-Transform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 44541876}
- m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
- m_LocalPosition: {x: 42, y: -125, z: -500}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_Children: []
- m_Father: {fileID: 519420032}
- m_RootOrder: 2
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
---- !u!108 &44541878
-Light:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 44541876}
- m_Enabled: 1
- serializedVersion: 8
- m_Type: 2
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_Intensity: 5
- m_Range: 1000
- m_SpotAngle: 30
- m_CookieSize: 10
- m_Shadows:
- m_Type: 0
- m_Resolution: -1
- m_CustomResolution: -1
- m_Strength: 1
- m_Bias: 0.05
- m_NormalBias: 0.4
- m_NearPlane: 0.2
- m_Cookie: {fileID: 0}
- m_DrawHalo: 0
- m_Flare: {fileID: 0}
- m_RenderMode: 0
- m_CullingMask:
- serializedVersion: 2
- m_Bits: 4294967295
- m_Lightmapping: 4
- m_LightShadowCasterMode: 0
- m_AreaSize: {x: 1, y: 1}
- m_BounceIntensity: 1
- m_ColorTemperature: 6570
- m_UseColorTemperature: 0
- m_ShadowRadius: 0
- m_ShadowAngle: 0
---- !u!1 &519420028
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 519420032}
- - component: {fileID: 519420031}
- - component: {fileID: 519420029}
- m_Layer: 0
- m_Name: Main Camera
- m_TagString: MainCamera
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!81 &519420029
-AudioListener:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 519420028}
- m_Enabled: 1
---- !u!20 &519420031
-Camera:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 519420028}
- m_Enabled: 1
- serializedVersion: 2
- m_ClearFlags: 2
- m_BackGroundColor: {r: 0, g: 0, b: 0, a: 0}
- m_projectionMatrixMode: 1
- m_SensorSize: {x: 36, y: 24}
- m_LensShift: {x: 0, y: 0}
- m_FocalLength: 50
- m_NormalizedViewPortRect:
- serializedVersion: 2
- x: 0
- y: 0
- width: 1
- height: 1
- near clip plane: 0.3
- far clip plane: 1000
- field of view: 60
- orthographic: 1
- orthographic size: 227.03018
- m_Depth: -1
- m_CullingMask:
- serializedVersion: 2
- m_Bits: 4294967295
- m_RenderingPath: -1
- m_TargetTexture: {fileID: 0}
- m_TargetDisplay: 0
- m_TargetEye: 0
- m_HDR: 1
- m_AllowMSAA: 0
- m_AllowDynamicResolution: 0
- m_ForceIntoRT: 0
- m_OcclusionCulling: 0
- m_StereoConvergence: 10
- m_StereoSeparation: 0.022
---- !u!4 &519420032
-Transform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 519420028}
- m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
- m_LocalPosition: {x: 290, y: -181, z: -10}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_Children:
- - {fileID: 1060317880}
- - {fileID: 1038461326}
- - {fileID: 44541877}
- - {fileID: 1726782474}
- - {fileID: 1625969530}
- - {fileID: 1905069888}
- - {fileID: 880392517}
- m_Father: {fileID: 0}
- m_RootOrder: 0
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
---- !u!1 &703014665
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 703014666}
- - component: {fileID: 703014668}
- - component: {fileID: 703014667}
- m_Layer: 5
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &703014666
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 703014665}
- m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_Children: []
- m_Father: {fileID: 1990700984}
- m_RootOrder: 0
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0, y: 0}
- m_AnchorMax: {x: 1, y: 1}
- m_AnchoredPosition: {x: 0, y: 0}
- m_SizeDelta: {x: 0, y: 0}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &703014667
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 703014665}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- m_FontData:
- m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
- m_FontSize: 14
- m_FontStyle: 0
- m_BestFit: 0
- m_MinSize: 10
- m_MaxSize: 40
- m_Alignment: 4
- m_AlignByGeometry: 0
- m_RichText: 1
- m_HorizontalOverflow: 0
- m_VerticalOverflow: 0
- m_LineSpacing: 1
- m_Text: START
---- !u!222 &703014668
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 703014665}
- m_CullTransparentMesh: 0
---- !u!1 &718242302
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 718242305}
- - component: {fileID: 718242304}
- - component: {fileID: 718242303}
- m_Layer: 0
- m_Name: EventSystem
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!114 &718242303
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 718242302}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 1077351063, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_HorizontalAxis: Horizontal
- m_VerticalAxis: Vertical
- m_SubmitButton: Submit
- m_CancelButton: Cancel
- m_InputActionsPerSecond: 10
- m_RepeatDelay: 0.5
- m_ForceModuleActive: 0
---- !u!114 &718242304
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 718242302}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -619905303, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_FirstSelected: {fileID: 0}
- m_sendNavigationEvents: 1
- m_DragThreshold: 10
---- !u!4 &718242305
-Transform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 718242302}
- m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_Children: []
- m_Father: {fileID: 0}
- m_RootOrder: 2
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
---- !u!1 &743351938
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 743351939}
- - component: {fileID: 743351941}
- - component: {fileID: 743351940}
- m_Layer: 5
- m_Name: InfoText
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &743351939
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 743351938}
- m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_Children: []
- m_Father: {fileID: 952213262}
- m_RootOrder: 2
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0.5, y: 0.5}
- m_AnchorMax: {x: 0.5, y: 0.5}
- m_AnchoredPosition: {x: 144.9, y: 2.8}
- m_SizeDelta: {x: 290.2, y: 182.1}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &743351940
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 743351938}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- m_FontData:
- m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
- m_FontSize: 14
- m_FontStyle: 0
- m_BestFit: 0
- m_MinSize: 10
- m_MaxSize: 40
- m_Alignment: 0
- m_AlignByGeometry: 0
- m_RichText: 1
- m_HorizontalOverflow: 0
- m_VerticalOverflow: 0
- m_LineSpacing: 1
- m_Text: 'EscapeTheGhost: awaiting connection...'
---- !u!222 &743351941
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 743351938}
- m_CullTransparentMesh: 0
---- !u!1 &880392516
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 880392517}
- - component: {fileID: 880392519}
- - component: {fileID: 880392518}
- m_Layer: 0
- m_Name: EndText
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!4 &880392517
-Transform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 880392516}
- m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
- m_LocalPosition: {x: -64.4, y: 92.5, z: 10}
- m_LocalScale: {x: 10, y: 10, z: 1}
- m_Children: []
- m_Father: {fileID: 519420032}
- m_RootOrder: 6
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
---- !u!102 &880392518
-TextMesh:
- serializedVersion: 3
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 880392516}
- m_Text: Go here
- m_OffsetZ: 0
- m_CharacterSize: 1
- m_LineSpacing: 1
- m_Anchor: 0
- m_Alignment: 0
- m_TabSize: 4
- m_FontSize: 0
- m_FontStyle: 0
- m_RichText: 1
- m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
- m_Color:
- serializedVersion: 2
- rgba: 4294967295
---- !u!23 &880392519
-MeshRenderer:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 880392516}
- m_Enabled: 1
- m_CastShadows: 1
- m_ReceiveShadows: 1
- m_DynamicOccludee: 1
- m_MotionVectors: 1
- m_LightProbeUsage: 1
- m_ReflectionProbeUsage: 1
- m_RenderingLayerMask: 4294967295
- m_Materials:
- - {fileID: 10100, guid: 0000000000000000e000000000000000, type: 0}
- m_StaticBatchInfo:
- firstSubMesh: 0
- subMeshCount: 0
- m_StaticBatchRoot: {fileID: 0}
- m_ProbeAnchor: {fileID: 0}
- m_LightProbeVolumeOverride: {fileID: 0}
- m_ScaleInLightmap: 1
- m_PreserveUVs: 0
- m_IgnoreNormalsForChartDetection: 0
- m_ImportantGI: 0
- m_StitchLightmapSeams: 0
- m_SelectedEditorRenderState: 3
- m_MinimumChartSize: 4
- m_AutoUVMaxDistance: 0.5
- m_AutoUVMaxAngle: 89
- m_LightmapParameters: {fileID: 0}
- m_SortingLayerID: 0
- m_SortingLayer: 0
- m_SortingOrder: 0
---- !u!1 &952213258
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 952213262}
- - component: {fileID: 952213261}
- - component: {fileID: 952213260}
- - component: {fileID: 952213259}
- m_Layer: 5
- m_Name: Canvas
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!114 &952213259
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 952213258}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 1301386320, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_IgnoreReversedGraphics: 1
- m_BlockingObjects: 0
- m_BlockingMask:
- serializedVersion: 2
- m_Bits: 4294967295
---- !u!114 &952213260
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 952213258}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 1980459831, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_UiScaleMode: 0
- m_ReferencePixelsPerUnit: 100
- m_ScaleFactor: 1
- m_ReferenceResolution: {x: 800, y: 600}
- m_ScreenMatchMode: 0
- m_MatchWidthOrHeight: 0
- m_PhysicalUnit: 3
- m_FallbackScreenDPI: 96
- m_DefaultSpriteDPI: 96
- m_DynamicPixelsPerUnit: 1
---- !u!223 &952213261
-Canvas:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 952213258}
- m_Enabled: 1
- serializedVersion: 3
- m_RenderMode: 0
- m_Camera: {fileID: 0}
- m_PlaneDistance: 100
- m_PixelPerfect: 0
- m_ReceivesEvents: 1
- m_OverrideSorting: 0
- m_OverridePixelPerfect: 0
- m_SortingBucketNormalizedSize: 0
- m_AdditionalShaderChannelsFlag: 0
- m_SortingLayerID: 0
- m_SortingOrder: 0
- m_TargetDisplay: 0
---- !u!224 &952213262
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 952213258}
- m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 0, y: 0, z: 0}
- m_Children:
- - {fileID: 1990700984}
- - {fileID: 1389556572}
- - {fileID: 743351939}
- m_Father: {fileID: 0}
- m_RootOrder: 1
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0, y: 0}
- m_AnchorMax: {x: 0, y: 0}
- m_AnchoredPosition: {x: 0, y: 0}
- m_SizeDelta: {x: 0, y: 0}
- m_Pivot: {x: 0, y: 0}
---- !u!1 &1038461325
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 1038461326}
- - component: {fileID: 1038461330}
- - component: {fileID: 1038461329}
- - component: {fileID: 1038461328}
- - component: {fileID: 1038461331}
- - component: {fileID: 1038461327}
- m_Layer: 0
- m_Name: Player
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!4 &1038461326
-Transform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1038461325}
- m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 10}
- m_LocalScale: {x: 10, y: 10, z: 10}
- m_Children: []
- m_Father: {fileID: 519420032}
- m_RootOrder: 1
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
---- !u!114 &1038461327
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1038461325}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: d6281499612ea4fb7ad0766e692e5c6d, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- controller: {fileID: 1891896520}
---- !u!58 &1038461328
-CircleCollider2D:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1038461325}
- m_Enabled: 1
- m_Density: 1
- m_Material: {fileID: 0}
- m_IsTrigger: 0
- m_UsedByEffector: 0
- m_UsedByComposite: 0
- m_Offset: {x: 0, y: 0}
- serializedVersion: 2
- m_Radius: 0.5
---- !u!23 &1038461329
-MeshRenderer:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1038461325}
- m_Enabled: 1
- m_CastShadows: 1
- m_ReceiveShadows: 1
- m_DynamicOccludee: 1
- m_MotionVectors: 1
- m_LightProbeUsage: 1
- m_ReflectionProbeUsage: 1
- m_RenderingLayerMask: 4294967295
- m_Materials:
- - {fileID: 2100000, guid: 5bef055df2ab74b9cb16639963c14f6b, type: 2}
- m_StaticBatchInfo:
- firstSubMesh: 0
- subMeshCount: 0
- m_StaticBatchRoot: {fileID: 0}
- m_ProbeAnchor: {fileID: 0}
- m_LightProbeVolumeOverride: {fileID: 0}
- m_ScaleInLightmap: 1
- m_PreserveUVs: 0
- m_IgnoreNormalsForChartDetection: 0
- m_ImportantGI: 0
- m_StitchLightmapSeams: 0
- m_SelectedEditorRenderState: 3
- m_MinimumChartSize: 4
- m_AutoUVMaxDistance: 0.5
- m_AutoUVMaxAngle: 89
- m_LightmapParameters: {fileID: 0}
- m_SortingLayerID: 0
- m_SortingLayer: 0
- m_SortingOrder: 0
---- !u!33 &1038461330
-MeshFilter:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1038461325}
- m_Mesh: {fileID: 10207, guid: 0000000000000000e000000000000000, type: 0}
---- !u!50 &1038461331
-Rigidbody2D:
- serializedVersion: 4
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1038461325}
- m_BodyType: 0
- m_Simulated: 1
- m_UseFullKinematicContacts: 0
- m_UseAutoMass: 0
- m_Mass: 1
- m_LinearDrag: 0
- m_AngularDrag: 0.05
- m_GravityScale: 1
- m_Material: {fileID: 0}
- m_Interpolate: 0
- m_SleepingMode: 1
- m_CollisionDetection: 0
- m_Constraints: 4
---- !u!1 &1060317879
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 1060317880}
- - component: {fileID: 1060317883}
- - component: {fileID: 1060317882}
- - component: {fileID: 1060317881}
- m_Layer: 0
- m_Name: Ghost
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!4 &1060317880
-Transform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1060317879}
- m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 10}
- m_LocalScale: {x: 10, y: 10, z: 10}
- m_Children: []
- m_Father: {fileID: 519420032}
- m_RootOrder: 0
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
---- !u!58 &1060317881
-CircleCollider2D:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1060317879}
- m_Enabled: 1
- m_Density: 1
- m_Material: {fileID: 0}
- m_IsTrigger: 0
- m_UsedByEffector: 0
- m_UsedByComposite: 0
- m_Offset: {x: 0, y: 0}
- serializedVersion: 2
- m_Radius: 0.5
---- !u!23 &1060317882
-MeshRenderer:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1060317879}
- m_Enabled: 1
- m_CastShadows: 1
- m_ReceiveShadows: 1
- m_DynamicOccludee: 1
- m_MotionVectors: 1
- m_LightProbeUsage: 1
- m_ReflectionProbeUsage: 1
- m_RenderingLayerMask: 4294967295
- m_Materials:
- - {fileID: 2100000, guid: 38d10cda59f30467ead377436c09ef9b, type: 2}
- m_StaticBatchInfo:
- firstSubMesh: 0
- subMeshCount: 0
- m_StaticBatchRoot: {fileID: 0}
- m_ProbeAnchor: {fileID: 0}
- m_LightProbeVolumeOverride: {fileID: 0}
- m_ScaleInLightmap: 1
- m_PreserveUVs: 0
- m_IgnoreNormalsForChartDetection: 0
- m_ImportantGI: 0
- m_StitchLightmapSeams: 0
- m_SelectedEditorRenderState: 3
- m_MinimumChartSize: 4
- m_AutoUVMaxDistance: 0.5
- m_AutoUVMaxAngle: 89
- m_LightmapParameters: {fileID: 0}
- m_SortingLayerID: 0
- m_SortingLayer: 0
- m_SortingOrder: 0
---- !u!33 &1060317883
-MeshFilter:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1060317879}
- m_Mesh: {fileID: 10207, guid: 0000000000000000e000000000000000, type: 0}
---- !u!1 &1389556571
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 1389556572}
- - component: {fileID: 1389556575}
- - component: {fileID: 1389556574}
- - component: {fileID: 1389556573}
- m_Layer: 5
- m_Name: StopButton
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1389556572
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1389556571}
- m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_Children:
- - {fileID: 1550638988}
- m_Father: {fileID: 952213262}
- m_RootOrder: 1
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0.5, y: 0.5}
- m_AnchorMax: {x: 0.5, y: 0.5}
- m_AnchoredPosition: {x: 183, y: 183}
- m_SizeDelta: {x: 100, y: 30}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1389556573
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1389556571}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Navigation:
- m_Mode: 3
- m_SelectOnUp: {fileID: 0}
- m_SelectOnDown: {fileID: 0}
- m_SelectOnLeft: {fileID: 0}
- m_SelectOnRight: {fileID: 0}
- m_Transition: 1
- m_Colors:
- m_NormalColor: {r: 1, g: 1, b: 1, a: 1}
- m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
- m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1}
- m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608}
- m_ColorMultiplier: 1
- m_FadeDuration: 0.1
- m_SpriteState:
- m_HighlightedSprite: {fileID: 0}
- m_PressedSprite: {fileID: 0}
- m_DisabledSprite: {fileID: 0}
- m_AnimationTriggers:
- m_NormalTrigger: Normal
- m_HighlightedTrigger: Highlighted
- m_PressedTrigger: Pressed
- m_DisabledTrigger: Disabled
- m_Interactable: 1
- m_TargetGraphic: {fileID: 1389556574}
- m_OnClick:
- m_PersistentCalls:
- m_Calls:
- - m_Target: {fileID: 1891896520}
- m_MethodName: stop
- m_Mode: 1
- m_Arguments:
- m_ObjectArgument: {fileID: 0}
- m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine
- m_IntArgument: 0
- m_FloatArgument: 0
- m_StringArgument:
- m_BoolArgument: 0
- m_CallState: 2
- m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0,
- Culture=neutral, PublicKeyToken=null
---- !u!114 &1389556574
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1389556571}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0}
- m_Type: 1
- m_PreserveAspect: 0
- m_FillCenter: 1
- m_FillMethod: 4
- m_FillAmount: 1
- m_FillClockwise: 1
- m_FillOrigin: 0
---- !u!222 &1389556575
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1389556571}
- m_CullTransparentMesh: 0
---- !u!1 &1550638987
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 1550638988}
- - component: {fileID: 1550638990}
- - component: {fileID: 1550638989}
- m_Layer: 5
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1550638988
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1550638987}
- m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_Children: []
- m_Father: {fileID: 1389556572}
- m_RootOrder: 0
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0, y: 0}
- m_AnchorMax: {x: 1, y: 1}
- m_AnchoredPosition: {x: 0, y: 0}
- m_SizeDelta: {x: 0, y: 0}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1550638989
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1550638987}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- m_FontData:
- m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
- m_FontSize: 14
- m_FontStyle: 0
- m_BestFit: 0
- m_MinSize: 10
- m_MaxSize: 40
- m_Alignment: 4
- m_AlignByGeometry: 0
- m_RichText: 1
- m_HorizontalOverflow: 0
- m_VerticalOverflow: 0
- m_LineSpacing: 1
- m_Text: STOP
---- !u!222 &1550638990
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1550638987}
- m_CullTransparentMesh: 0
---- !u!1 &1625969529
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 1625969530}
- - component: {fileID: 1625969533}
- - component: {fileID: 1625969532}
- - component: {fileID: 1625969531}
- m_Layer: 0
- m_Name: Capsule
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!4 &1625969530
-Transform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1625969529}
- m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
- m_LocalPosition: {x: -45, y: 45, z: 10}
- m_LocalScale: {x: 17.007208, y: 24.32487, z: 1}
- m_Children: []
- m_Father: {fileID: 519420032}
- m_RootOrder: 4
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
---- !u!70 &1625969531
-CapsuleCollider2D:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1625969529}
- m_Enabled: 1
- m_Density: 1
- m_Material: {fileID: 0}
- m_IsTrigger: 0
- m_UsedByEffector: 0
- m_UsedByComposite: 0
- m_Offset: {x: 0, y: 0}
- m_Size: {x: 1, y: 2}
- m_Direction: 0
---- !u!23 &1625969532
-MeshRenderer:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1625969529}
- m_Enabled: 1
- m_CastShadows: 1
- m_ReceiveShadows: 1
- m_DynamicOccludee: 1
- m_MotionVectors: 1
- m_LightProbeUsage: 1
- m_ReflectionProbeUsage: 1
- m_RenderingLayerMask: 4294967295
- m_Materials:
- - {fileID: 10303, guid: 0000000000000000f000000000000000, type: 0}
- m_StaticBatchInfo:
- firstSubMesh: 0
- subMeshCount: 0
- m_StaticBatchRoot: {fileID: 0}
- m_ProbeAnchor: {fileID: 0}
- m_LightProbeVolumeOverride: {fileID: 0}
- m_ScaleInLightmap: 1
- m_PreserveUVs: 0
- m_IgnoreNormalsForChartDetection: 0
- m_ImportantGI: 0
- m_StitchLightmapSeams: 0
- m_SelectedEditorRenderState: 3
- m_MinimumChartSize: 4
- m_AutoUVMaxDistance: 0.5
- m_AutoUVMaxAngle: 89
- m_LightmapParameters: {fileID: 0}
- m_SortingLayerID: 0
- m_SortingLayer: 0
- m_SortingOrder: 0
---- !u!33 &1625969533
-MeshFilter:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1625969529}
- m_Mesh: {fileID: 10208, guid: 0000000000000000e000000000000000, type: 0}
---- !u!1 &1726782473
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 1726782474}
- - component: {fileID: 1726782477}
- - component: {fileID: 1726782476}
- - component: {fileID: 1726782478}
- m_Layer: 0
- m_Name: Cube
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!4 &1726782474
-Transform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1726782473}
- m_LocalRotation: {x: -0, y: -0, z: 0.70548546, w: 0.7087245}
- m_LocalPosition: {x: -96, y: 34, z: 10}
- m_LocalScale: {x: 218.50949, y: 23.150002, z: 10}
- m_Children: []
- m_Father: {fileID: 519420032}
- m_RootOrder: 3
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 89.73801}
---- !u!23 &1726782476
-MeshRenderer:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1726782473}
- m_Enabled: 1
- m_CastShadows: 1
- m_ReceiveShadows: 1
- m_DynamicOccludee: 1
- m_MotionVectors: 1
- m_LightProbeUsage: 1
- m_ReflectionProbeUsage: 1
- m_RenderingLayerMask: 4294967295
- m_Materials:
- - {fileID: 2100000, guid: 9e18667272bc0436d9cbf9166c874cb6, type: 2}
- m_StaticBatchInfo:
- firstSubMesh: 0
- subMeshCount: 0
- m_StaticBatchRoot: {fileID: 0}
- m_ProbeAnchor: {fileID: 0}
- m_LightProbeVolumeOverride: {fileID: 0}
- m_ScaleInLightmap: 1
- m_PreserveUVs: 0
- m_IgnoreNormalsForChartDetection: 0
- m_ImportantGI: 0
- m_StitchLightmapSeams: 0
- m_SelectedEditorRenderState: 3
- m_MinimumChartSize: 4
- m_AutoUVMaxDistance: 0.5
- m_AutoUVMaxAngle: 89
- m_LightmapParameters: {fileID: 0}
- m_SortingLayerID: 0
- m_SortingLayer: 0
- m_SortingOrder: 0
---- !u!33 &1726782477
-MeshFilter:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1726782473}
- m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0}
---- !u!61 &1726782478
-BoxCollider2D:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1726782473}
- m_Enabled: 1
- m_Density: 1
- m_Material: {fileID: 0}
- m_IsTrigger: 0
- m_UsedByEffector: 0
- m_UsedByComposite: 0
- m_Offset: {x: 0.000000059604645, y: -0.0000019073486}
- m_SpriteTilingProperty:
- border: {x: 0, y: 0, z: 0, w: 0}
- pivot: {x: 0, y: 0}
- oldSize: {x: 0, y: 0}
- newSize: {x: 0, y: 0}
- adaptiveTilingThreshold: 0
- drawMode: 0
- adaptiveTiling: 0
- m_AutoTiling: 0
- serializedVersion: 2
- m_Size: {x: 1.0000004, y: 1.0000005}
- m_EdgeRadius: 0
---- !u!1 &1891896519
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 1891896521}
- - component: {fileID: 1891896520}
- m_Layer: 0
- m_Name: GameController
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!114 &1891896520
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1891896519}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 0a4b2268f6bec4f3f9a9d36adb1efcc4, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- obj1: {fileID: 1060317879}
- obj2: {fileID: 1038461325}
- localMacAddr: 00:1A:7D:DA:71:03
- robot1MacAddr: 00:06:66:E7:8A:D0
- robot2MacAddr: 00:06:66:E7:8A:E0
- infoText: {fileID: 743351940}
---- !u!4 &1891896521
-Transform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1891896519}
- m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
- m_LocalPosition: {x: -109.5, y: 6.3, z: -10}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_Children: []
- m_Father: {fileID: 0}
- m_RootOrder: 3
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
---- !u!1 &1905069887
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 1905069888}
- - component: {fileID: 1905069890}
- - component: {fileID: 1905069889}
- m_Layer: 0
- m_Name: StartText
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!4 &1905069888
-Transform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1905069887}
- m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
- m_LocalPosition: {x: -243.4, y: 104.9, z: 10}
- m_LocalScale: {x: 10, y: 10, z: 1}
- m_Children: []
- m_Father: {fileID: 519420032}
- m_RootOrder: 5
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
---- !u!102 &1905069889
-TextMesh:
- serializedVersion: 3
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1905069887}
- m_Text: Start here
- m_OffsetZ: 0
- m_CharacterSize: 1
- m_LineSpacing: 1
- m_Anchor: 0
- m_Alignment: 0
- m_TabSize: 4
- m_FontSize: 0
- m_FontStyle: 0
- m_RichText: 1
- m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
- m_Color:
- serializedVersion: 2
- rgba: 4294967295
---- !u!23 &1905069890
-MeshRenderer:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1905069887}
- m_Enabled: 1
- m_CastShadows: 1
- m_ReceiveShadows: 1
- m_DynamicOccludee: 1
- m_MotionVectors: 1
- m_LightProbeUsage: 1
- m_ReflectionProbeUsage: 1
- m_RenderingLayerMask: 4294967295
- m_Materials:
- - {fileID: 10100, guid: 0000000000000000e000000000000000, type: 0}
- m_StaticBatchInfo:
- firstSubMesh: 0
- subMeshCount: 0
- m_StaticBatchRoot: {fileID: 0}
- m_ProbeAnchor: {fileID: 0}
- m_LightProbeVolumeOverride: {fileID: 0}
- m_ScaleInLightmap: 1
- m_PreserveUVs: 0
- m_IgnoreNormalsForChartDetection: 0
- m_ImportantGI: 0
- m_StitchLightmapSeams: 0
- m_SelectedEditorRenderState: 3
- m_MinimumChartSize: 4
- m_AutoUVMaxDistance: 0.5
- m_AutoUVMaxAngle: 89
- m_LightmapParameters: {fileID: 0}
- m_SortingLayerID: 0
- m_SortingLayer: 0
- m_SortingOrder: 0
---- !u!1 &1990700983
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 1990700984}
- - component: {fileID: 1990700987}
- - component: {fileID: 1990700986}
- - component: {fileID: 1990700985}
- m_Layer: 5
- m_Name: StartButton
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1990700984
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1990700983}
- m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_Children:
- - {fileID: 703014666}
- m_Father: {fileID: 952213262}
- m_RootOrder: 0
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0.5, y: 0.5}
- m_AnchorMax: {x: 0.5, y: 0.5}
- m_AnchoredPosition: {x: 183, y: 134}
- m_SizeDelta: {x: 100, y: 30}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1990700985
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1990700983}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Navigation:
- m_Mode: 3
- m_SelectOnUp: {fileID: 0}
- m_SelectOnDown: {fileID: 0}
- m_SelectOnLeft: {fileID: 0}
- m_SelectOnRight: {fileID: 0}
- m_Transition: 1
- m_Colors:
- m_NormalColor: {r: 1, g: 1, b: 1, a: 1}
- m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
- m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1}
- m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608}
- m_ColorMultiplier: 1
- m_FadeDuration: 0.1
- m_SpriteState:
- m_HighlightedSprite: {fileID: 0}
- m_PressedSprite: {fileID: 0}
- m_DisabledSprite: {fileID: 0}
- m_AnimationTriggers:
- m_NormalTrigger: Normal
- m_HighlightedTrigger: Highlighted
- m_PressedTrigger: Pressed
- m_DisabledTrigger: Disabled
- m_Interactable: 1
- m_TargetGraphic: {fileID: 1990700986}
- m_OnClick:
- m_PersistentCalls:
- m_Calls:
- - m_Target: {fileID: 1891896520}
- m_MethodName: start
- m_Mode: 1
- m_Arguments:
- m_ObjectArgument: {fileID: 0}
- m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine
- m_IntArgument: 0
- m_FloatArgument: 0
- m_StringArgument:
- m_BoolArgument: 0
- m_CallState: 2
- m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0,
- Culture=neutral, PublicKeyToken=null
---- !u!114 &1990700986
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1990700983}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0}
- m_Type: 1
- m_PreserveAspect: 0
- m_FillCenter: 1
- m_FillMethod: 4
- m_FillAmount: 1
- m_FillClockwise: 1
- m_FillOrigin: 0
---- !u!222 &1990700987
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1990700983}
- m_CullTransparentMesh: 0
diff --git a/EscapeTheGhost/Assets/Scenes/SampleScene.unity.meta b/EscapeTheGhost/Assets/Scenes/SampleScene.unity.meta
deleted file mode 100644
index c1e3c88..0000000
--- a/EscapeTheGhost/Assets/Scenes/SampleScene.unity.meta
+++ /dev/null
@@ -1,7 +0,0 @@
-fileFormatVersion: 2
-guid: 2cda990e2423bbf4892e6590ba056729
-DefaultImporter:
- externalObjects: {}
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/EscapeTheGhost/Assets/Wall.mat b/EscapeTheGhost/Assets/Wall.mat
deleted file mode 100644
index 9abd4be..0000000
--- a/EscapeTheGhost/Assets/Wall.mat
+++ /dev/null
@@ -1,76 +0,0 @@
-%YAML 1.1
-%TAG !u! tag:unity3d.com,2011:
---- !u!21 &2100000
-Material:
- serializedVersion: 6
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_Name: Wall
- m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0}
- m_ShaderKeywords:
- m_LightmapFlags: 4
- m_EnableInstancingVariants: 0
- m_DoubleSidedGI: 0
- m_CustomRenderQueue: -1
- stringTagMap: {}
- disabledShaderPasses: []
- m_SavedProperties:
- serializedVersion: 3
- m_TexEnvs:
- - _BumpMap:
- m_Texture: {fileID: 0}
- m_Scale: {x: 1, y: 1}
- m_Offset: {x: 0, y: 0}
- - _DetailAlbedoMap:
- m_Texture: {fileID: 0}
- m_Scale: {x: 1, y: 1}
- m_Offset: {x: 0, y: 0}
- - _DetailMask:
- m_Texture: {fileID: 0}
- m_Scale: {x: 1, y: 1}
- m_Offset: {x: 0, y: 0}
- - _DetailNormalMap:
- m_Texture: {fileID: 0}
- m_Scale: {x: 1, y: 1}
- m_Offset: {x: 0, y: 0}
- - _EmissionMap:
- m_Texture: {fileID: 0}
- m_Scale: {x: 1, y: 1}
- m_Offset: {x: 0, y: 0}
- - _MainTex:
- m_Texture: {fileID: 0}
- m_Scale: {x: 1, y: 1}
- m_Offset: {x: 0, y: 0}
- - _MetallicGlossMap:
- m_Texture: {fileID: 0}
- m_Scale: {x: 1, y: 1}
- m_Offset: {x: 0, y: 0}
- - _OcclusionMap:
- m_Texture: {fileID: 0}
- m_Scale: {x: 1, y: 1}
- m_Offset: {x: 0, y: 0}
- - _ParallaxMap:
- m_Texture: {fileID: 0}
- m_Scale: {x: 1, y: 1}
- m_Offset: {x: 0, y: 0}
- m_Floats:
- - _BumpScale: 1
- - _Cutoff: 0.5
- - _DetailNormalMapScale: 1
- - _DstBlend: 0
- - _GlossMapScale: 1
- - _Glossiness: 0.5
- - _GlossyReflections: 1
- - _Metallic: 0
- - _Mode: 0
- - _OcclusionStrength: 1
- - _Parallax: 0.02
- - _SmoothnessTextureChannel: 0
- - _SpecularHighlights: 1
- - _SrcBlend: 1
- - _UVSec: 0
- - _ZWrite: 1
- m_Colors:
- - _Color: {r: 0.6792453, g: 0.6792453, b: 0.6792453, a: 1}
- - _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
diff --git a/EscapeTheGhost/Assets/Wall.mat.meta b/EscapeTheGhost/Assets/Wall.mat.meta
deleted file mode 100644
index d2d04d3..0000000
--- a/EscapeTheGhost/Assets/Wall.mat.meta
+++ /dev/null
@@ -1,8 +0,0 @@
-fileFormatVersion: 2
-guid: 9e18667272bc0436d9cbf9166c874cb6
-NativeFormatImporter:
- externalObjects: {}
- mainObjectFileID: 2100000
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/EscapeTheGhost/Library/AnnotationManager b/EscapeTheGhost/Library/AnnotationManager
deleted file mode 100644
index c4e2734..0000000
Binary files a/EscapeTheGhost/Library/AnnotationManager and /dev/null differ
diff --git a/EscapeTheGhost/Library/AssetImportState b/EscapeTheGhost/Library/AssetImportState
deleted file mode 100644
index 0477844..0000000
--- a/EscapeTheGhost/Library/AssetImportState
+++ /dev/null
@@ -1 +0,0 @@
-13;589824;2304;0;0
\ No newline at end of file
diff --git a/EscapeTheGhost/Library/BuildPlayer.prefs b/EscapeTheGhost/Library/BuildPlayer.prefs
deleted file mode 100644
index e69de29..0000000
diff --git a/EscapeTheGhost/Library/BuildSettings.asset b/EscapeTheGhost/Library/BuildSettings.asset
deleted file mode 100644
index d98a3f4..0000000
Binary files a/EscapeTheGhost/Library/BuildSettings.asset and /dev/null differ
diff --git a/EscapeTheGhost/Library/CurrentLayout.dwlt b/EscapeTheGhost/Library/CurrentLayout.dwlt
deleted file mode 100644
index 4b2bcc5..0000000
--- a/EscapeTheGhost/Library/CurrentLayout.dwlt
+++ /dev/null
@@ -1,740 +0,0 @@
-%YAML 1.1
-%TAG !u! tag:unity3d.com,2011:
---- !u!114 &1
-MonoBehaviour:
- m_ObjectHideFlags: 52
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 0}
- m_Enabled: 1
- m_EditorHideFlags: 1
- m_Script: {fileID: 12004, guid: 0000000000000000e000000000000000, type: 0}
- m_Name:
- m_EditorClassIdentifier:
- m_PixelRect:
- serializedVersion: 2
- x: 1366
- y: 37
- width: 1915
- height: 1015
- m_ShowMode: 4
- m_Title:
- m_RootView: {fileID: 9}
- m_MinSize: {x: 950, y: 300}
- m_MaxSize: {x: 10000, y: 10000}
---- !u!114 &2
-MonoBehaviour:
- m_ObjectHideFlags: 52
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 0}
- m_Enabled: 1
- m_EditorHideFlags: 1
- m_Script: {fileID: 12010, guid: 0000000000000000e000000000000000, type: 0}
- m_Name:
- m_EditorClassIdentifier:
- m_Children:
- - {fileID: 7}
- m_Position:
- serializedVersion: 2
- x: 0
- y: 30
- width: 1915
- height: 965
- m_MinSize: {x: 713, y: 492}
- m_MaxSize: {x: 18008, y: 14042}
- vertical: 1
- controlID: 126
---- !u!114 &3
-MonoBehaviour:
- m_ObjectHideFlags: 52
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 0}
- m_Enabled: 1
- m_EditorHideFlags: 1
- m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0}
- m_Name:
- m_EditorClassIdentifier:
- m_Children: []
- m_Position:
- serializedVersion: 2
- x: 1224
- y: 0
- width: 691
- height: 965
- m_MinSize: {x: 277, y: 71}
- m_MaxSize: {x: 4002, y: 4021}
- m_ActualView: {fileID: 16}
- m_Panes:
- - {fileID: 16}
- - {fileID: 15}
- m_Selected: 0
- m_LastSelected: 1
---- !u!114 &4
-MonoBehaviour:
- m_ObjectHideFlags: 52
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 0}
- m_Enabled: 1
- m_EditorHideFlags: 1
- m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0}
- m_Name:
- m_EditorClassIdentifier:
- m_Children: []
- m_Position:
- serializedVersion: 2
- x: 811
- y: 0
- width: 413
- height: 293
- m_MinSize: {x: 204, y: 221}
- m_MaxSize: {x: 4004, y: 4021}
- m_ActualView: {fileID: 19}
- m_Panes:
- - {fileID: 19}
- m_Selected: 0
- m_LastSelected: 0
---- !u!114 &5
-MonoBehaviour:
- m_ObjectHideFlags: 52
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 0}
- m_Enabled: 1
- m_EditorHideFlags: 1
- m_Script: {fileID: 12010, guid: 0000000000000000e000000000000000, type: 0}
- m_Name:
- m_EditorClassIdentifier:
- m_Children:
- - {fileID: 8}
- - {fileID: 6}
- m_Position:
- serializedVersion: 2
- x: 0
- y: 293
- width: 1224
- height: 672
- m_MinSize: {x: 436, y: 271}
- m_MaxSize: {x: 14006, y: 10021}
- vertical: 0
- controlID: 75
---- !u!114 &6
-MonoBehaviour:
- m_ObjectHideFlags: 52
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 0}
- m_Enabled: 1
- m_EditorHideFlags: 1
- m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0}
- m_Name:
- m_EditorClassIdentifier:
- m_Children: []
- m_Position:
- serializedVersion: 2
- x: 746
- y: 0
- width: 478
- height: 672
- m_MinSize: {x: 234, y: 271}
- m_MaxSize: {x: 10004, y: 10021}
- m_ActualView: {fileID: 18}
- m_Panes:
- - {fileID: 18}
- m_Selected: 0
- m_LastSelected: 0
---- !u!114 &7
-MonoBehaviour:
- m_ObjectHideFlags: 52
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 0}
- m_Enabled: 1
- m_EditorHideFlags: 1
- m_Script: {fileID: 12010, guid: 0000000000000000e000000000000000, type: 0}
- m_Name:
- m_EditorClassIdentifier:
- m_Children:
- - {fileID: 12}
- - {fileID: 3}
- m_Position:
- serializedVersion: 2
- x: 0
- y: 0
- width: 1915
- height: 965
- m_MinSize: {x: 713, y: 492}
- m_MaxSize: {x: 18008, y: 14042}
- vertical: 0
- controlID: 127
---- !u!114 &8
-MonoBehaviour:
- m_ObjectHideFlags: 52
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 0}
- m_Enabled: 1
- m_EditorHideFlags: 1
- m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0}
- m_Name:
- m_EditorClassIdentifier:
- m_Children: []
- m_Position:
- serializedVersion: 2
- x: 0
- y: 0
- width: 746
- height: 672
- m_MinSize: {x: 202, y: 221}
- m_MaxSize: {x: 4002, y: 4021}
- m_ActualView: {fileID: 20}
- m_Panes:
- - {fileID: 20}
- m_Selected: 0
- m_LastSelected: 0
---- !u!114 &9
-MonoBehaviour:
- m_ObjectHideFlags: 52
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 0}
- m_Enabled: 1
- m_EditorHideFlags: 1
- m_Script: {fileID: 12008, guid: 0000000000000000e000000000000000, type: 0}
- m_Name:
- m_EditorClassIdentifier:
- m_Children:
- - {fileID: 10}
- - {fileID: 2}
- - {fileID: 11}
- m_Position:
- serializedVersion: 2
- x: 0
- y: 0
- width: 1915
- height: 1015
- m_MinSize: {x: 950, y: 300}
- m_MaxSize: {x: 10000, y: 10000}
---- !u!114 &10
-MonoBehaviour:
- m_ObjectHideFlags: 52
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 0}
- m_Enabled: 1
- m_EditorHideFlags: 1
- m_Script: {fileID: 12011, guid: 0000000000000000e000000000000000, type: 0}
- m_Name:
- m_EditorClassIdentifier:
- m_Children: []
- m_Position:
- serializedVersion: 2
- x: 0
- y: 0
- width: 1915
- height: 30
- m_MinSize: {x: 0, y: 0}
- m_MaxSize: {x: 0, y: 0}
- m_LastLoadedLayoutName:
---- !u!114 &11
-MonoBehaviour:
- m_ObjectHideFlags: 52
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 0}
- m_Enabled: 1
- m_EditorHideFlags: 1
- m_Script: {fileID: 12042, guid: 0000000000000000e000000000000000, type: 0}
- m_Name:
- m_EditorClassIdentifier:
- m_Children: []
- m_Position:
- serializedVersion: 2
- x: 0
- y: 995
- width: 1915
- height: 20
- m_MinSize: {x: 0, y: 0}
- m_MaxSize: {x: 0, y: 0}
---- !u!114 &12
-MonoBehaviour:
- m_ObjectHideFlags: 52
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 0}
- m_Enabled: 1
- m_EditorHideFlags: 1
- m_Script: {fileID: 12010, guid: 0000000000000000e000000000000000, type: 0}
- m_Name:
- m_EditorClassIdentifier:
- m_Children:
- - {fileID: 13}
- - {fileID: 5}
- m_Position:
- serializedVersion: 2
- x: 0
- y: 0
- width: 1224
- height: 965
- m_MinSize: {x: 436, y: 492}
- m_MaxSize: {x: 14006, y: 14042}
- vertical: 1
- controlID: 28
---- !u!114 &13
-MonoBehaviour:
- m_ObjectHideFlags: 52
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 0}
- m_Enabled: 1
- m_EditorHideFlags: 1
- m_Script: {fileID: 12010, guid: 0000000000000000e000000000000000, type: 0}
- m_Name:
- m_EditorClassIdentifier:
- m_Children:
- - {fileID: 14}
- - {fileID: 4}
- m_Position:
- serializedVersion: 2
- x: 0
- y: 0
- width: 1224
- height: 293
- m_MinSize: {x: 306, y: 221}
- m_MaxSize: {x: 8006, y: 4021}
- vertical: 0
- controlID: 29
---- !u!114 &14
-MonoBehaviour:
- m_ObjectHideFlags: 52
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 0}
- m_Enabled: 1
- m_EditorHideFlags: 1
- m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0}
- m_Name:
- m_EditorClassIdentifier:
- m_Children: []
- m_Position:
- serializedVersion: 2
- x: 0
- y: 0
- width: 811
- height: 293
- m_MinSize: {x: 102, y: 121}
- m_MaxSize: {x: 4002, y: 4021}
- m_ActualView: {fileID: 17}
- m_Panes:
- - {fileID: 17}
- m_Selected: 0
- m_LastSelected: 0
---- !u!114 &15
-MonoBehaviour:
- m_ObjectHideFlags: 52
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 0}
- m_Enabled: 1
- m_EditorHideFlags: 1
- m_Script: {fileID: 12157, guid: 0000000000000000e000000000000000, type: 0}
- m_Name:
- m_EditorClassIdentifier:
- m_MinSize: {x: 275, y: 50}
- m_MaxSize: {x: 4000, y: 4000}
- m_TitleContent:
- m_Text: Services
- m_Image: {fileID: 0}
- m_Tooltip:
- m_Pos:
- serializedVersion: 2
- x: 2593
- y: 110
- width: 693
- height: 948
- m_PersistentViewDataDictionary: {fileID: 0}
- m_InitialOpenURL: https://public-cdn.cloud.unity3d.com/editor/production/cloud/hub
- m_GlobalObjectTypeName:
- m_RegisteredViewURLs:
- - https://public-cdn.cloud.unity3d.com/editor/production/cloud/hub
- m_RegisteredViewInstances:
- - {fileID: 0}
---- !u!114 &16
-MonoBehaviour:
- m_ObjectHideFlags: 52
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 0}
- m_Enabled: 1
- m_EditorHideFlags: 1
- m_Script: {fileID: 12019, guid: 0000000000000000e000000000000000, type: 0}
- m_Name:
- m_EditorClassIdentifier:
- m_MinSize: {x: 275, y: 50}
- m_MaxSize: {x: 4000, y: 4000}
- m_TitleContent:
- m_Text: Inspector
- m_Image: {fileID: -6905738622615590433, guid: 0000000000000000d000000000000000,
- type: 0}
- m_Tooltip:
- m_Pos:
- serializedVersion: 2
- x: 2592
- y: 110
- width: 689
- height: 944
- m_PersistentViewDataDictionary: {fileID: 0}
- m_ObjectsLockedBeforeSerialization: []
- m_InstanceIDsLockedBeforeSerialization:
- m_LockTracker:
- m_IsLocked: 0
- m_PreviewResizer:
- m_CachedPref: 100
- m_ControlHash: -371814159
- m_PrefName: Preview_InspectorPreview
- m_PreviewWindow: {fileID: 0}
---- !u!114 &17
-MonoBehaviour:
- m_ObjectHideFlags: 52
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 0}
- m_Enabled: 1
- m_EditorHideFlags: 1
- m_Script: {fileID: 12013, guid: 0000000000000000e000000000000000, type: 0}
- m_Name:
- m_EditorClassIdentifier:
- m_MinSize: {x: 100, y: 100}
- m_MaxSize: {x: 4000, y: 4000}
- m_TitleContent:
- m_Text: Scene
- m_Image: {fileID: 2318424515335265636, guid: 0000000000000000d000000000000000,
- type: 0}
- m_Tooltip:
- m_Pos:
- serializedVersion: 2
- x: 1366
- y: 110
- width: 809
- height: 272
- m_PersistentViewDataDictionary: {fileID: 0}
- m_SceneLighting: 1
- lastFramingTime: 67.43262314796448
- m_2DMode: 1
- m_isRotationLocked: 0
- m_AudioPlay: 0
- m_Position:
- m_Target: {x: -257.02115, y: -346.92734, z: -29.378128}
- speed: 2
- m_Value: {x: -257.02115, y: -346.92734, z: -29.378128}
- m_RenderMode: 0
- m_CameraMode:
- drawMode: 0
- name: Shaded
- section: Shading Mode
- m_ValidateTrueMetals: 0
- m_SceneViewState:
- showFog: 0
- showMaterialUpdate: 0
- showSkybox: 0
- showFlares: 0
- showImageEffects: 0
- showParticleSystems: 1
- grid:
- xGrid:
- m_Target: 0
- speed: 2
- m_Value: 0
- yGrid:
- m_Target: 0
- speed: 2
- m_Value: 0
- zGrid:
- m_Target: 1
- speed: 2
- m_Value: 1
- m_Rotation:
- m_Target: {x: 0, y: 0, z: 0, w: 1}
- speed: 2
- m_Value: {x: 0, y: 0, z: 0, w: 1}
- m_Size:
- m_Target: 1979.8062
- speed: 2
- m_Value: 1979.8062
- m_Ortho:
- m_Target: 1
- speed: 2
- m_Value: 1
- m_ShowGlobalGrid: 1
- m_LastSceneViewRotation: {x: -0.08717229, y: 0.89959055, z: -0.21045254, w: -0.3726226}
- m_LastSceneViewOrtho: 0
- m_ReplacementShader: {fileID: 0}
- m_ReplacementString:
- m_LastLockedObject: {fileID: 0}
- m_ViewIsLockedToObject: 0
---- !u!114 &18
-MonoBehaviour:
- m_ObjectHideFlags: 52
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 0}
- m_Enabled: 1
- m_EditorHideFlags: 1
- m_Script: {fileID: 12014, guid: 0000000000000000e000000000000000, type: 0}
- m_Name:
- m_EditorClassIdentifier:
- m_MinSize: {x: 230, y: 250}
- m_MaxSize: {x: 10000, y: 10000}
- m_TitleContent:
- m_Text: Project
- m_Image: {fileID: -7501376956915960154, guid: 0000000000000000d000000000000000,
- type: 0}
- m_Tooltip:
- m_Pos:
- serializedVersion: 2
- x: 2114
- y: 403
- width: 474
- height: 651
- m_PersistentViewDataDictionary: {fileID: 0}
- m_SearchFilter:
- m_NameFilter:
- m_ClassNames: []
- m_AssetLabels: []
- m_AssetBundleNames: []
- m_VersionControlStates: []
- m_SoftLockControlStates: []
- m_ReferencingInstanceIDs:
- m_ScenePaths: []
- m_ShowAllHits: 0
- m_SearchArea: 1
- m_Folders:
- - Assets/Plugins/Android
- m_ViewMode: 0
- m_StartGridSize: 64
- m_LastFolders: []
- m_LastFoldersGridSize: -1
- m_LastProjectPath: /home/sergei/Documents/repos/git/EPFL/CHILI/Cellulo/cellulo-unity/EscapeTheGhost
- m_LockTracker:
- m_IsLocked: 0
- m_FolderTreeState:
- scrollPos: {x: 0, y: 0}
- m_SelectedIDs: b6280000
- m_LastClickedID: 10422
- m_ExpandedIDs: 00000000fa290000222a0000
- m_RenameOverlay:
- m_UserAcceptedRename: 0
- m_Name:
- m_OriginalName:
- m_EditFieldRect:
- serializedVersion: 2
- x: 0
- y: 0
- width: 0
- height: 0
- m_UserData: 0
- m_IsWaitingForDelay: 0
- m_IsRenaming: 0
- m_OriginalEventType: 11
- m_IsRenamingFilename: 1
- m_ClientGUIView: {fileID: 0}
- m_SearchString:
- m_CreateAssetUtility:
- m_EndAction: {fileID: 0}
- m_InstanceID: 0
- m_Path:
- m_Icon: {fileID: 0}
- m_ResourceFile:
- m_AssetTreeState:
- scrollPos: {x: 0, y: 0}
- m_SelectedIDs:
- m_LastClickedID: 0
- m_ExpandedIDs: ffffffff00000000fa290000222a0000742a0000882b00007c2c0000
- m_RenameOverlay:
- m_UserAcceptedRename: 0
- m_Name:
- m_OriginalName:
- m_EditFieldRect:
- serializedVersion: 2
- x: 0
- y: 0
- width: 0
- height: 0
- m_UserData: 0
- m_IsWaitingForDelay: 0
- m_IsRenaming: 0
- m_OriginalEventType: 11
- m_IsRenamingFilename: 1
- m_ClientGUIView: {fileID: 6}
- m_SearchString:
- m_CreateAssetUtility:
- m_EndAction: {fileID: 0}
- m_InstanceID: 0
- m_Path:
- m_Icon: {fileID: 0}
- m_ResourceFile:
- m_ListAreaState:
- m_SelectedInstanceIDs:
- m_LastClickedInstanceID: 0
- m_HadKeyboardFocusLastEvent: 0
- m_ExpandedInstanceIDs:
- m_RenameOverlay:
- m_UserAcceptedRename: 0
- m_Name:
- m_OriginalName:
- m_EditFieldRect:
- serializedVersion: 2
- x: 0
- y: 0
- width: 0
- height: 0
- m_UserData: 0
- m_IsWaitingForDelay: 0
- m_IsRenaming: 0
- m_OriginalEventType: 11
- m_IsRenamingFilename: 1
- m_ClientGUIView: {fileID: 6}
- m_CreateAssetUtility:
- m_EndAction: {fileID: 0}
- m_InstanceID: 0
- m_Path:
- m_Icon: {fileID: 0}
- m_ResourceFile:
- m_NewAssetIndexInList: -1
- m_ScrollPosition: {x: 0, y: 0}
- m_GridSize: 64
- m_DirectoriesAreaWidth: 115
---- !u!114 &19
-MonoBehaviour:
- m_ObjectHideFlags: 52
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 0}
- m_Enabled: 1
- m_EditorHideFlags: 1
- m_Script: {fileID: 12061, guid: 0000000000000000e000000000000000, type: 0}
- m_Name:
- m_EditorClassIdentifier:
- m_MinSize: {x: 200, y: 200}
- m_MaxSize: {x: 4000, y: 4000}
- m_TitleContent:
- m_Text: Hierarchy
- m_Image: {fileID: -590624980919486359, guid: 0000000000000000d000000000000000,
- type: 0}
- m_Tooltip:
- m_Pos:
- serializedVersion: 2
- x: 2179
- y: 110
- width: 409
- height: 272
- m_PersistentViewDataDictionary: {fileID: 0}
- m_TreeViewState:
- scrollPos: {x: 0, y: 0}
- m_SelectedIDs: 862e0000
- m_LastClickedID: 11910
- m_ExpandedIDs: b8f4ffffcef4ffff1af5ffffa8f6ffffcefbffff00000000162e00003e2e0000
- m_RenameOverlay:
- m_UserAcceptedRename: 0
- m_Name:
- m_OriginalName:
- m_EditFieldRect:
- serializedVersion: 2
- x: 0
- y: 0
- width: 0
- height: 0
- m_UserData: 0
- m_IsWaitingForDelay: 0
- m_IsRenaming: 0
- m_OriginalEventType: 11
- m_IsRenamingFilename: 0
- m_ClientGUIView: {fileID: 4}
- m_SearchString:
- m_ExpandedScenes:
- - SampleScene
- m_CurrenRootInstanceID: 0
- m_LockTracker:
- m_IsLocked: 0
- m_CurrentSortingName: TransformSorting
---- !u!114 &20
-MonoBehaviour:
- m_ObjectHideFlags: 52
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 0}
- m_Enabled: 1
- m_EditorHideFlags: 1
- m_Script: {fileID: 12015, guid: 0000000000000000e000000000000000, type: 0}
- m_Name:
- m_EditorClassIdentifier:
- m_MinSize: {x: 200, y: 200}
- m_MaxSize: {x: 4000, y: 4000}
- m_TitleContent:
- m_Text: Game
- m_Image: {fileID: -2087823869225018852, guid: 0000000000000000d000000000000000,
- type: 0}
- m_Tooltip:
- m_Pos:
- serializedVersion: 2
- x: 1366
- y: 403
- width: 744
- height: 651
- m_PersistentViewDataDictionary: {fileID: 0}
- m_MaximizeOnPlay: 0
- m_Gizmos: 0
- m_Stats: 0
- m_SelectedSizes: 02000000000000000000000000000000000000000000000000000000000000000000000000000000
- m_TargetDisplay: 0
- m_ZoomArea:
- m_HRangeLocked: 0
- m_VRangeLocked: 0
- hZoomLockedByDefault: 0
- vZoomLockedByDefault: 0
- m_HBaseRangeMin: -372
- m_HBaseRangeMax: 372
- m_VBaseRangeMin: -317
- m_VBaseRangeMax: 317
- m_HAllowExceedBaseRangeMin: 1
- m_HAllowExceedBaseRangeMax: 1
- m_VAllowExceedBaseRangeMin: 1
- m_VAllowExceedBaseRangeMax: 1
- m_ScaleWithWindow: 0
- m_HSlider: 0
- m_VSlider: 0
- m_IgnoreScrollWheelUntilClicked: 0
- m_EnableMouseInput: 1
- m_EnableSliderZoomHorizontal: 0
- m_EnableSliderZoomVertical: 0
- m_UniformScale: 1
- m_UpDirection: 1
- m_DrawArea:
- serializedVersion: 2
- x: 0
- y: 17
- width: 744
- height: 634
- m_Scale: {x: 1, y: 1}
- m_Translation: {x: 372, y: 317}
- m_MarginLeft: 0
- m_MarginRight: 0
- m_MarginTop: 0
- m_MarginBottom: 0
- m_LastShownAreaInsideMargins:
- serializedVersion: 2
- x: -372
- y: -317
- width: 744
- height: 634
- m_MinimalGUI: 1
- m_defaultScale: 1
- m_TargetTexture: {fileID: 0}
- m_CurrentColorSpace: 0
- m_LastWindowPixelSize: {x: 744, y: 651}
- m_ClearInEditMode: 1
- m_NoCameraWarning: 1
- m_LowResolutionForAspectRatios: 01000000000100000100
- m_XRRenderMode: 0
diff --git a/EscapeTheGhost/Library/EditorUserBuildSettings.asset b/EscapeTheGhost/Library/EditorUserBuildSettings.asset
deleted file mode 100644
index 9b8fcc7..0000000
Binary files a/EscapeTheGhost/Library/EditorUserBuildSettings.asset and /dev/null differ
diff --git a/EscapeTheGhost/Library/EditorUserSettings.asset b/EscapeTheGhost/Library/EditorUserSettings.asset
deleted file mode 100644
index d5de58d..0000000
Binary files a/EscapeTheGhost/Library/EditorUserSettings.asset and /dev/null differ
diff --git a/EscapeTheGhost/Library/InspectorExpandedItems.asset b/EscapeTheGhost/Library/InspectorExpandedItems.asset
deleted file mode 100644
index cdfb468..0000000
Binary files a/EscapeTheGhost/Library/InspectorExpandedItems.asset and /dev/null differ
diff --git a/EscapeTheGhost/Library/LastBuild.buildreport b/EscapeTheGhost/Library/LastBuild.buildreport
deleted file mode 100644
index c07032f..0000000
Binary files a/EscapeTheGhost/Library/LastBuild.buildreport and /dev/null differ
diff --git a/EscapeTheGhost/Library/LastSceneManagerSetup.txt b/EscapeTheGhost/Library/LastSceneManagerSetup.txt
deleted file mode 100644
index 16052c4..0000000
--- a/EscapeTheGhost/Library/LastSceneManagerSetup.txt
+++ /dev/null
@@ -1,4 +0,0 @@
-sceneSetups:
-- path: Assets/Scenes/SampleScene.unity
- isLoaded: 1
- isActive: 1
diff --git a/EscapeTheGhost/Library/LibraryFormatVersion.txt b/EscapeTheGhost/Library/LibraryFormatVersion.txt
deleted file mode 100644
index 6185f09..0000000
--- a/EscapeTheGhost/Library/LibraryFormatVersion.txt
+++ /dev/null
@@ -1,2 +0,0 @@
-unityRebuildLibraryVersion: 11
-unityForwardCompatibleVersion: 40
diff --git a/EscapeTheGhost/Library/MonoManager.asset b/EscapeTheGhost/Library/MonoManager.asset
deleted file mode 100644
index f91c721..0000000
Binary files a/EscapeTheGhost/Library/MonoManager.asset and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/Assembly-CSharp.dll b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/Assembly-CSharp.dll
deleted file mode 100755
index 1c35b1e..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/Assembly-CSharp.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/Mono.Security.dll b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/Mono.Security.dll
deleted file mode 100755
index 0bb9800..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/Mono.Security.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/System.Core.dll b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/System.Core.dll
deleted file mode 100755
index e30e86b..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/System.Core.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/System.dll b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/System.dll
deleted file mode 100755
index 7cbc864..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/System.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/Unity.TextMeshPro.dll b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/Unity.TextMeshPro.dll
deleted file mode 100755
index b64be4b..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/Unity.TextMeshPro.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.AIModule.dll b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.AIModule.dll
deleted file mode 100644
index 7b35cc9..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.AIModule.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.AIModule.xml b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.AIModule.xml
deleted file mode 100644
index 4684fb4..0000000
--- a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.AIModule.xml
+++ /dev/null
@@ -1,1715 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
-<doc>
- <members>
- <assembly>
- <name>UnityEngine.AIModule</name>
- </assembly>
- <member name="T:UnityEngine.AI.NavMesh">
- <summary>
- <para>Singleton class to access the baked NavMesh.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMesh.avoidancePredictionTime">
- <summary>
- <para>Describes how far in the future the agents predict collisions for avoidance.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AI.NavMesh.onPreUpdate">
- <summary>
- <para>Set a function to be called before the NavMesh is updated during the frame update execution.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMesh.pathfindingIterationsPerFrame">
- <summary>
- <para>The maximum amount of nodes processed each frame in the asynchronous pathfinding process.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.AI.NavMesh.AddLink(UnityEngine.AI.NavMeshLinkData)">
- <summary>
- <para>Adds a link to the NavMesh. The link is described by the NavMeshLinkData struct.</para>
- </summary>
- <param name="link">Describing the properties of the link.</param>
- <returns>
- <para>Representing the added link.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.AI.NavMesh.AddLink(UnityEngine.AI.NavMeshLinkData,UnityEngine.Vector3,UnityEngine.Quaternion)">
- <summary>
- <para>Adds a link to the NavMesh. The link is described by the NavMeshLinkData struct.</para>
- </summary>
- <param name="link">Describing the properties of the link.</param>
- <param name="position">Translate the link to this position.</param>
- <param name="rotation">Rotate the link to this orientation.</param>
- <returns>
- <para>Representing the added link.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.AI.NavMesh.AddNavMeshData(UnityEngine.AI.NavMeshData)">
- <summary>
- <para>Adds the specified NavMeshData to the game.</para>
- </summary>
- <param name="navMeshData">Contains the data for the navmesh.</param>
- <returns>
- <para>Representing the added navmesh.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.AI.NavMesh.AddNavMeshData(UnityEngine.AI.NavMeshData,UnityEngine.Vector3,UnityEngine.Quaternion)">
- <summary>
- <para>Adds the specified NavMeshData to the game.</para>
- </summary>
- <param name="navMeshData">Contains the data for the navmesh.</param>
- <param name="position">Translate the navmesh to this position.</param>
- <param name="rotation">Rotate the navmesh to this orientation.</param>
- <returns>
- <para>Representing the added navmesh.</para>
- </returns>
- </member>
- <member name="F:UnityEngine.AI.NavMesh.AllAreas">
- <summary>
- <para>Area mask constant that includes all NavMesh areas.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.AI.NavMesh.CalculatePath(UnityEngine.Vector3,UnityEngine.Vector3,System.Int32,UnityEngine.AI.NavMeshPath)">
- <summary>
- <para>Calculate a path between two points and store the resulting path.</para>
- </summary>
- <param name="sourcePosition">The initial position of the path requested.</param>
- <param name="targetPosition">The final position of the path requested.</param>
- <param name="areaMask">A bitfield mask specifying which NavMesh areas can be passed when calculating a path.</param>
- <param name="path">The resulting path.</param>
- <returns>
- <para>True if a either a complete or partial path is found and false otherwise.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.AI.NavMesh.CalculatePath(UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.AI.NavMeshQueryFilter,UnityEngine.AI.NavMeshPath)">
- <summary>
- <para>Calculates a path between two positions mapped to the NavMesh, subject to the constraints and costs defined by the filter argument.</para>
- </summary>
- <param name="sourcePosition">The initial position of the path requested.</param>
- <param name="targetPosition">The final position of the path requested.</param>
- <param name="filter">A filter specifying the cost of NavMesh areas that can be passed when calculating a path.</param>
- <param name="path">The resulting path.</param>
- <returns>
- <para>True if a either a complete or partial path is found and false otherwise.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.AI.NavMesh.CalculateTriangulation">
- <summary>
- <para>Calculates triangulation of the current navmesh.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.AI.NavMesh.CreateSettings">
- <summary>
- <para>Creates and returns a new entry of NavMesh build settings available for runtime NavMesh building.</para>
- </summary>
- <returns>
- <para>The created settings.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.AI.NavMesh.FindClosestEdge(UnityEngine.Vector3,UnityEngine.AI.NavMeshHit&amp;,System.Int32)">
- <summary>
- <para>Locate the closest NavMesh edge from a point on the NavMesh.</para>
- </summary>
- <param name="sourcePosition">The origin of the distance query.</param>
- <param name="hit">Holds the properties of the resulting location.</param>
- <param name="areaMask">A bitfield mask specifying which NavMesh areas can be passed when finding the nearest edge.</param>
- <returns>
- <para>True if a nearest edge is found.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.AI.NavMesh.FindClosestEdge(UnityEngine.Vector3,UnityEngine.AI.NavMeshHit&amp;,UnityEngine.AI.NavMeshQueryFilter)">
- <summary>
- <para>Locate the closest NavMesh edge from a point on the NavMesh, subject to the constraints of the filter argument.</para>
- </summary>
- <param name="sourcePosition">The origin of the distance query.</param>
- <param name="hit">Holds the properties of the resulting location.</param>
- <param name="filter">A filter specifying which NavMesh areas can be passed when finding the nearest edge.</param>
- <returns>
- <para>True if a nearest edge is found.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.AI.NavMesh.GetAreaCost(System.Int32)">
- <summary>
- <para>Gets the cost for path finding over geometry of the area type.</para>
- </summary>
- <param name="areaIndex">Index of the area to get.</param>
- </member>
- <member name="M:UnityEngine.AI.NavMesh.GetAreaFromName(System.String)">
- <summary>
- <para>Returns the area index for a named NavMesh area type.</para>
- </summary>
- <param name="areaName">Name of the area to look up.</param>
- <returns>
- <para>Index if the specified are, or -1 if no area found.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.AI.NavMesh.GetLayerCost(System.Int32)">
- <summary>
- <para>Gets the cost for traversing over geometry of the layer type on all agents.</para>
- </summary>
- <param name="layer"></param>
- </member>
- <member name="M:UnityEngine.AI.NavMesh.GetNavMeshLayerFromName(System.String)">
- <summary>
- <para>Returns the layer index for a named layer.</para>
- </summary>
- <param name="layerName"></param>
- </member>
- <member name="M:UnityEngine.AI.NavMesh.GetSettingsByID(System.Int32)">
- <summary>
- <para>Returns an existing entry of NavMesh build settings.</para>
- </summary>
- <param name="agentTypeID">The ID to look for.</param>
- <returns>
- <para>The settings found.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.AI.NavMesh.GetSettingsByIndex(System.Int32)">
- <summary>
- <para>Returns an existing entry of NavMesh build settings by its ordered index.</para>
- </summary>
- <param name="index">The index to retrieve from.</param>
- <returns>
- <para>The found settings.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.AI.NavMesh.GetSettingsCount">
- <summary>
- <para>Returns the number of registered NavMesh build settings.</para>
- </summary>
- <returns>
- <para>The number of registered entries.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.AI.NavMesh.GetSettingsNameFromID(System.Int32)">
- <summary>
- <para>Returns the name associated with the NavMesh build settings matching the provided agent type ID.</para>
- </summary>
- <param name="agentTypeID">The ID to look for.</param>
- <returns>
- <para>The name associated with the ID found.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.AI.NavMesh.OnNavMeshPreUpdate">
- <summary>
- <para>A delegate which can be used to register callback methods to be invoked before the NavMesh system updates.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.AI.NavMesh.Raycast(UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.AI.NavMeshHit&amp;,System.Int32)">
- <summary>
- <para>Trace a line between two points on the NavMesh.</para>
- </summary>
- <param name="sourcePosition">The origin of the ray.</param>
- <param name="targetPosition">The end of the ray.</param>
- <param name="hit">Holds the properties of the ray cast resulting location.</param>
- <param name="areaMask">A bitfield mask specifying which NavMesh areas can be passed when tracing the ray.</param>
- <returns>
- <para>True if the ray is terminated before reaching target position. Otherwise returns false.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.AI.NavMesh.Raycast(UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.AI.NavMeshHit&amp;,UnityEngine.AI.NavMeshQueryFilter)">
- <summary>
- <para>Traces a line between two positions on the NavMesh, subject to the constraints defined by the filter argument.</para>
- </summary>
- <param name="sourcePosition">The origin of the ray.</param>
- <param name="targetPosition">The end of the ray.</param>
- <param name="hit">Holds the properties of the ray cast resulting location.</param>
- <param name="filter">A filter specifying which NavMesh areas can be passed when tracing the ray.</param>
- <returns>
- <para>True if the ray is terminated before reaching target position. Otherwise returns false.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.AI.NavMesh.RemoveAllNavMeshData">
- <summary>
- <para>Removes all NavMesh surfaces and links from the game.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.AI.NavMesh.RemoveLink(UnityEngine.AI.NavMeshLinkInstance)">
- <summary>
- <para>Removes a link from the NavMesh.</para>
- </summary>
- <param name="handle">The instance of a link to remove.</param>
- </member>
- <member name="M:UnityEngine.AI.NavMesh.RemoveNavMeshData(UnityEngine.AI.NavMeshDataInstance)">
- <summary>
- <para>Removes the specified NavMeshDataInstance from the game, making it unavailable for agents and queries.</para>
- </summary>
- <param name="handle">The instance of a NavMesh to remove.</param>
- </member>
- <member name="M:UnityEngine.AI.NavMesh.RemoveSettings(System.Int32)">
- <summary>
- <para>Removes the build settings matching the agent type ID.</para>
- </summary>
- <param name="agentTypeID">The ID of the entry to remove.</param>
- </member>
- <member name="M:UnityEngine.AI.NavMesh.SamplePosition(UnityEngine.Vector3,UnityEngine.AI.NavMeshHit&amp;,System.Single,System.Int32)">
- <summary>
- <para>Finds the closest point on NavMesh within specified range.</para>
- </summary>
- <param name="sourcePosition">The origin of the sample query.</param>
- <param name="hit">Holds the properties of the resulting location.</param>
- <param name="maxDistance">Sample within this distance from sourcePosition.</param>
- <param name="areaMask">A mask specifying which NavMesh areas are allowed when finding the nearest point.</param>
- <returns>
- <para>True if a nearest point is found.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.AI.NavMesh.SamplePosition(UnityEngine.Vector3,UnityEngine.AI.NavMeshHit&amp;,System.Single,UnityEngine.AI.NavMeshQueryFilter)">
- <summary>
- <para>Samples the position closest to sourcePosition - on any NavMesh built for the agent type specified by the filter.</para>
- </summary>
- <param name="sourcePosition">The origin of the sample query.</param>
- <param name="hit">Holds the properties of the resulting location.</param>
- <param name="maxDistance">Sample within this distance from sourcePosition.</param>
- <param name="filter">A filter specifying which NavMesh areas are allowed when finding the nearest point.</param>
- <returns>
- <para>True if a nearest point is found.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.AI.NavMesh.SetAreaCost(System.Int32,System.Single)">
- <summary>
- <para>Sets the cost for finding path over geometry of the area type on all agents.</para>
- </summary>
- <param name="areaIndex">Index of the area to set.</param>
- <param name="cost">New cost.</param>
- </member>
- <member name="M:UnityEngine.AI.NavMesh.SetLayerCost(System.Int32,System.Single)">
- <summary>
- <para>Sets the cost for traversing over geometry of the layer type on all agents.</para>
- </summary>
- <param name="layer"></param>
- <param name="cost"></param>
- </member>
- <member name="T:UnityEngine.AI.NavMeshAgent">
- <summary>
- <para>Navigation mesh agent.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshAgent.acceleration">
- <summary>
- <para>The maximum acceleration of an agent as it follows a path, given in units / sec^2.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshAgent.agentTypeID">
- <summary>
- <para>The type ID for the agent.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshAgent.angularSpeed">
- <summary>
- <para>Maximum turning speed in (deg/s) while following a path.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshAgent.areaMask">
- <summary>
- <para>Specifies which NavMesh areas are passable. Changing areaMask will make the path stale (see isPathStale).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshAgent.autoBraking">
- <summary>
- <para>Should the agent brake automatically to avoid overshooting the destination point?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshAgent.autoRepath">
- <summary>
- <para>Should the agent attempt to acquire a new path if the existing path becomes invalid?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshAgent.autoTraverseOffMeshLink">
- <summary>
- <para>Should the agent move across OffMeshLinks automatically?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshAgent.avoidancePriority">
- <summary>
- <para>The avoidance priority level.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshAgent.baseOffset">
- <summary>
- <para>The relative vertical displacement of the owning GameObject.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshAgent.currentOffMeshLinkData">
- <summary>
- <para>The current OffMeshLinkData.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshAgent.desiredVelocity">
- <summary>
- <para>The desired velocity of the agent including any potential contribution from avoidance. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshAgent.destination">
- <summary>
- <para>Gets or attempts to set the destination of the agent in world-space units.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshAgent.hasPath">
- <summary>
- <para>Does the agent currently have a path? (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshAgent.height">
- <summary>
- <para>The height of the agent for purposes of passing under obstacles, etc.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshAgent.isOnNavMesh">
- <summary>
- <para>Is the agent currently bound to the navmesh? (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshAgent.isOnOffMeshLink">
- <summary>
- <para>Is the agent currently positioned on an OffMeshLink? (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshAgent.isPathStale">
- <summary>
- <para>Is the current path stale. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshAgent.isStopped">
- <summary>
- <para>This property holds the stop or resume condition of the NavMesh agent.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshAgent.navMeshOwner">
- <summary>
- <para>Returns the owning object of the NavMesh the agent is currently placed on (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshAgent.nextOffMeshLinkData">
- <summary>
- <para>The next OffMeshLinkData on the current path.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshAgent.nextPosition">
- <summary>
- <para>Gets or sets the simulation position of the navmesh agent.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshAgent.obstacleAvoidanceType">
- <summary>
- <para>The level of quality of avoidance.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshAgent.path">
- <summary>
- <para>Property to get and set the current path.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshAgent.pathPending">
- <summary>
- <para>Is a path in the process of being computed but not yet ready? (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshAgent.pathStatus">
- <summary>
- <para>The status of the current path (complete, partial or invalid).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshAgent.radius">
- <summary>
- <para>The avoidance radius for the agent.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshAgent.remainingDistance">
- <summary>
- <para>The distance between the agent's position and the destination on the current path. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshAgent.speed">
- <summary>
- <para>Maximum movement speed when following a path.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshAgent.steeringTarget">
- <summary>
- <para>Get the current steering target along the path. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshAgent.stoppingDistance">
- <summary>
- <para>Stop within this distance from the target position.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshAgent.updatePosition">
- <summary>
- <para>Gets or sets whether the transform position is synchronized with the simulated agent position. The default value is true.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshAgent.updateRotation">
- <summary>
- <para>Should the agent update the transform orientation?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshAgent.updateUpAxis">
- <summary>
- <para>Allows you to specify whether the agent should be aligned to the up-axis of the NavMesh or link that it is placed on.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshAgent.velocity">
- <summary>
- <para>Access the current velocity of the NavMeshAgent component, or set a velocity to control the agent manually.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshAgent.walkableMask">
- <summary>
- <para>Specifies which NavMesh layers are passable (bitfield). Changing walkableMask will make the path stale (see isPathStale).</para>
- </summary>
- </member>
- <member name="M:UnityEngine.AI.NavMeshAgent.ActivateCurrentOffMeshLink(System.Boolean)">
- <summary>
- <para>Enables or disables the current off-mesh link.</para>
- </summary>
- <param name="activated">Is the link activated?</param>
- </member>
- <member name="M:UnityEngine.AI.NavMeshAgent.CalculatePath(UnityEngine.Vector3,UnityEngine.AI.NavMeshPath)">
- <summary>
- <para>Calculate a path to a specified point and store the resulting path.</para>
- </summary>
- <param name="targetPosition">The final position of the path requested.</param>
- <param name="path">The resulting path.</param>
- <returns>
- <para>True if a path is found.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.AI.NavMeshAgent.CompleteOffMeshLink">
- <summary>
- <para>Completes the movement on the current OffMeshLink.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.AI.NavMeshAgent.FindClosestEdge(UnityEngine.AI.NavMeshHit&amp;)">
- <summary>
- <para>Locate the closest NavMesh edge.</para>
- </summary>
- <param name="hit">Holds the properties of the resulting location.</param>
- <returns>
- <para>True if a nearest edge is found.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.AI.NavMeshAgent.GetAreaCost(System.Int32)">
- <summary>
- <para>Gets the cost for path calculation when crossing area of a particular type.</para>
- </summary>
- <param name="areaIndex">Area Index.</param>
- <returns>
- <para>Current cost for specified area index.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.AI.NavMeshAgent.GetLayerCost(System.Int32)">
- <summary>
- <para>Gets the cost for crossing ground of a particular type.</para>
- </summary>
- <param name="layer">Layer index.</param>
- <returns>
- <para>Current cost of specified layer.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.AI.NavMeshAgent.Move(UnityEngine.Vector3)">
- <summary>
- <para>Apply relative movement to current position.</para>
- </summary>
- <param name="offset">The relative movement vector.</param>
- </member>
- <member name="M:UnityEngine.AI.NavMeshAgent.Raycast(UnityEngine.Vector3,UnityEngine.AI.NavMeshHit&amp;)">
- <summary>
- <para>Trace a straight path towards a target postion in the NavMesh without moving the agent.</para>
- </summary>
- <param name="targetPosition">The desired end position of movement.</param>
- <param name="hit">Properties of the obstacle detected by the ray (if any).</param>
- <returns>
- <para>True if there is an obstacle between the agent and the target position, otherwise false.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.AI.NavMeshAgent.ResetPath">
- <summary>
- <para>Clears the current path.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.AI.NavMeshAgent.Resume">
- <summary>
- <para>Resumes the movement along the current path after a pause.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.AI.NavMeshAgent.SamplePathPosition(System.Int32,System.Single,UnityEngine.AI.NavMeshHit&amp;)">
- <summary>
- <para>Sample a position along the current path.</para>
- </summary>
- <param name="areaMask">A bitfield mask specifying which NavMesh areas can be passed when tracing the path.</param>
- <param name="maxDistance">Terminate scanning the path at this distance.</param>
- <param name="hit">Holds the properties of the resulting location.</param>
- <returns>
- <para>True if terminated before reaching the position at maxDistance, false otherwise.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.AI.NavMeshAgent.SetAreaCost(System.Int32,System.Single)">
- <summary>
- <para>Sets the cost for traversing over areas of the area type.</para>
- </summary>
- <param name="areaIndex">Area cost.</param>
- <param name="areaCost">New cost for the specified area index.</param>
- </member>
- <member name="M:UnityEngine.AI.NavMeshAgent.SetDestination(UnityEngine.Vector3)">
- <summary>
- <para>Sets or updates the destination thus triggering the calculation for a new path.</para>
- </summary>
- <param name="target">The target point to navigate to.</param>
- <returns>
- <para>True if the destination was requested successfully, otherwise false.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.AI.NavMeshAgent.SetLayerCost(System.Int32,System.Single)">
- <summary>
- <para>Sets the cost for traversing over geometry of the layer type.</para>
- </summary>
- <param name="layer">Layer index.</param>
- <param name="cost">New cost for the specified layer.</param>
- </member>
- <member name="M:UnityEngine.AI.NavMeshAgent.SetPath(UnityEngine.AI.NavMeshPath)">
- <summary>
- <para>Assign a new path to this agent.</para>
- </summary>
- <param name="path">New path to follow.</param>
- <returns>
- <para>True if the path is succesfully assigned.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.AI.NavMeshAgent.Stop">
- <summary>
- <para>Stop movement of this agent along its current path.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.AI.NavMeshAgent.Warp(UnityEngine.Vector3)">
- <summary>
- <para>Warps agent to the provided position.</para>
- </summary>
- <param name="newPosition">New position to warp the agent to.</param>
- <returns>
- <para>True if agent is successfully warped, otherwise false.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.AI.NavMeshBuildDebugFlags">
- <summary>
- <para>Bitmask used for operating with debug data from the NavMesh build process.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AI.NavMeshBuildDebugFlags.All">
- <summary>
- <para>All debug data from the NavMesh build process is taken into consideration.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AI.NavMeshBuildDebugFlags.InputGeometry">
- <summary>
- <para>The triangles of all the geometry that is used as a base for computing the new NavMesh.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AI.NavMeshBuildDebugFlags.None">
- <summary>
- <para>No debug data from the NavMesh build process is taken into consideration.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AI.NavMeshBuildDebugFlags.PolygonMeshes">
- <summary>
- <para>Meshes of convex polygons constructed within the unified contours of adjacent regions.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AI.NavMeshBuildDebugFlags.PolygonMeshesDetail">
- <summary>
- <para>The triangulated meshes with height details that better approximate the source geometry.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AI.NavMeshBuildDebugFlags.RawContours">
- <summary>
- <para>The contours that follow precisely the edges of each surface region.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AI.NavMeshBuildDebugFlags.Regions">
- <summary>
- <para>The segmentation of the traversable surfaces into smaller areas necessary for producing simple polygons.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AI.NavMeshBuildDebugFlags.SimplifiedContours">
- <summary>
- <para>Contours bounding each of the surface regions, described through fewer vertices and straighter edges compared to RawContours.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AI.NavMeshBuildDebugFlags.Voxels">
- <summary>
- <para>The voxels produced by rasterizing the source geometry into walkable and unwalkable areas.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.AI.NavMeshBuildDebugSettings">
- <summary>
- <para>Specify which of the temporary data generated while building the NavMesh should be retained in memory after the process has completed.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshBuildDebugSettings.flags">
- <summary>
- <para>Specify which types of debug data to collect when building the NavMesh.</para>
- </summary>
- </member>
- <member name="T:UnityEditor.AI.NavMeshBuilder">
- <summary>
- <para>Navigation mesh builder interface.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.AI.NavMeshBuilder.BuildNavMeshData(UnityEngine.AI.NavMeshBuildSettings,System.Collections.Generic.List`1&lt;UnityEngine.AI.NavMeshBuildSource&gt;,UnityEngine.Bounds,UnityEngine.Vector3,UnityEngine.Quaternion)">
- <summary>
- <para>Builds a NavMesh data object from the provided input sources.</para>
- </summary>
- <param name="buildSettings">Settings for the bake process, see NavMeshBuildSettings.</param>
- <param name="sources">List of input geometry used for baking, they describe the surfaces to walk on or obstacles to avoid.</param>
- <param name="localBounds">Bounding box relative to position and rotation which describes the volume where the NavMesh should be built. Empty bounds is treated as no bounds, i.e. the NavMesh will cover all the inputs.</param>
- <param name="position">Center of the NavMeshData. This specifies the origin for the NavMesh tiles (See Also: NavMeshBuildSettings.tileSize).</param>
- <param name="rotation">Orientation of the NavMeshData, you can use this to generate NavMesh with an arbitrary up-vector – e.g. for walkable vertical surfaces.</param>
- <returns>
- <para>Returns a newly built NavMeshData, or null if the NavMeshData was empty or an error occurred.
-The newly built NavMeshData, or null if the NavMeshData was empty or an error occurred.</para>
- </returns>
- </member>
- <member name="M:UnityEditor.AI.NavMeshBuilder.Cancel(UnityEngine.AI.NavMeshData)">
- <summary>
- <para>Cancels an asynchronous update of the specified NavMesh data. See Also: UpdateNavMeshDataAsync.</para>
- </summary>
- <param name="data">The data associated with asynchronous updating.</param>
- </member>
- <member name="M:UnityEngine.AI.NavMeshBuilder.CollectSources(UnityEngine.Bounds,System.Int32,UnityEngine.AI.NavMeshCollectGeometry,System.Int32,System.Collections.Generic.List`1&lt;UnityEngine.AI.NavMeshBuildMarkup&gt;,System.Collections.Generic.List`1&lt;UnityEngine.AI.NavMeshBuildSource&gt;)">
- <summary>
- <para>Collects renderers or physics colliders, and terrains within a volume.</para>
- </summary>
- <param name="includedWorldBounds">The queried objects must overlap these bounds to be included in the results.</param>
- <param name="includedLayerMask">Specifies which layers are included in the query.</param>
- <param name="geometry">Which type of geometry to collect - e.g. physics colliders.</param>
- <param name="defaultArea">Area type to assign to results, unless modified by NavMeshMarkup.</param>
- <param name="markups">List of markups which allows finer control over how objects are collected.</param>
- <param name="results">List where results are stored, the list is cleared at the beginning of the call.</param>
- </member>
- <member name="M:UnityEngine.AI.NavMeshBuilder.CollectSources(UnityEngine.Transform,System.Int32,UnityEngine.AI.NavMeshCollectGeometry,System.Int32,System.Collections.Generic.List`1&lt;UnityEngine.AI.NavMeshBuildMarkup&gt;,System.Collections.Generic.List`1&lt;UnityEngine.AI.NavMeshBuildSource&gt;)">
- <summary>
- <para>Collects renderers or physics colliders, and terrains within a transform hierarchy.</para>
- </summary>
- <param name="root">If not null, consider only root and its children in the query; if null, includes everything loaded.</param>
- <param name="includedLayerMask">Specifies which layers are included in the query.</param>
- <param name="geometry">Which type of geometry to collect - e.g. physics colliders.</param>
- <param name="defaultArea">Area type to assign to results, unless modified by NavMeshMarkup.</param>
- <param name="markups">List of markups which allows finer control over how objects are collected.</param>
- <param name="results">List where results are stored, the list is cleared at the beginning of the call.</param>
- </member>
- <member name="M:UnityEngine.AI.NavMeshBuilder.UpdateNavMeshData(UnityEngine.AI.NavMeshData,UnityEngine.AI.NavMeshBuildSettings,System.Collections.Generic.List`1&lt;UnityEngine.AI.NavMeshBuildSource&gt;,UnityEngine.Bounds)">
- <summary>
- <para>Incrementally updates the NavMeshData based on the sources.</para>
- </summary>
- <param name="data">The NavMeshData to update.</param>
- <param name="buildSettings">The build settings which is used to update the NavMeshData. The build settings is also hashed along with the data, so changing settings will cause a full rebuild.</param>
- <param name="sources">List of input geometry used for baking, they describe the surfaces to walk on or obstacles to avoid.</param>
- <param name="localBounds">Bounding box relative to position and rotation which describes the volume where the NavMesh should be built. Empty bounds is treated as no-bounds, that is, the NavMesh will cover all the inputs.</param>
- <returns>
- <para>Returns true if the update was successful.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.AI.NavMeshBuilder.UpdateNavMeshDataAsync(UnityEngine.AI.NavMeshData,UnityEngine.AI.NavMeshBuildSettings,System.Collections.Generic.List`1&lt;UnityEngine.AI.NavMeshBuildSource&gt;,UnityEngine.Bounds)">
- <summary>
- <para>Asynchronously and incrementally updates the NavMeshData based on the sources.</para>
- </summary>
- <param name="data">The NavMeshData to update.</param>
- <param name="buildSettings">The build settings which is used to update the NavMeshData. The build settings is also hashed along with the data, so changing settings will likely to cause full rebuild.</param>
- <param name="sources">List of input geometry used for baking, they describe the surfaces to walk on or obstacles to avoid.</param>
- <param name="localBounds">Bounding box relative to position and rotation which describes to volume where the NavMesh should be built. Empty bounds is treated as no-bounds, that is, the NavMesh will cover all the inputs.</param>
- <returns>
- <para>Can be used to check the progress of the update.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.AI.NavMeshBuildMarkup">
- <summary>
- <para>The NavMesh build markup allows you to control how certain objects are treated during the NavMesh build process, specifically when collecting sources for building.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshBuildMarkup.area">
- <summary>
- <para>The area type to use when override area is enabled.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshBuildMarkup.ignoreFromBuild">
- <summary>
- <para>Use this to specify whether the GameObject and its children should be ignored.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshBuildMarkup.overrideArea">
- <summary>
- <para>Use this to specify whether the area type of the GameObject and its children should be overridden by the area type specified in this struct.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshBuildMarkup.root">
- <summary>
- <para>Use this to specify which GameObject (including the GameObject’s children) the markup should be applied to.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.AI.NavMeshBuildSettings">
- <summary>
- <para>The NavMeshBuildSettings struct allows you to specify a collection of settings which describe the dimensions and limitations of a particular agent type.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshBuildSettings.agentClimb">
- <summary>
- <para>The maximum vertical step size an agent can take.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshBuildSettings.agentHeight">
- <summary>
- <para>The height of the agent for baking in world units.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshBuildSettings.agentRadius">
- <summary>
- <para>The radius of the agent for baking in world units.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshBuildSettings.agentSlope">
- <summary>
- <para>The maximum slope angle which is walkable (angle in degrees).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshBuildSettings.agentTypeID">
- <summary>
- <para>The agent type ID the NavMesh will be baked for.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshBuildSettings.debug">
- <summary>
- <para>Options for collecting debug data during the build process.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshBuildSettings.minRegionArea">
- <summary>
- <para>The approximate minimum area of individual NavMesh regions.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshBuildSettings.overrideTileSize">
- <summary>
- <para>Enables overriding the default tile size. See Also: tileSize.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshBuildSettings.overrideVoxelSize">
- <summary>
- <para>Enables overriding the default voxel size. See Also: voxelSize.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshBuildSettings.tileSize">
- <summary>
- <para>Sets the tile size in voxel units.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshBuildSettings.voxelSize">
- <summary>
- <para>Sets the voxel size in world length units.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.AI.NavMeshBuildSettings.ValidationReport(UnityEngine.Bounds)">
- <summary>
- <para>Validates the properties of NavMeshBuildSettings.</para>
- </summary>
- <param name="buildBounds">Describes the volume to build NavMesh for.</param>
- <returns>
- <para>The list of violated constraints.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.AI.NavMeshBuildSource">
- <summary>
- <para>The input to the NavMesh builder is a list of NavMesh build sources.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshBuildSource.area">
- <summary>
- <para>Describes the area type of the NavMesh surface for this object.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshBuildSource.component">
- <summary>
- <para>Points to the owning component - if available, otherwise null.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshBuildSource.shape">
- <summary>
- <para>The type of the shape this source describes. See Also: NavMeshBuildSourceShape.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshBuildSource.size">
- <summary>
- <para>Describes the dimensions of the shape.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshBuildSource.sourceObject">
- <summary>
- <para>Describes the object referenced for Mesh and Terrain types of input sources.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshBuildSource.transform">
- <summary>
- <para>Describes the local to world transformation matrix of the build source. That is, position and orientation and scale of the shape.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.AI.NavMeshBuildSourceShape">
- <summary>
- <para>Used with NavMeshBuildSource to define the shape for building NavMesh.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AI.NavMeshBuildSourceShape.Box">
- <summary>
- <para>Describes a box primitive for use with NavMeshBuildSource.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AI.NavMeshBuildSourceShape.Capsule">
- <summary>
- <para>Describes a capsule primitive for use with NavMeshBuildSource.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AI.NavMeshBuildSourceShape.Mesh">
- <summary>
- <para>Describes a Mesh source for use with NavMeshBuildSource.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AI.NavMeshBuildSourceShape.ModifierBox">
- <summary>
- <para>Describes a ModifierBox source for use with NavMeshBuildSource.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AI.NavMeshBuildSourceShape.Sphere">
- <summary>
- <para>Describes a sphere primitive for use with NavMeshBuildSource.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AI.NavMeshBuildSourceShape.Terrain">
- <summary>
- <para>Describes a TerrainData source for use with NavMeshBuildSource.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.AI.NavMeshCollectGeometry">
- <summary>
- <para>Used for specifying the type of geometry to collect. Used with NavMeshBuilder.CollectSources.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AI.NavMeshCollectGeometry.PhysicsColliders">
- <summary>
- <para>Collect geometry from the 3D physics collision representation.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AI.NavMeshCollectGeometry.RenderMeshes">
- <summary>
- <para>Collect meshes form the rendered geometry.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.AI.NavMeshData">
- <summary>
- <para>Contains and represents NavMesh data.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshData.position">
- <summary>
- <para>Gets or sets the world space position of the NavMesh data.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshData.rotation">
- <summary>
- <para>Gets or sets the orientation of the NavMesh data.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshData.sourceBounds">
- <summary>
- <para>Returns the bounding volume of the input geometry used to build this NavMesh (Read Only).</para>
- </summary>
- </member>
- <member name="M:UnityEngine.AI.NavMeshData.#ctor">
- <summary>
- <para>Constructs a new object for representing a NavMesh for the default agent type.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.AI.NavMeshData.#ctor(System.Int32)">
- <summary>
- <para>Constructs a new object representing a NavMesh for the specified agent type.</para>
- </summary>
- <param name="agentTypeID">The agent type ID to create a NavMesh for.</param>
- </member>
- <member name="T:UnityEngine.AI.NavMeshDataInstance">
- <summary>
- <para>The instance is returned when adding NavMesh data.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshDataInstance.owner">
- <summary>
- <para>Get or set the owning Object.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshDataInstance.valid">
- <summary>
- <para>True if the NavMesh data is added to the navigation system - otherwise false (Read Only).</para>
- </summary>
- </member>
- <member name="M:UnityEngine.AI.NavMeshDataInstance.Remove">
- <summary>
- <para>Removes this instance from the NavMesh system.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.AI.NavMeshHit">
- <summary>
- <para>Result information for NavMesh queries.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshHit.distance">
- <summary>
- <para>Distance to the point of hit.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshHit.hit">
- <summary>
- <para>Flag set when hit.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshHit.mask">
- <summary>
- <para>Mask specifying NavMesh area at point of hit.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshHit.normal">
- <summary>
- <para>Normal at the point of hit.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshHit.position">
- <summary>
- <para>Position of hit.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.AI.NavMeshLinkData">
- <summary>
- <para>Used for runtime manipulation of links connecting polygons of the NavMesh.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshLinkData.agentTypeID">
- <summary>
- <para>Specifies which agent type this link is available for.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshLinkData.area">
- <summary>
- <para>Area type of the link.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshLinkData.bidirectional">
- <summary>
- <para>If true, the link can be traversed in both directions, otherwise only from start to end position.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshLinkData.costModifier">
- <summary>
- <para>If positive, overrides the pathfinder cost to traverse the link.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshLinkData.endPosition">
- <summary>
- <para>End position of the link.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshLinkData.startPosition">
- <summary>
- <para>Start position of the link.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshLinkData.width">
- <summary>
- <para>If positive, the link will be rectangle aligned along the line from start to end.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.AI.NavMeshLinkInstance">
- <summary>
- <para>An instance representing a link available for pathfinding.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshLinkInstance.owner">
- <summary>
- <para>Get or set the owning Object.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshLinkInstance.valid">
- <summary>
- <para>True if the NavMesh link is added to the navigation system - otherwise false (Read Only).</para>
- </summary>
- </member>
- <member name="M:UnityEngine.AI.NavMeshLinkInstance.Remove">
- <summary>
- <para>Removes this instance from the game.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.AI.NavMeshObstacle">
- <summary>
- <para>An obstacle for NavMeshAgents to avoid.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshObstacle.carveOnlyStationary">
- <summary>
- <para>Should this obstacle be carved when it is constantly moving?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshObstacle.carving">
- <summary>
- <para>Should this obstacle make a cut-out in the navmesh.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshObstacle.carvingMoveThreshold">
- <summary>
- <para>Threshold distance for updating a moving carved hole (when carving is enabled).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshObstacle.carvingTimeToStationary">
- <summary>
- <para>Time to wait until obstacle is treated as stationary (when carving and carveOnlyStationary are enabled).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshObstacle.center">
- <summary>
- <para>The center of the obstacle, measured in the object's local space.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshObstacle.height">
- <summary>
- <para>Height of the obstacle's cylinder shape.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshObstacle.radius">
- <summary>
- <para>Radius of the obstacle's capsule shape.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshObstacle.shape">
- <summary>
- <para>The shape of the obstacle.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshObstacle.size">
- <summary>
- <para>The size of the obstacle, measured in the object's local space.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshObstacle.velocity">
- <summary>
- <para>Velocity at which the obstacle moves around the NavMesh.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.AI.NavMeshObstacleShape">
- <summary>
- <para>Shape of the obstacle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AI.NavMeshObstacleShape.Box">
- <summary>
- <para>Box shaped obstacle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AI.NavMeshObstacleShape.Capsule">
- <summary>
- <para>Capsule shaped obstacle.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.AI.NavMeshPath">
- <summary>
- <para>A path as calculated by the navigation system.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshPath.corners">
- <summary>
- <para>Corner points of the path. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshPath.status">
- <summary>
- <para>Status of the path. (Read Only)</para>
- </summary>
- </member>
- <member name="M:UnityEngine.AI.NavMeshPath.ClearCorners">
- <summary>
- <para>Erase all corner points from path.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.AI.NavMeshPath.#ctor">
- <summary>
- <para>NavMeshPath constructor.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.AI.NavMeshPath.GetCornersNonAlloc(UnityEngine.Vector3[])">
- <summary>
- <para>Calculate the corners for the path.</para>
- </summary>
- <param name="results">Array to store path corners.</param>
- <returns>
- <para>The number of corners along the path - including start and end points.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.AI.NavMeshPathStatus">
- <summary>
- <para>Status of path.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AI.NavMeshPathStatus.PathComplete">
- <summary>
- <para>The path terminates at the destination.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AI.NavMeshPathStatus.PathInvalid">
- <summary>
- <para>The path is invalid.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AI.NavMeshPathStatus.PathPartial">
- <summary>
- <para>The path cannot reach the destination.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.AI.NavMeshQueryFilter">
- <summary>
- <para>Specifies which agent type and areas to consider when searching the NavMesh.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshQueryFilter.agentTypeID">
- <summary>
- <para>The agent type ID, specifying which navigation meshes to consider for the query functions.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshQueryFilter.areaMask">
- <summary>
- <para>A bitmask representing the traversable area types.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.AI.NavMeshQueryFilter.GetAreaCost(System.Int32)">
- <summary>
- <para>Returns the area cost multiplier for the given area type for this filter.</para>
- </summary>
- <param name="areaIndex">Index to retreive the cost for.</param>
- <returns>
- <para>The cost multiplier for the supplied area index.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.AI.NavMeshQueryFilter.SetAreaCost(System.Int32,System.Single)">
- <summary>
- <para>Sets the pathfinding cost multiplier for this filter for a given area type.</para>
- </summary>
- <param name="areaIndex">The area index to set the cost for.</param>
- <param name="cost">The cost for the supplied area index.</param>
- </member>
- <member name="T:UnityEngine.AI.NavMeshTriangulation">
- <summary>
- <para>Contains data describing a triangulation of a navmesh.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AI.NavMeshTriangulation.areas">
- <summary>
- <para>NavMesh area indices for the navmesh triangulation.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AI.NavMeshTriangulation.indices">
- <summary>
- <para>Triangle indices for the navmesh triangulation.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.NavMeshTriangulation.layers">
- <summary>
- <para>NavMeshLayer values for the navmesh triangulation.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AI.NavMeshTriangulation.vertices">
- <summary>
- <para>Vertices for the navmesh triangulation.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.AI.ObstacleAvoidanceType">
- <summary>
- <para>Level of obstacle avoidance.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AI.ObstacleAvoidanceType.GoodQualityObstacleAvoidance">
- <summary>
- <para>Good avoidance. High performance impact.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AI.ObstacleAvoidanceType.HighQualityObstacleAvoidance">
- <summary>
- <para>Enable highest precision. Highest performance impact.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AI.ObstacleAvoidanceType.LowQualityObstacleAvoidance">
- <summary>
- <para>Enable simple avoidance. Low performance impact.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AI.ObstacleAvoidanceType.MedQualityObstacleAvoidance">
- <summary>
- <para>Medium avoidance. Medium performance impact.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AI.ObstacleAvoidanceType.NoObstacleAvoidance">
- <summary>
- <para>Disable avoidance.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.AI.OffMeshLink">
- <summary>
- <para>Link allowing movement outside the planar navigation mesh.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.OffMeshLink.activated">
- <summary>
- <para>Is link active.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.OffMeshLink.area">
- <summary>
- <para>NavMesh area index for this OffMeshLink component.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.OffMeshLink.autoUpdatePositions">
- <summary>
- <para>Automatically update endpoints.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.OffMeshLink.biDirectional">
- <summary>
- <para>Can link be traversed in both directions.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.OffMeshLink.costOverride">
- <summary>
- <para>Modify pathfinding cost for the link.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.OffMeshLink.endTransform">
- <summary>
- <para>The transform representing link end position.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.OffMeshLink.navMeshLayer">
- <summary>
- <para>NavMeshLayer for this OffMeshLink component.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.OffMeshLink.occupied">
- <summary>
- <para>Is link occupied. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.OffMeshLink.startTransform">
- <summary>
- <para>The transform representing link start position.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.AI.OffMeshLink.UpdatePositions">
- <summary>
- <para>Explicitly update the link endpoints.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.AI.OffMeshLinkData">
- <summary>
- <para>State of OffMeshLink.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.OffMeshLinkData.activated">
- <summary>
- <para>Is link active (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.OffMeshLinkData.endPos">
- <summary>
- <para>Link end world position (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.OffMeshLinkData.linkType">
- <summary>
- <para>Link type specifier (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.OffMeshLinkData.offMeshLink">
- <summary>
- <para>The OffMeshLink if the link type is a manually placed Offmeshlink (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.OffMeshLinkData.startPos">
- <summary>
- <para>Link start world position (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AI.OffMeshLinkData.valid">
- <summary>
- <para>Is link valid (Read Only).</para>
- </summary>
- </member>
- <member name="T:UnityEngine.AI.OffMeshLinkType">
- <summary>
- <para>Link type specifier.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AI.OffMeshLinkType.LinkTypeDropDown">
- <summary>
- <para>Vertical drop.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AI.OffMeshLinkType.LinkTypeJumpAcross">
- <summary>
- <para>Horizontal jump.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AI.OffMeshLinkType.LinkTypeManual">
- <summary>
- <para>Manually specified type of link.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.AI.NavMeshLocation">
- <summary>
- <para>A world position that is guaranteed to be on the surface of the NavMesh.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.AI.NavMeshLocation.polygon">
- <summary>
- <para>Unique identifier for the node in the NavMesh to which the world position has been mapped.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.AI.NavMeshLocation.position">
- <summary>
- <para>A world position that sits precisely on the surface of the NavMesh or along its links.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.AI.NavMeshPolyTypes">
- <summary>
- <para>The types of nodes in the navigation data.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.AI.NavMeshPolyTypes.Ground">
- <summary>
- <para>Type of node in the NavMesh representing one surface polygon.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.AI.NavMeshPolyTypes.OffMeshConnection">
- <summary>
- <para>Type of node in the NavMesh representing a point-to-point connection between two positions on the NavMesh surface.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.AI.NavMeshQuery">
- <summary>
- <para>Object used for doing navigation operations in a NavMeshWorld.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.AI.NavMeshQuery.BeginFindPath(UnityEngine.Experimental.AI.NavMeshLocation,UnityEngine.Experimental.AI.NavMeshLocation,System.Int32,Unity.Collections.NativeArray`1&lt;System.Single&gt;)">
- <summary>
- <para>Initiates a pathfinding operation between two locations on the NavMesh.</para>
- </summary>
- <param name="costs">Array of custom cost values for all of the 32 possible area types. Each value must be at least 1.0f. This parameter is optional and defaults to the area costs configured in the project settings. See Also: NavMesh.GetAreaCost.</param>
- <param name="areaMask">Bitmask with values of 1 set at the indices for areas that can be traversed, and values of 0 for areas that are not traversable. This parameter is optional and defaults to NavMesh.AllAreas, if omitted. See Also:.</param>
- <param name="start">The start location on the NavMesh for the path.</param>
- <param name="end">The location on the NavMesh where the path ends.</param>
- <returns>
- <para>InProgress if the operation was successful and the query is ready to search for a path.
-
-Failure if the query's NavMeshWorld or any of the received parameters are no longer valid.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.AI.NavMeshQuery.CreateLocation(UnityEngine.Vector3,UnityEngine.Experimental.AI.PolygonId)">
- <summary>
- <para>Returns a valid NavMeshLocation for a position and a polygon provided by the user.</para>
- </summary>
- <param name="position">World position of the NavMeshLocation to be created.</param>
- <param name="polygon">Valid identifier for the NavMesh node.</param>
- <returns>
- <para>Object containing the desired position and NavMesh node.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.AI.NavMeshQuery.#ctor(UnityEngine.Experimental.AI.NavMeshWorld,Unity.Collections.Allocator,System.Int32)">
- <summary>
- <para>Creates the NavMeshQuery object and allocates memory to store NavMesh node information, if required.</para>
- </summary>
- <param name="world">NavMeshWorld object used as an entry point to the collection of NavMesh objects. This object that can be used by query operations.</param>
- <param name="allocator">Label indicating the desired life time of the object. (Known issue: Currently allocator has no effect).</param>
- <param name="pathNodePoolSize">The number of nodes that can be temporarily stored in the query during search operations. This value defaults to 0 if no other value is specified.</param>
- </member>
- <member name="M:UnityEngine.Experimental.AI.NavMeshQuery.Dispose">
- <summary>
- <para>Destroys the NavMeshQuery and deallocates all memory used by it.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.AI.NavMeshQuery.EndFindPath(System.Int32&amp;)">
- <summary>
- <para>Obtains the number of nodes in the path that has been computed during a successful NavMeshQuery.UpdateFindPath operation.</para>
- </summary>
- <param name="pathSize">A reference to an int which will be set to the number of NavMesh nodes in the found path.</param>
- <returns>
- <para>Success when the number of nodes in the path was retrieved correctly.
-
-PartialPath when a path was found but it falls short of the desired end location.
-
-Failure when the path size can not be evaluated because the preceding call to UpdateFindPath was not successful.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.AI.NavMeshQuery.GetAgentTypeIdForPolygon(UnityEngine.Experimental.AI.PolygonId)">
- <summary>
- <para>Returns the identifier of the agent type the NavMesh was baked for or for which the link has been configured.</para>
- </summary>
- <param name="polygon">Identifier of a node from a NavMesh surface or link.</param>
- <returns>
- <para>Agent type identifier.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.AI.NavMeshQuery.GetPathResult(Unity.Collections.NativeSlice`1&lt;UnityEngine.Experimental.AI.PolygonId&gt;)">
- <summary>
- <para>Copies into the provided array the list of NavMesh nodes that form the path found by the NavMeshQuery operation.</para>
- </summary>
- <param name="path">Data array to be filled with the sequence of NavMesh nodes that comprises the found path.</param>
- <returns>
- <para>Number of path nodes successfully copied into the provided array.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.AI.NavMeshQuery.GetPolygonType(UnityEngine.Experimental.AI.PolygonId)">
- <summary>
- <para>Returns whether the NavMesh node is a polygon or a link.</para>
- </summary>
- <param name="polygon">Identifier of a node from a NavMesh surface or link.</param>
- <returns>
- <para>Ground when the node is a polygon on a NavMesh surface.
-
-OffMeshConnection when the node is a.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.AI.NavMeshQuery.GetPortalPoints(UnityEngine.Experimental.AI.PolygonId,UnityEngine.Experimental.AI.PolygonId,UnityEngine.Vector3&amp;,UnityEngine.Vector3&amp;)">
- <summary>
- <para>Obtains the end points of the line segment common to two adjacent NavMesh nodes.</para>
- </summary>
- <param name="polygon">First NavMesh node.</param>
- <param name="neighbourPolygon">Second NavMesh node.</param>
- <param name="left">One of the world points for the resulting separation edge which must be passed through when traversing between the two specified nodes. This point is the left side of the edge when traversing from the first node to the second.</param>
- <param name="right">One of the world points for the resulting separation edge which must be passed through when traversing between the two specified nodes. This point is the right side of the edge when traversing from the first node to the second.</param>
- <returns>
- <para>True if a connection exists between the two NavMesh nodes.
-False if no connection exists between the two NavMesh nodes.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.AI.NavMeshQuery.IsValid(UnityEngine.Experimental.AI.PolygonId)">
- <summary>
- <para>Returns true if the node referenced by the specified PolygonId is active in the NavMesh.</para>
- </summary>
- <param name="polygon">Identifier of the NavMesh node to be checked.</param>
- </member>
- <member name="M:UnityEngine.Experimental.AI.NavMeshQuery.IsValid(UnityEngine.Experimental.AI.NavMeshLocation)">
- <summary>
- <para>Returns true if the node referenced by the PolygonId contained in the NavMeshLocation is active in the NavMesh.</para>
- </summary>
- <param name="location">Location on the NavMesh to be checked. Same as checking location.polygon directly.</param>
- </member>
- <member name="M:UnityEngine.Experimental.AI.NavMeshQuery.MapLocation(UnityEngine.Vector3,UnityEngine.Vector3,System.Int32,System.Int32)">
- <summary>
- <para>Finds the closest point and PolygonId on the NavMesh for a given world position.</para>
- </summary>
- <param name="position">World position for which the closest point on the NavMesh needs to be found.</param>
- <param name="extents">Maximum distance, from the specified position, expanding along all three axes, within which NavMesh surfaces are searched.</param>
- <param name="agentTypeID">Identifier for the agent type whose NavMesh surfaces should be selected for this operation. The Humanoid agent type exists for all NavMeshes and has an ID of 0. Other agent types can be defined manually through the Editor. A separate NavMesh surface needs to be baked for each agent type.</param>
- <param name="areaMask">Bitmask used to represent areas of the NavMesh that should (value of 1) or shouldn't (values of 0) be sampled. This parameter is optional and defaults to NavMesh.AllAreas if unspecified. See Also:.</param>
- <returns>
- <para>An object with position and valid PolygonId - when a point on the NavMesh has been found.
-
-An invalid object - when no NavMesh surface with the desired features has been found within the search area. See Also: NavMeshQuery.IsValid.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.AI.NavMeshQuery.MoveLocation(UnityEngine.Experimental.AI.NavMeshLocation,UnityEngine.Vector3,System.Int32)">
- <summary>
- <para>Translates a NavMesh location to another position without losing contact with the surface.</para>
- </summary>
- <param name="location">Position to be moved across the NavMesh surface.</param>
- <param name="target">World position you require the agent to move to.</param>
- <param name="areaMask">Bitmask with values of 1 set at the indices corresponding to areas that can be traversed, and with values of 0 for areas that should not be traversed. This parameter can be omitted, in which case it defaults to NavMesh.AllAreas. See Also:.</param>
- <returns>
- <para>A new location on the NavMesh placed as closely as possible to the specified target position.
-
-The start location is returned when that start is inside an area which is not allowed by the areaMask.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.AI.NavMeshQuery.MoveLocations(Unity.Collections.NativeSlice`1&lt;UnityEngine.Experimental.AI.NavMeshLocation&gt;,Unity.Collections.NativeSlice`1&lt;UnityEngine.Vector3&gt;,Unity.Collections.NativeSlice`1&lt;System.Int32&gt;)">
- <summary>
- <para>Translates a series of NavMesh locations to other positions without losing contact with the surface.</para>
- </summary>
- <param name="locations">Array of positions to be moved across the NavMesh surface. At the end of the method call this array contains the resulting locations.</param>
- <param name="targets">World positions to be used as movement targets by the agent.</param>
- <param name="areaMasks">Filters for the areas which can be traversed during the movement to each of the locations.</param>
- </member>
- <member name="M:UnityEngine.Experimental.AI.NavMeshQuery.MoveLocationsInSameAreas(Unity.Collections.NativeSlice`1&lt;UnityEngine.Experimental.AI.NavMeshLocation&gt;,Unity.Collections.NativeSlice`1&lt;UnityEngine.Vector3&gt;,System.Int32)">
- <summary>
- <para>Translates a series of NavMesh locations to other positions without losing contact with the surface, given one common area filter for all of them.</para>
- </summary>
- <param name="locations">Array of positions to be moved across the NavMesh surface. At the end of the method call this array contains the resulting locations.</param>
- <param name="targets">World positions you want the agent to reach when moving to each of the locations.</param>
- <param name="areaMask">Filters for the areas which can be traversed during the movement to each of the locations.</param>
- </member>
- <member name="M:UnityEngine.Experimental.AI.NavMeshQuery.PolygonLocalToWorldMatrix(UnityEngine.Experimental.AI.PolygonId)">
- <summary>
- <para>Returns the transformation matrix of the NavMesh surface that contains the specified NavMesh node (Read Only).</para>
- </summary>
- <param name="polygon">NavMesh node for which its owner's transform must be determined.</param>
- <returns>
- <para>Transformation matrix for the surface owning the specified polygon.
-
-Matrix4x4.identity when the NavMesh node is a.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.AI.NavMeshQuery.PolygonWorldToLocalMatrix(UnityEngine.Experimental.AI.PolygonId)">
- <summary>
- <para>Returns the inverse transformation matrix of the NavMesh surface that contains the specified NavMesh node (Read Only).</para>
- </summary>
- <param name="polygon">NavMesh node for which its owner's inverse transform must be determined.</param>
- <returns>
- <para>Inverse transformation matrix of the surface owning the specified polygon.
-
-Matrix4x4.identity when the NavMesh node is a.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.AI.NavMeshQuery.UpdateFindPath(System.Int32,System.Int32&amp;)">
- <summary>
- <para>Continues a path search that is in progress.</para>
- </summary>
- <param name="iterations">Maximum number of nodes to be traversed by the search algorithm during this call.</param>
- <param name="iterationsPerformed">Outputs the actual number of nodes that have been traversed during this call.</param>
- <returns>
- <para>InProgress if the search needs to continue further by calling UpdateFindPath again.
-
-Success if the search is completed and a path has been found or not.
-
-Failure if the search for the desired position could not be completed because the NavMesh has changed significantly since the search was initiated.
-
-Additionally the returned value can contain the OutOfNodes flag when the pathNodePoolSize parameter for the NavMeshQuery initialization was not large enough to accommodate the search space.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.Experimental.AI.NavMeshWorld">
- <summary>
- <para>Assembles together a collection of NavMesh surfaces and links that are used as a whole for performing navigation operations.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.AI.NavMeshWorld.AddDependency(Unity.Jobs.JobHandle)">
- <summary>
- <para>Tells the NavMesh world to halt any changes until the specified job is completed.</para>
- </summary>
- <param name="job">The job that needs to be completed before the NavMesh world can be modified in any way.</param>
- </member>
- <member name="M:UnityEngine.Experimental.AI.NavMeshWorld.GetDefaultWorld">
- <summary>
- <para>Returns a reference to the single NavMeshWorld that can currently exist and be used in Unity.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.AI.NavMeshWorld.IsValid">
- <summary>
- <para>Returns true if the NavMeshWorld has been properly initialized.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.AI.PathQueryStatus">
- <summary>
- <para>Bit flags representing the resulting state of NavMeshQuery operations.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.AI.PathQueryStatus.BufferTooSmall">
- <summary>
- <para>The node buffer of the query was too small to store all results.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.AI.PathQueryStatus.Failure">
- <summary>
- <para>The operation has failed.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.AI.PathQueryStatus.InProgress">
- <summary>
- <para>The operation is in progress.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.AI.PathQueryStatus.InvalidParam">
- <summary>
- <para>A parameter did not contain valid information, useful for carring out the NavMesh query.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.AI.PathQueryStatus.OutOfMemory">
- <summary>
- <para>Operation ran out of memory.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.AI.PathQueryStatus.OutOfNodes">
- <summary>
- <para>Query ran out of node stack space during a search.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.AI.PathQueryStatus.PartialResult">
- <summary>
- <para>Query did not reach the end location, returning best guess.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.AI.PathQueryStatus.StatusDetailMask">
- <summary>
- <para>Bitmask that has 0 set for the Success, Failure and InProgress bits and 1 set for all the other flags.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.AI.PathQueryStatus.Success">
- <summary>
- <para>The operation was successful.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.AI.PathQueryStatus.WrongMagic">
- <summary>
- <para>Data in the NavMesh cannot be recognized and used.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.AI.PathQueryStatus.WrongVersion">
- <summary>
- <para>Data in the NavMesh world has a wrong version.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.AI.PolygonId">
- <summary>
- <para>Represents a compact identifier for the data of a NavMesh node.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.AI.PolygonId.Equals(UnityEngine.Experimental.AI.PolygonId)">
- <summary>
- <para>Returns true if two PolygonId objects refer to the same NavMesh node.</para>
- </summary>
- <param name="rhs"></param>
- <param name="obj"></param>
- </member>
- <member name="M:UnityEngine.Experimental.AI.PolygonId.Equals(System.Object)">
- <summary>
- <para>Returns true if two PolygonId objects refer to the same NavMesh node.</para>
- </summary>
- <param name="rhs"></param>
- <param name="obj"></param>
- </member>
- <member name="M:UnityEngine.Experimental.AI.PolygonId.GetHashCode">
- <summary>
- <para>Returns the hash code for use in collections.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.AI.PolygonId.IsNull">
- <summary>
- <para>Returns true if the PolygonId has been created empty and has never pointed to any node in the NavMesh.</para>
- </summary>
- </member>
- <member name="?:UnityEngine.Experimental.AI.PolygonId.op_Equal(UnityEngine.Experimental.AI.PolygonId,UnityEngine.Experimental.AI.PolygonId)">
- <summary>
- <para>Returns true if two PolygonId objects refer to the same NavMesh node or if they are both null.</para>
- </summary>
- <param name="x"></param>
- <param name="y"></param>
- </member>
- <member name="?:UnityEngine.Experimental.AI.PolygonId.op_NotEqual(UnityEngine.Experimental.AI.PolygonId,UnityEngine.Experimental.AI.PolygonId)">
- <summary>
- <para>Returns true if two PolygonId objects refer to different NavMesh nodes or if only one of them is null.</para>
- </summary>
- <param name="x"></param>
- <param name="y"></param>
- </member>
- <member name="A:UnityEngine.AIModule">
- <summary>
- <para>The AI module implements the path finding features in Unity.</para>
- </summary>
- </member>
- </members>
-</doc>
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.ARModule.dll b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.ARModule.dll
deleted file mode 100644
index 878f166..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.ARModule.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.ARModule.xml b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.ARModule.xml
deleted file mode 100644
index 6676f4e..0000000
--- a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.ARModule.xml
+++ /dev/null
@@ -1,59 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
-<doc>
- <members>
- <assembly>
- <name>UnityEngine.ARModule</name>
- </assembly>
- <member name="T:UnityEngine.XR.ARBackgroundRenderer">
- <summary>
- <para>Class used to override a camera's default background rendering path to instead render a given Texture and/or Material. This will typically be used with images from the color camera for rendering the AR background on mobile devices.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.XR.ARBackgroundRenderer.backgroundMaterial">
- <summary>
- <para>The Material used for AR rendering.</para>
- </summary>
- </member>
- <member name="?:UnityEngine.XR.ARBackgroundRenderer.backgroundRendererChanged(System.Action)">
- <summary>
- <para>Called when any of the public properties of this class have been changed.</para>
- </summary>
- <param name="value"></param>
- </member>
- <member name="P:UnityEngine.XR.ARBackgroundRenderer.backgroundTexture">
- <summary>
- <para>An optional Texture used for AR rendering. If this property is not set then the texture set in XR.ARBackgroundRenderer._backgroundMaterial as "_MainTex" is used.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.XR.ARBackgroundRenderer.camera">
- <summary>
- <para>An optional Camera whose background rendering will be overridden by this class. If this property is not set then the main Camera in the scene is used.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.XR.ARBackgroundRenderer.mode">
- <summary>
- <para>When set to XR.ARRenderMode.StandardBackground (default) the camera is not overridden to display the background image. Setting this property to XR.ARRenderMode.MaterialAsBackground will render the texture specified by XR.ARBackgroundRenderer._backgroundMaterial and or XR.ARBackgroundRenderer._backgroundTexture as the background.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.XR.ARBackgroundRenderer.DisableARBackgroundRendering">
- <summary>
- <para>Disables AR background rendering. This method is called internally but can be overridden by users who wish to subclass XR.ARBackgroundRenderer to customize handling of AR background rendering.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.XR.ARRenderMode">
- <summary>
- <para>Enumeration describing the AR rendering mode used with XR.ARBackgroundRenderer.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.XR.ARRenderMode.MaterialAsBackground">
- <summary>
- <para>The material associated with XR.ARBackgroundRenderer is being rendered as the background.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.XR.ARRenderMode.StandardBackground">
- <summary>
- <para>The standard background is rendered. (Skybox, Solid Color, etc.)</para>
- </summary>
- </member>
- </members>
-</doc>
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.AccessibilityModule.dll b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.AccessibilityModule.dll
deleted file mode 100644
index 90cb085..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.AccessibilityModule.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.AccessibilityModule.xml b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.AccessibilityModule.xml
deleted file mode 100644
index 9579c2d..0000000
--- a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.AccessibilityModule.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
-<doc>
- <members>
- <assembly>
- <name>UnityEngine.AccessibilityModule</name>
- </assembly>
- <member name="T:UnityEngine.Accessibility.VisionUtility">
- <summary>
- <para>A class containing methods to assist with accessibility for users with different vision capabilities.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Accessibility.VisionUtility.GetColorBlindSafePalette(UnityEngine.Color[],System.Single,System.Single)">
- <summary>
- <para>Gets a palette of colors that should be distinguishable for normal vision, deuteranopia, protanopia, and tritanopia.</para>
- </summary>
- <param name="palette">An array of colors to populate with a palette.</param>
- <param name="minimumLuminance">Minimum allowable perceived luminance from 0 to 1. A value of 0.2 or greater is recommended for dark backgrounds.</param>
- <param name="maximumLuminance">Maximum allowable perceived luminance from 0 to 1. A value of 0.8 or less is recommended for light backgrounds.</param>
- <returns>
- <para>The number of unambiguous colors in the palette.</para>
- </returns>
- </member>
- </members>
-</doc>
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.Analytics.dll b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.Analytics.dll
deleted file mode 100644
index 651a8c1..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.Analytics.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.AnimationModule.dll b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.AnimationModule.dll
deleted file mode 100644
index b30b680..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.AnimationModule.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.AnimationModule.xml b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.AnimationModule.xml
deleted file mode 100644
index 6eba8a8..0000000
--- a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.AnimationModule.xml
+++ /dev/null
@@ -1,4964 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
-<doc>
- <members>
- <assembly>
- <name>UnityEngine.AnimationModule</name>
- </assembly>
- <member name="T:UnityEngine.Animation">
- <summary>
- <para>The animation component is used to play back animations.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animation.animateOnlyIfVisible">
- <summary>
- <para>When turned on, Unity might stop animating if it thinks that the results of the animation won't be visible to the user.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animation.animatePhysics">
- <summary>
- <para>When turned on, animations will be executed in the physics loop. This is only useful in conjunction with kinematic rigidbodies.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animation.clip">
- <summary>
- <para>The default animation.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animation.cullingType">
- <summary>
- <para>Controls culling of this Animation component.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animation.isPlaying">
- <summary>
- <para>Are we playing any animations?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animation.localBounds">
- <summary>
- <para>AABB of this Animation animation component in local space.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animation.playAutomatically">
- <summary>
- <para>Should the default animation clip (the Animation.clip property) automatically start playing on startup?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animation.wrapMode">
- <summary>
- <para>How should time beyond the playback range of the clip be treated?</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Animation.AddClip(UnityEngine.AnimationClip,System.String)">
- <summary>
- <para>Adds a clip to the animation with name newName.</para>
- </summary>
- <param name="clip"></param>
- <param name="newName"></param>
- </member>
- <member name="M:UnityEngine.Animation.AddClip(UnityEngine.AnimationClip,System.String,System.Int32,System.Int32)">
- <summary>
- <para>Adds clip to the only play between firstFrame and lastFrame. The new clip will also be added to the animation with name newName.</para>
- </summary>
- <param name="addLoopFrame">Should an extra frame be inserted at the end that matches the first frame? Turn this on if you are making a looping animation.</param>
- <param name="clip"></param>
- <param name="newName"></param>
- <param name="firstFrame"></param>
- <param name="lastFrame"></param>
- </member>
- <member name="M:UnityEngine.Animation.AddClip(UnityEngine.AnimationClip,System.String,System.Int32,System.Int32,System.Boolean)">
- <summary>
- <para>Adds clip to the only play between firstFrame and lastFrame. The new clip will also be added to the animation with name newName.</para>
- </summary>
- <param name="addLoopFrame">Should an extra frame be inserted at the end that matches the first frame? Turn this on if you are making a looping animation.</param>
- <param name="clip"></param>
- <param name="newName"></param>
- <param name="firstFrame"></param>
- <param name="lastFrame"></param>
- </member>
- <member name="M:UnityEngine.Animation.Blend(System.String)">
- <summary>
- <para>Blends the animation named animation towards targetWeight over the next time seconds.</para>
- </summary>
- <param name="animation"></param>
- <param name="targetWeight"></param>
- <param name="fadeLength"></param>
- </member>
- <member name="M:UnityEngine.Animation.Blend(System.String,System.Single)">
- <summary>
- <para>Blends the animation named animation towards targetWeight over the next time seconds.</para>
- </summary>
- <param name="animation"></param>
- <param name="targetWeight"></param>
- <param name="fadeLength"></param>
- </member>
- <member name="M:UnityEngine.Animation.Blend(System.String,System.Single,System.Single)">
- <summary>
- <para>Blends the animation named animation towards targetWeight over the next time seconds.</para>
- </summary>
- <param name="animation"></param>
- <param name="targetWeight"></param>
- <param name="fadeLength"></param>
- </member>
- <member name="M:UnityEngine.Animation.CrossFade(System.String)">
- <summary>
- <para>Fades the animation with name animation in over a period of time seconds and fades other animations out.</para>
- </summary>
- <param name="animation"></param>
- <param name="fadeLength"></param>
- <param name="mode"></param>
- </member>
- <member name="M:UnityEngine.Animation.CrossFade(System.String,System.Single)">
- <summary>
- <para>Fades the animation with name animation in over a period of time seconds and fades other animations out.</para>
- </summary>
- <param name="animation"></param>
- <param name="fadeLength"></param>
- <param name="mode"></param>
- </member>
- <member name="M:UnityEngine.Animation.CrossFade(System.String,System.Single,UnityEngine.PlayMode)">
- <summary>
- <para>Fades the animation with name animation in over a period of time seconds and fades other animations out.</para>
- </summary>
- <param name="animation"></param>
- <param name="fadeLength"></param>
- <param name="mode"></param>
- </member>
- <member name="M:UnityEngine.Animation.CrossFadeQueued(System.String)">
- <summary>
- <para>Cross fades an animation after previous animations has finished playing.</para>
- </summary>
- <param name="animation"></param>
- <param name="fadeLength"></param>
- <param name="queue"></param>
- <param name="mode"></param>
- </member>
- <member name="M:UnityEngine.Animation.CrossFadeQueued(System.String,System.Single)">
- <summary>
- <para>Cross fades an animation after previous animations has finished playing.</para>
- </summary>
- <param name="animation"></param>
- <param name="fadeLength"></param>
- <param name="queue"></param>
- <param name="mode"></param>
- </member>
- <member name="M:UnityEngine.Animation.CrossFadeQueued(System.String,System.Single,UnityEngine.QueueMode)">
- <summary>
- <para>Cross fades an animation after previous animations has finished playing.</para>
- </summary>
- <param name="animation"></param>
- <param name="fadeLength"></param>
- <param name="queue"></param>
- <param name="mode"></param>
- </member>
- <member name="M:UnityEngine.Animation.CrossFadeQueued(System.String,System.Single,UnityEngine.QueueMode,UnityEngine.PlayMode)">
- <summary>
- <para>Cross fades an animation after previous animations has finished playing.</para>
- </summary>
- <param name="animation"></param>
- <param name="fadeLength"></param>
- <param name="queue"></param>
- <param name="mode"></param>
- </member>
- <member name="M:UnityEngine.Animation.GetClipCount">
- <summary>
- <para>Get the number of clips currently assigned to this animation.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Animation.IsPlaying(System.String)">
- <summary>
- <para>Is the animation named name playing?</para>
- </summary>
- <param name="name"></param>
- </member>
- <member name="M:UnityEngine.Animation.Play()">
- <summary>
- <para>Plays an animation without any blending.</para>
- </summary>
- <param name="mode"></param>
- <param name="animation"></param>
- </member>
- <member name="M:UnityEngine.Animation.Play(System.String)">
- <summary>
- <para>Plays an animation without any blending.</para>
- </summary>
- <param name="mode"></param>
- <param name="animation"></param>
- </member>
- <member name="M:UnityEngine.Animation.Play(UnityEngine.PlayMode)">
- <summary>
- <para>Plays an animation without any blending.</para>
- </summary>
- <param name="mode"></param>
- <param name="animation"></param>
- </member>
- <member name="M:UnityEngine.Animation.Play(System.String,UnityEngine.PlayMode)">
- <summary>
- <para>Plays an animation without any blending.</para>
- </summary>
- <param name="mode"></param>
- <param name="animation"></param>
- </member>
- <member name="M:UnityEngine.Animation.PlayQueued(System.String)">
- <summary>
- <para>Plays an animation after previous animations has finished playing.</para>
- </summary>
- <param name="animation"></param>
- <param name="queue"></param>
- <param name="mode"></param>
- </member>
- <member name="M:UnityEngine.Animation.PlayQueued(System.String,UnityEngine.QueueMode)">
- <summary>
- <para>Plays an animation after previous animations has finished playing.</para>
- </summary>
- <param name="animation"></param>
- <param name="queue"></param>
- <param name="mode"></param>
- </member>
- <member name="M:UnityEngine.Animation.PlayQueued(System.String,UnityEngine.QueueMode,UnityEngine.PlayMode)">
- <summary>
- <para>Plays an animation after previous animations has finished playing.</para>
- </summary>
- <param name="animation"></param>
- <param name="queue"></param>
- <param name="mode"></param>
- </member>
- <member name="M:UnityEngine.Animation.RemoveClip(UnityEngine.AnimationClip)">
- <summary>
- <para>Remove clip from the animation list.</para>
- </summary>
- <param name="clip"></param>
- </member>
- <member name="M:UnityEngine.Animation.RemoveClip(System.String)">
- <summary>
- <para>Remove clip from the animation list.</para>
- </summary>
- <param name="clipName"></param>
- </member>
- <member name="M:UnityEngine.Animation.Rewind(System.String)">
- <summary>
- <para>Rewinds the animation named name.</para>
- </summary>
- <param name="name"></param>
- </member>
- <member name="M:UnityEngine.Animation.Rewind">
- <summary>
- <para>Rewinds all animations.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Animation.Sample">
- <summary>
- <para>Samples animations at the current state.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Animation.Stop">
- <summary>
- <para>Stops all playing animations that were started with this Animation.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Animation.Stop(System.String)">
- <summary>
- <para>Stops an animation named name.</para>
- </summary>
- <param name="name"></param>
- </member>
- <member name="P:UnityEngine.Animation.this">
- <summary>
- <para>Returns the animation state named name.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.AnimationBlendMode">
- <summary>
- <para>Used by Animation.Play function.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AnimationBlendMode.Additive">
- <summary>
- <para>Animations will be added.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AnimationBlendMode.Blend">
- <summary>
- <para>Animations will be blended.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.AnimationClip">
- <summary>
- <para>Stores keyframe based animations.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AnimationClip.empty">
- <summary>
- <para>Returns true if the animation clip has no curves and no events.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AnimationClip.events">
- <summary>
- <para>Animation Events for this animation clip.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AnimationClip.frameRate">
- <summary>
- <para>Frame rate at which keyframes are sampled. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AnimationClip.humanMotion">
- <summary>
- <para>Returns true if the animation contains curve that drives a humanoid rig.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AnimationClip.legacy">
- <summary>
- <para>Set to true if the AnimationClip will be used with the Legacy Animation component ( instead of the Animator ).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AnimationClip.length">
- <summary>
- <para>Animation length in seconds. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AnimationClip.localBounds">
- <summary>
- <para>AABB of this Animation Clip in local space of Animation component that it is attached too.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AnimationClip.wrapMode">
- <summary>
- <para>Sets the default wrap mode used in the animation state.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.AnimationClip.AddEvent(UnityEngine.AnimationEvent)">
- <summary>
- <para>Adds an animation event to the clip.</para>
- </summary>
- <param name="evt">AnimationEvent to add.</param>
- </member>
- <member name="M:UnityEngine.AnimationClip.ClearCurves">
- <summary>
- <para>Clears all curves from the clip.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.AnimationClip.#ctor">
- <summary>
- <para>Creates a new animation clip.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.AnimationClip.EnsureQuaternionContinuity">
- <summary>
- <para>Realigns quaternion keys to ensure shortest interpolation paths.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.AnimationClip.SampleAnimation(UnityEngine.GameObject,System.Single)">
- <summary>
- <para>Samples an animation at a given time for any animated properties.</para>
- </summary>
- <param name="go">The animated game object.</param>
- <param name="time">The time to sample an animation.</param>
- </member>
- <member name="M:UnityEngine.AnimationClip.SetCurve(System.String,System.Type,System.String,UnityEngine.AnimationCurve)">
- <summary>
- <para>Assigns the curve to animate a specific property.</para>
- </summary>
- <param name="relativePath">Path to the game object this curve applies to. The relativePath
- is formatted similar to a pathname, e.g. "rootspineleftArm". If relativePath
- is empty it refers to the game object the animation clip is attached to.</param>
- <param name="type">The class type of the component that is animated.</param>
- <param name="propertyName">The name or path to the property being animated.</param>
- <param name="curve">The animation curve.</param>
- </member>
- <member name="T:UnityEngine.AnimationClipPair">
- <summary>
- <para>This class defines a pair of clips used by AnimatorOverrideController.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AnimationClipPair.originalClip">
- <summary>
- <para>The original clip from the controller.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AnimationClipPair.overrideClip">
- <summary>
- <para>The override animation clip.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.AnimationCullingType">
- <summary>
- <para>This enum controlls culling of Animation component.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AnimationCullingType.AlwaysAnimate">
- <summary>
- <para>Animation culling is disabled - object is animated even when offscreen.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AnimationCullingType.BasedOnRenderers">
- <summary>
- <para>Animation is disabled when renderers are not visible.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.AnimationEvent">
- <summary>
- <para>AnimationEvent lets you call a script function similar to SendMessage as part of playing back an animation.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AnimationEvent.animationState">
- <summary>
- <para>The animation state that fired this event (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AnimationEvent.animatorClipInfo">
- <summary>
- <para>The animator clip info related to this event (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AnimationEvent.animatorStateInfo">
- <summary>
- <para>The animator state info related to this event (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AnimationEvent.floatParameter">
- <summary>
- <para>Float parameter that is stored in the event and will be sent to the function.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AnimationEvent.functionName">
- <summary>
- <para>The name of the function that will be called.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AnimationEvent.intParameter">
- <summary>
- <para>Int parameter that is stored in the event and will be sent to the function.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AnimationEvent.isFiredByAnimator">
- <summary>
- <para>Returns true if this Animation event has been fired by an Animator component.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AnimationEvent.isFiredByLegacy">
- <summary>
- <para>Returns true if this Animation event has been fired by an Animation component.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AnimationEvent.messageOptions">
- <summary>
- <para>Function call options.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AnimationEvent.objectReferenceParameter">
- <summary>
- <para>Object reference parameter that is stored in the event and will be sent to the function.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AnimationEvent.stringParameter">
- <summary>
- <para>String parameter that is stored in the event and will be sent to the function.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AnimationEvent.time">
- <summary>
- <para>The time at which the event will be fired off.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.AnimationEvent.#ctor">
- <summary>
- <para>Creates a new animation event.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Animations.AimConstraint">
- <summary>
- <para>Constrains the orientation of an object relative to the position of one or more source objects, such that the object is facing the average position of the sources.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animations.AimConstraint.aimVector">
- <summary>
- <para>The axis towards which the constrained object orients.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animations.AimConstraint.constraintActive">
- <summary>
- <para>Activates or deactivates the constraint.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animations.AimConstraint.locked">
- <summary>
- <para>Locks the offset and rotation at rest.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animations.AimConstraint.rotationAtRest">
- <summary>
- <para>The rotation used when the sources have a total weight of 0.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animations.AimConstraint.rotationAxis">
- <summary>
- <para>The axes affected by the AimConstraint.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animations.AimConstraint.rotationOffset">
- <summary>
- <para>Represents an offset from the constrained orientation.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animations.AimConstraint.sourceCount">
- <summary>
- <para>The number of sources set on the component (read-only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animations.AimConstraint.upVector">
- <summary>
- <para>The up vector.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animations.AimConstraint.weight">
- <summary>
- <para>The weight of the constraint component.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animations.AimConstraint.worldUpObject">
- <summary>
- <para>The world up object, used to calculate the world up vector when the world up Type is AimConstraint.WorldUpType.ObjectUp or AimConstraint.WorldUpType.ObjectRotationUp.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animations.AimConstraint.worldUpType">
- <summary>
- <para>The type of the world up vector.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animations.AimConstraint.worldUpVector">
- <summary>
- <para>The world up Vector used when the world up type is AimConstraint.WorldUpType.Vector or AimConstraint.WorldUpType.ObjectRotationUp.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Animations.AimConstraint.AddSource(UnityEngine.Animations.ConstraintSource)">
- <summary>
- <para>Adds a constraint source.</para>
- </summary>
- <param name="source">The source object and its weight.</param>
- <returns>
- <para>Returns the index of the added source.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Animations.AimConstraint.GetSource(System.Int32)">
- <summary>
- <para>Gets a constraint source by index.</para>
- </summary>
- <param name="index">The index of the source.</param>
- <returns>
- <para>The source object and its weight.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Animations.AimConstraint.GetSources(System.Collections.Generic.List`1&lt;UnityEngine.Animations.ConstraintSource&gt;)">
- <summary>
- <para>Gets the list of sources.</para>
- </summary>
- <param name="sources">The list of sources to be filled by the component.</param>
- </member>
- <member name="M:UnityEngine.Animations.AimConstraint.RemoveSource(System.Int32)">
- <summary>
- <para>Removes a source from the component.</para>
- </summary>
- <param name="index">The index of the source to remove.</param>
- </member>
- <member name="M:UnityEngine.Animations.AimConstraint.SetSource(System.Int32,UnityEngine.Animations.ConstraintSource)">
- <summary>
- <para>Sets a source at a specified index.</para>
- </summary>
- <param name="index">The index of the source to set.</param>
- <param name="source">The source object and its weight.</param>
- </member>
- <member name="M:UnityEngine.Animations.AimConstraint.SetSources(System.Collections.Generic.List`1&lt;UnityEngine.Animations.ConstraintSource&gt;)">
- <summary>
- <para>Sets the list of sources on the component.</para>
- </summary>
- <param name="sources">The list of sources to set.</param>
- </member>
- <member name="T:UnityEngine.Animations.AimConstraint.WorldUpType">
- <summary>
- <para>Specifies how the world up vector used by the aim constraint is defined.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Animations.AimConstraint.WorldUpType.None">
- <summary>
- <para>Neither defines nor uses a world up vector.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Animations.AimConstraint.WorldUpType.ObjectRotationUp">
- <summary>
- <para>Uses and defines the world up vector as relative to the local space of the object.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Animations.AimConstraint.WorldUpType.ObjectUp">
- <summary>
- <para>Uses and defines the world up vector as a vector from the constrained object, in the direction of the up object.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Animations.AimConstraint.WorldUpType.SceneUp">
- <summary>
- <para>Uses and defines the world up vector as the Unity scene up vector (the Y axis).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Animations.AimConstraint.WorldUpType.Vector">
- <summary>
- <para>Uses and defines the world up vector as a vector specified by the user.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Animations.AnimationClipPlayable">
- <summary>
- <para>A Playable that controls an AnimationClip.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Animations.AnimationClipPlayable.Create(UnityEngine.Playables.PlayableGraph,UnityEngine.AnimationClip)">
- <summary>
- <para>Creates an AnimationClipPlayable in the PlayableGraph.</para>
- </summary>
- <param name="graph">The PlayableGraph object that will own the AnimationClipPlayable.</param>
- <param name="clip">The AnimationClip that will be added in the PlayableGraph.</param>
- <returns>
- <para>A AnimationClipPlayable linked to the PlayableGraph.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Animations.AnimationClipPlayable.GetAnimationClip">
- <summary>
- <para>Returns the AnimationClip stored in the AnimationClipPlayable.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Animations.AnimationClipPlayable.GetApplyFootIK">
- <summary>
- <para>Returns the state of the ApplyFootIK flag.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Animations.AnimationClipPlayable.GetApplyPlayableIK">
- <summary>
- <para>Returns the state of the ApplyPlayableIK flag.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Animations.AnimationClipPlayable.SetApplyFootIK(System.Boolean)">
- <summary>
- <para>Sets the value of the ApplyFootIK flag.</para>
- </summary>
- <param name="value">The new value of the ApplyFootIK flag.</param>
- </member>
- <member name="M:UnityEngine.Animations.AnimationClipPlayable.SetApplyPlayableIK(System.Boolean)">
- <summary>
- <para>Requests OnAnimatorIK to be called on the animated GameObject.</para>
- </summary>
- <param name="value"></param>
- </member>
- <member name="T:UnityEngine.Animations.AnimationLayerMixerPlayable">
- <summary>
- <para>An implementation of IPlayable that controls an animation layer mixer.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Animations.AnimationLayerMixerPlayable.Create(UnityEngine.Playables.PlayableGraph,System.Int32)">
- <summary>
- <para>Creates an AnimationLayerMixerPlayable in the PlayableGraph.</para>
- </summary>
- <param name="graph">The PlayableGraph that will contain the new AnimationLayerMixerPlayable.</param>
- <param name="inputCount">The number of layers.</param>
- <returns>
- <para>A new AnimationLayerMixerPlayable linked to the PlayableGraph.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Animations.AnimationLayerMixerPlayable.IsLayerAdditive(System.UInt32)">
- <summary>
- <para>Returns true if the layer is additive, false otherwise.</para>
- </summary>
- <param name="layerIndex">The layer index.</param>
- <returns>
- <para>True if the layer is additive, false otherwise.</para>
- </returns>
- </member>
- <member name="P:UnityEngine.Animations.AnimationLayerMixerPlayable.Null">
- <summary>
- <para>Returns an invalid AnimationLayerMixerPlayable.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Animations.AnimationLayerMixerPlayable.SetLayerAdditive(System.UInt32,System.Boolean)">
- <summary>
- <para>Specifies whether a layer is additive or not. Additive layers blend with previous layers.</para>
- </summary>
- <param name="layerIndex">The layer index.</param>
- <param name="value">Whether the layer is additive or not. Set to true for an additive blend, or false for a regular blend.</param>
- </member>
- <member name="M:UnityEngine.Animations.AnimationLayerMixerPlayable.SetLayerMaskFromAvatarMask(System.UInt32,UnityEngine.AvatarMask)">
- <summary>
- <para>Sets the mask for the current layer.</para>
- </summary>
- <param name="layerIndex">The layer index.</param>
- <param name="mask">The AvatarMask used to create the new LayerMask.</param>
- </member>
- <member name="T:UnityEngine.Animations.AnimationMixerPlayable">
- <summary>
- <para>An implementation of IPlayable that controls an animation mixer.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Animations.AnimationMixerPlayable.Create(UnityEngine.Playables.PlayableGraph,System.Int32,System.Boolean)">
- <summary>
- <para>Creates an AnimationMixerPlayable in the PlayableGraph.</para>
- </summary>
- <param name="graph">The PlayableGraph that will contain the new AnimationMixerPlayable.</param>
- <param name="inputCount">The number of inputs that the mixer will update.</param>
- <param name="normalizeWeights">True to force a weight normalization of the inputs.</param>
- <returns>
- <para>A new AnimationMixerPlayable linked to the PlayableGraph.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.Animations.AnimationPlayableBinding">
- <summary>
- <para>A PlayableBinding that contains information representing an AnimationPlayableOutput.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Animations.AnimationPlayableBinding.Create(System.String,UnityEngine.Object)">
- <summary>
- <para>Creates a PlayableBinding that contains information representing an AnimationPlayableOutput.</para>
- </summary>
- <param name="name">The name of the AnimationPlayableOutput.</param>
- <param name="key">A reference to a UnityEngine.Object that acts as a key for this binding.</param>
- <returns>
- <para>Returns a PlayableBinding that contains information that is used to create an AnimationPlayableOutput.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.Animations.AnimationPlayableOutput">
- <summary>
- <para>A IPlayableOutput implementation that connects the PlayableGraph to an Animator in the scene.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Animations.AnimationPlayableOutput.Create(UnityEngine.Playables.PlayableGraph,System.String,UnityEngine.Animator)">
- <summary>
- <para>Creates an AnimationPlayableOutput in the PlayableGraph.</para>
- </summary>
- <param name="graph">The PlayableGraph that will contain the AnimationPlayableOutput.</param>
- <param name="name">The name of the output.</param>
- <param name="target">The Animator that will process the PlayableGraph.</param>
- <returns>
- <para>A new AnimationPlayableOutput attached to the PlayableGraph.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Animations.AnimationPlayableOutput.GetTarget">
- <summary>
- <para>Returns the Animator that plays the animation graph.</para>
- </summary>
- <returns>
- <para>The targeted Animator.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Animations.AnimationPlayableOutput.SetTarget(UnityEngine.Animator)">
- <summary>
- <para>Sets the Animator that plays the animation graph.</para>
- </summary>
- <param name="value">The targeted Animator.</param>
- </member>
- <member name="T:UnityEngine.Animations.AnimatorControllerPlayable">
- <summary>
- <para>An implementation of IPlayable that controls an animation RuntimeAnimatorController.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Animations.AnimatorControllerPlayable.Create(UnityEngine.Playables.PlayableGraph,UnityEngine.RuntimeAnimatorController)">
- <summary>
- <para>Creates an AnimatorControllerPlayable in the PlayableGraph.</para>
- </summary>
- <param name="graph">The PlayableGraph object that will own the AnimatorControllerPlayable.</param>
- <param name="controller">The RuntimeAnimatorController that will be added in the graph.</param>
- <returns>
- <para>A AnimatorControllerPlayable.</para>
- </returns>
- </member>
- <member name="P:UnityEngine.Animations.AnimatorControllerPlayable.Null">
- <summary>
- <para>Returns an invalid AnimatorControllerPlayable.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Animations.Axis">
- <summary>
- <para>Represents the axes used in 3D space.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Animations.Axis.None">
- <summary>
- <para>Represents the case when no axis is specified.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Animations.Axis.X">
- <summary>
- <para>Represents the X axis.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Animations.Axis.Y">
- <summary>
- <para>Represents the Y axis.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Animations.Axis.Z">
- <summary>
- <para>Represents the Z axis.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Animations.ConstraintSource">
- <summary>
- <para>Represents a source for the constraint.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animations.ConstraintSource.sourceTransform">
- <summary>
- <para>The transform component of the source object.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animations.ConstraintSource.weight">
- <summary>
- <para>The weight of the source in the evaluation of the constraint.</para>
- </summary>
- </member>
- <member name="?:UnityEngine.Animations.IConstraint">
- <summary>
- <para>The common interface for constraint components.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animations.IConstraint.constraintActive">
- <summary>
- <para>Activate or deactivate the constraint.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animations.IConstraint.locked">
- <summary>
- <para>Lock or unlock the offset and position at rest.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animations.IConstraint.sourceCount">
- <summary>
- <para>Gets the number of sources currently set on the component.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animations.IConstraint.weight">
- <summary>
- <para>The weight of the constraint component.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Animations.IConstraint.AddSource(UnityEngine.Animations.ConstraintSource)">
- <summary>
- <para>Add a constraint source.</para>
- </summary>
- <param name="source">The source object and its weight.</param>
- <returns>
- <para>Returns the index of the added source.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Animations.IConstraint.GetSource(System.Int32)">
- <summary>
- <para>Gets a constraint source by index.</para>
- </summary>
- <param name="index">The index of the source.</param>
- <returns>
- <para>The source object and its weight.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Animations.IConstraint.GetSources(System.Collections.Generic.List`1&lt;UnityEngine.Animations.ConstraintSource&gt;)">
- <summary>
- <para>Gets the list of sources.</para>
- </summary>
- <param name="sources">The list of sources to be filled by the component.</param>
- </member>
- <member name="M:UnityEngine.Animations.IConstraint.RemoveSource(System.Int32)">
- <summary>
- <para>Removes a source from the component.</para>
- </summary>
- <param name="index">The index of the source to remove.</param>
- </member>
- <member name="M:UnityEngine.Animations.IConstraint.SetSource(System.Int32,UnityEngine.Animations.ConstraintSource)">
- <summary>
- <para>Sets a source at a specified index.</para>
- </summary>
- <param name="index">The index of the source to set.</param>
- <param name="source">The source object and its weight.</param>
- </member>
- <member name="M:UnityEngine.Animations.IConstraint.SetSources(System.Collections.Generic.List`1&lt;UnityEngine.Animations.ConstraintSource&gt;)">
- <summary>
- <para>Sets the list of sources on the component.</para>
- </summary>
- <param name="sources">The list of sources to set.</param>
- </member>
- <member name="T:UnityEngine.Animations.LookAtConstraint">
- <summary>
- <para>
- Constrains the orientation of an object relative to the position of one or more source objects, such that the object is facing the average position of the sources.
- The LookAtConstraint is a simplified Animations.AimConstraint typically used with a Camera.
- </para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animations.LookAtConstraint.constraintActive">
- <summary>
- <para>Activates or deactivates the constraint.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animations.LookAtConstraint.locked">
- <summary>
- <para>Locks the offset and rotation at rest.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animations.LookAtConstraint.roll">
- <summary>
- <para>The rotation angle along the z axis of the object. The constraint uses this property to calculate the world up vector when Animations.LookAtConstraint.UseUpObject is false.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animations.LookAtConstraint.rotationAtRest">
- <summary>
- <para>The rotation used when the sources have a total weight of 0.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animations.LookAtConstraint.rotationOffset">
- <summary>
- <para>Represents an offset from the constrained orientation.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animations.LookAtConstraint.sourceCount">
- <summary>
- <para>The number of sources set on the component (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animations.LookAtConstraint.useUpObject">
- <summary>
- <para>Determines how the up vector is calculated.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animations.LookAtConstraint.weight">
- <summary>
- <para>The weight of the constraint component.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animations.LookAtConstraint.worldUpObject">
- <summary>
- <para>The world up object, used to calculate the world up vector when Animations.LookAtConstraint.UseUpObject is true.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Animations.LookAtConstraint.AddSource(UnityEngine.Animations.ConstraintSource)">
- <summary>
- <para>Adds a constraint source.</para>
- </summary>
- <param name="source">The source object and its weight.</param>
- <returns>
- <para>Returns the index of the added source.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Animations.LookAtConstraint.GetSource(System.Int32)">
- <summary>
- <para>Gets a constraint source by index.</para>
- </summary>
- <param name="index">The index of the source.</param>
- <returns>
- <para>Returns the source object and its weight.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Animations.LookAtConstraint.GetSources(System.Collections.Generic.List`1&lt;UnityEngine.Animations.ConstraintSource&gt;)">
- <summary>
- <para>Gets the list of sources.</para>
- </summary>
- <param name="sources">The list of sources to be filled by the component.</param>
- </member>
- <member name="M:UnityEngine.Animations.LookAtConstraint.RemoveSource(System.Int32)">
- <summary>
- <para>Removes a source from the component.</para>
- </summary>
- <param name="index">The index of the source to remove.</param>
- </member>
- <member name="M:UnityEngine.Animations.LookAtConstraint.SetSource(System.Int32,UnityEngine.Animations.ConstraintSource)">
- <summary>
- <para>Sets a source at a specified index.</para>
- </summary>
- <param name="index">The index of the source to set.</param>
- <param name="source">The source object and its weight.</param>
- </member>
- <member name="M:UnityEngine.Animations.LookAtConstraint.SetSources(System.Collections.Generic.List`1&lt;UnityEngine.Animations.ConstraintSource&gt;)">
- <summary>
- <para>Sets the list of sources on the component.</para>
- </summary>
- <param name="sources">The list of sources to set.</param>
- </member>
- <member name="T:UnityEngine.Animations.ParentConstraint">
- <summary>
- <para>Constrains the orientation and translation of an object to one or more source objects. The constrained object behaves as if it is in the hierarchy of the sources.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animations.ParentConstraint.constraintActive">
- <summary>
- <para>Activates or deactivates the constraint.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animations.ParentConstraint.locked">
- <summary>
- <para>Locks the offsets and position (translation and rotation) at rest.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animations.ParentConstraint.rotationAtRest">
- <summary>
- <para>The rotation used when the sources have a total weight of 0.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animations.ParentConstraint.rotationAxis">
- <summary>
- <para>The rotation axes affected by the ParentConstraint.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animations.ParentConstraint.rotationOffsets">
- <summary>
- <para>The rotation offsets from the constrained orientation.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animations.ParentConstraint.sourceCount">
- <summary>
- <para>The number of sources set on the component (read-only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animations.ParentConstraint.translationAtRest">
- <summary>
- <para>The position of the object in local space, used when the sources have a total weight of 0.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animations.ParentConstraint.translationAxis">
- <summary>
- <para>The translation axes affected by the ParentConstraint.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animations.ParentConstraint.translationOffsets">
- <summary>
- <para>The translation offsets from the constrained orientation.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animations.ParentConstraint.weight">
- <summary>
- <para>The weight of the constraint component.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Animations.ParentConstraint.AddSource(UnityEngine.Animations.ConstraintSource)">
- <summary>
- <para>Adds a constraint source.</para>
- </summary>
- <param name="source">The source object and its weight.</param>
- <returns>
- <para>Returns the index of the added source.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Animations.ParentConstraint.GetRotationOffset(System.Int32)">
- <summary>
- <para>Gets the rotation offset associated with a source by index.</para>
- </summary>
- <param name="index">The index of the constraint source.</param>
- <returns>
- <para>The rotation offset, as Euler angles.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Animations.ParentConstraint.GetSource(System.Int32)">
- <summary>
- <para>Gets a constraint source by index.</para>
- </summary>
- <param name="index">The index of the source.</param>
- <returns>
- <para>The source object and its weight.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Animations.ParentConstraint.GetSources(System.Collections.Generic.List`1&lt;UnityEngine.Animations.ConstraintSource&gt;)">
- <summary>
- <para>Gets the list of sources.</para>
- </summary>
- <param name="sources">The list of sources filled by the component.</param>
- </member>
- <member name="M:UnityEngine.Animations.ParentConstraint.GetTranslationOffset(System.Int32)">
- <summary>
- <para>Gets the rotation offset associated with a source by index.</para>
- </summary>
- <param name="index">The index of the constraint source.</param>
- <returns>
- <para>The translation offset.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Animations.ParentConstraint.RemoveSource(System.Int32)">
- <summary>
- <para>Removes a source from the component.</para>
- </summary>
- <param name="index">The index of the source to remove.</param>
- </member>
- <member name="M:UnityEngine.Animations.ParentConstraint.SetRotationOffset(System.Int32,UnityEngine.Vector3)">
- <summary>
- <para>Sets the rotation offset associated with a source by index.</para>
- </summary>
- <param name="index">The index of the constraint source.</param>
- <param name="value">The new rotation offset.</param>
- </member>
- <member name="M:UnityEngine.Animations.ParentConstraint.SetSource(System.Int32,UnityEngine.Animations.ConstraintSource)">
- <summary>
- <para>Sets a source at a specified index.</para>
- </summary>
- <param name="index">The index of the source to set.</param>
- <param name="source">The source object and its weight.</param>
- </member>
- <member name="M:UnityEngine.Animations.ParentConstraint.SetSources(System.Collections.Generic.List`1&lt;UnityEngine.Animations.ConstraintSource&gt;)">
- <summary>
- <para>Sets the list of sources on the component.</para>
- </summary>
- <param name="sources">The list of sources to set.</param>
- </member>
- <member name="M:UnityEngine.Animations.ParentConstraint.SetTranslationOffset(System.Int32,UnityEngine.Vector3)">
- <summary>
- <para>Sets the translation offset associated with a source by index.</para>
- </summary>
- <param name="index">The index of the constraint source.</param>
- <param name="value">The new translation offset.</param>
- </member>
- <member name="T:UnityEngine.Animations.PositionConstraint">
- <summary>
- <para>Constrains the position of an object relative to the position of one or more source objects.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animations.PositionConstraint.constraintActive">
- <summary>
- <para>Activates or deactivates the constraint.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animations.PositionConstraint.locked">
- <summary>
- <para>Locks the offset and position at rest.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animations.PositionConstraint.sourceCount">
- <summary>
- <para>The number of sources set on the component (read-only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animations.PositionConstraint.translationAtRest">
- <summary>
- <para>The translation used when the sources have a total weight of 0.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animations.PositionConstraint.translationAxis">
- <summary>
- <para>The axes affected by the PositionConstraint.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animations.PositionConstraint.translationOffset">
- <summary>
- <para>The offset from the constrained position.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animations.PositionConstraint.weight">
- <summary>
- <para>The weight of the constraint component.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Animations.PositionConstraint.AddSource(UnityEngine.Animations.ConstraintSource)">
- <summary>
- <para>Adds a constraint source.</para>
- </summary>
- <param name="source">The source object and its weight.</param>
- <returns>
- <para>Returns the index of the added source.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Animations.PositionConstraint.GetSource(System.Int32)">
- <summary>
- <para>Gets a constraint source by index.</para>
- </summary>
- <param name="index">The index of the source.</param>
- <returns>
- <para>The source object and its weight.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Animations.PositionConstraint.GetSources(System.Collections.Generic.List`1&lt;UnityEngine.Animations.ConstraintSource&gt;)">
- <summary>
- <para>Gets the list of sources.</para>
- </summary>
- <param name="sources">The list of sources to be filled by the component.</param>
- </member>
- <member name="M:UnityEngine.Animations.PositionConstraint.RemoveSource(System.Int32)">
- <summary>
- <para>Removes a source from the component.</para>
- </summary>
- <param name="index">The index of the source to remove.</param>
- </member>
- <member name="M:UnityEngine.Animations.PositionConstraint.SetSource(System.Int32,UnityEngine.Animations.ConstraintSource)">
- <summary>
- <para>Sets a source at a specified index.</para>
- </summary>
- <param name="index">The index of the source to set.</param>
- <param name="source">The source object and its weight.</param>
- </member>
- <member name="M:UnityEngine.Animations.PositionConstraint.SetSources(System.Collections.Generic.List`1&lt;UnityEngine.Animations.ConstraintSource&gt;)">
- <summary>
- <para>Sets the list of sources on the component.</para>
- </summary>
- <param name="sources">The list of sources to set.</param>
- </member>
- <member name="T:UnityEngine.Animations.RotationConstraint">
- <summary>
- <para>Constrains the rotation of an object relative to the rotation of one or more source objects.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animations.RotationConstraint.constraintActive">
- <summary>
- <para>Activates or deactivates the constraint.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animations.RotationConstraint.locked">
- <summary>
- <para>Locks the offset and rotation at rest.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animations.RotationConstraint.rotationAtRest">
- <summary>
- <para>The rotation used when the sources have a total weight of 0.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animations.RotationConstraint.rotationAxis">
- <summary>
- <para>The axes affected by the RotationConstraint.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animations.RotationConstraint.rotationOffset">
- <summary>
- <para>The offset from the constrained rotation.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animations.RotationConstraint.sourceCount">
- <summary>
- <para>The number of sources set on the component (read-only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animations.RotationConstraint.weight">
- <summary>
- <para>The weight of the constraint component.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Animations.RotationConstraint.AddSource(UnityEngine.Animations.ConstraintSource)">
- <summary>
- <para>Adds a constraint source.</para>
- </summary>
- <param name="source">The source object and its weight.</param>
- <returns>
- <para>Returns the index of the added source.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Animations.RotationConstraint.GetSource(System.Int32)">
- <summary>
- <para>Gets a constraint source by index.</para>
- </summary>
- <param name="index">The index of the source.</param>
- <returns>
- <para>The source object and its weight.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Animations.RotationConstraint.GetSources(System.Collections.Generic.List`1&lt;UnityEngine.Animations.ConstraintSource&gt;)">
- <summary>
- <para>Gets the list of sources.</para>
- </summary>
- <param name="sources">The list of sources to be filled by the component.</param>
- </member>
- <member name="M:UnityEngine.Animations.RotationConstraint.RemoveSource(System.Int32)">
- <summary>
- <para>Removes a source from the component.</para>
- </summary>
- <param name="index">The index of the source to remove.</param>
- </member>
- <member name="M:UnityEngine.Animations.RotationConstraint.SetSource(System.Int32,UnityEngine.Animations.ConstraintSource)">
- <summary>
- <para>Sets a source at a specified index.</para>
- </summary>
- <param name="index">The index of the source to set.</param>
- <param name="source">The source object and its weight.</param>
- </member>
- <member name="M:UnityEngine.Animations.RotationConstraint.SetSources(System.Collections.Generic.List`1&lt;UnityEngine.Animations.ConstraintSource&gt;)">
- <summary>
- <para>Sets the list of sources on the component.</para>
- </summary>
- <param name="sources">The list of sources to set.</param>
- </member>
- <member name="T:UnityEngine.Animations.ScaleConstraint">
- <summary>
- <para>Constrains the scale of an object relative to the scale of one or more source objects.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animations.ScaleConstraint.constraintActive">
- <summary>
- <para>Activates or deactivates the constraint.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animations.ScaleConstraint.locked">
- <summary>
- <para>Locks the offset and scale at rest.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animations.ScaleConstraint.scaleAtRest">
- <summary>
- <para>The scale used when the sources have a total weight of 0.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animations.ScaleConstraint.scaleOffset">
- <summary>
- <para>The offset from the constrained scale.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animations.ScaleConstraint.scalingAxis">
- <summary>
- <para>The axes affected by the ScaleConstraint.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animations.ScaleConstraint.sourceCount">
- <summary>
- <para>The number of sources set on the component (read-only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animations.ScaleConstraint.weight">
- <summary>
- <para>The weight of the constraint component.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Animations.ScaleConstraint.AddSource(UnityEngine.Animations.ConstraintSource)">
- <summary>
- <para>Adds a constraint source.</para>
- </summary>
- <param name="source">The source object and its weight.</param>
- <returns>
- <para>Returns the index of the added source.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Animations.ScaleConstraint.GetSource(System.Int32)">
- <summary>
- <para>Gets a constraint source by index.</para>
- </summary>
- <param name="index">The index of the source.</param>
- <returns>
- <para>The source object and its weight.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Animations.ScaleConstraint.GetSources(System.Collections.Generic.List`1&lt;UnityEngine.Animations.ConstraintSource&gt;)">
- <summary>
- <para>Gets the list of sources.</para>
- </summary>
- <param name="sources">The list of sources to be filled by the component.</param>
- </member>
- <member name="M:UnityEngine.Animations.ScaleConstraint.RemoveSource(System.Int32)">
- <summary>
- <para>Removes a source from the component.</para>
- </summary>
- <param name="index">The index of the source to remove.</param>
- </member>
- <member name="M:UnityEngine.Animations.ScaleConstraint.SetSource(System.Int32,UnityEngine.Animations.ConstraintSource)">
- <summary>
- <para>Sets a source at a specified index.</para>
- </summary>
- <param name="index">The index of the source to set.</param>
- <param name="source">The source object and its weight.</param>
- </member>
- <member name="M:UnityEngine.Animations.ScaleConstraint.SetSources(System.Collections.Generic.List`1&lt;UnityEngine.Animations.ConstraintSource&gt;)">
- <summary>
- <para>Sets the list of sources on the component.</para>
- </summary>
- <param name="sources">The list of sources to set.</param>
- </member>
- <member name="T:UnityEngine.AnimationState">
- <summary>
- <para>The AnimationState gives full control over animation blending.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AnimationState.blendMode">
- <summary>
- <para>Which blend mode should be used?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AnimationState.clip">
- <summary>
- <para>The clip that is being played by this animation state.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AnimationState.enabled">
- <summary>
- <para>Enables / disables the animation.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AnimationState.length">
- <summary>
- <para>The length of the animation clip in seconds.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AnimationState.name">
- <summary>
- <para>The name of the animation.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AnimationState.normalizedSpeed">
- <summary>
- <para>The normalized playback speed.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AnimationState.normalizedTime">
- <summary>
- <para>The normalized time of the animation.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AnimationState.speed">
- <summary>
- <para>The playback speed of the animation. 1 is normal playback speed.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AnimationState.time">
- <summary>
- <para>The current time of the animation.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AnimationState.weight">
- <summary>
- <para>The weight of animation.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AnimationState.wrapMode">
- <summary>
- <para>Wrapping mode of the animation.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.AnimationState.AddMixingTransform(UnityEngine.Transform)">
- <summary>
- <para>Adds a transform which should be animated. This allows you to reduce the number of animations you have to create.</para>
- </summary>
- <param name="mix">The transform to animate.</param>
- <param name="recursive">Whether to also animate all children of the specified transform.</param>
- </member>
- <member name="M:UnityEngine.AnimationState.AddMixingTransform(UnityEngine.Transform,System.Boolean)">
- <summary>
- <para>Adds a transform which should be animated. This allows you to reduce the number of animations you have to create.</para>
- </summary>
- <param name="mix">The transform to animate.</param>
- <param name="recursive">Whether to also animate all children of the specified transform.</param>
- </member>
- <member name="M:UnityEngine.AnimationState.RemoveMixingTransform(UnityEngine.Transform)">
- <summary>
- <para>Removes a transform which should be animated.</para>
- </summary>
- <param name="mix"></param>
- </member>
- <member name="T:UnityEngine.Animator">
- <summary>
- <para>Interface to control the Mecanim animation system.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animator.angularVelocity">
- <summary>
- <para>Gets the avatar angular velocity for the last evaluated frame.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animator.animatePhysics">
- <summary>
- <para>When turned on, animations will be executed in the physics loop. This is only useful in conjunction with kinematic rigidbodies.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animator.applyRootMotion">
- <summary>
- <para>Should root motion be applied?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animator.avatar">
- <summary>
- <para>Gets/Sets the current Avatar.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animator.bodyPosition">
- <summary>
- <para>The position of the body center of mass.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animator.bodyRotation">
- <summary>
- <para>The rotation of the body center of mass.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animator.cullingMode">
- <summary>
- <para>Controls culling of this Animator component.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animator.deltaPosition">
- <summary>
- <para>Gets the avatar delta position for the last evaluated frame.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animator.deltaRotation">
- <summary>
- <para>Gets the avatar delta rotation for the last evaluated frame.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animator.feetPivotActive">
- <summary>
- <para>Blends pivot point between body center of mass and feet pivot. At 0%, the blending point is body center of mass. At 100%, the blending point is feet pivot.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animator.fireEvents">
- <summary>
- <para>Sets whether the Animator sends events of type AnimationEvent.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animator.gravityWeight">
- <summary>
- <para>The current gravity weight based on current animations that are played.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animator.hasBoundPlayables">
- <summary>
- <para>Returns true if Animator has any playables assigned to it.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animator.hasRootMotion">
- <summary>
- <para>Returns true if the current rig has root motion.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animator.hasTransformHierarchy">
- <summary>
- <para>Returns true if the object has a transform hierarchy.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animator.humanScale">
- <summary>
- <para>Returns the scale of the current Avatar for a humanoid rig, (1 by default if the rig is generic).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animator.isHuman">
- <summary>
- <para>Returns true if the current rig is humanoid, false if it is generic.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animator.isInitialized">
- <summary>
- <para>Returns whether the animator is initialized successfully.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animator.isMatchingTarget">
- <summary>
- <para>If automatic matching is active.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animator.isOptimizable">
- <summary>
- <para>Returns true if the current rig is optimizable with AnimatorUtility.OptimizeTransformHierarchy.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animator.keepAnimatorControllerStateOnDisable">
- <summary>
- <para>Controls the behaviour of the Animator component when a GameObject is disabled.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animator.layerCount">
- <summary>
- <para>Returns the number of layers in the controller.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animator.layersAffectMassCenter">
- <summary>
- <para>Additional layers affects the center of mass.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animator.leftFeetBottomHeight">
- <summary>
- <para>Get left foot bottom height.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animator.linearVelocityBlending">
- <summary>
- <para>When linearVelocityBlending is set to true, the root motion velocity and angular velocity will be blended linearly.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animator.parameterCount">
- <summary>
- <para>Returns the number of parameters in the controller.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animator.parameters">
- <summary>
- <para>The AnimatorControllerParameter list used by the animator. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animator.pivotPosition">
- <summary>
- <para>Get the current position of the pivot.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animator.pivotWeight">
- <summary>
- <para>Gets the pivot weight.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animator.playableGraph">
- <summary>
- <para>The PlayableGraph created by the Animator.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animator.playbackTime">
- <summary>
- <para>Sets the playback position in the recording buffer.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animator.recorderMode">
- <summary>
- <para>Gets the mode of the Animator recorder.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animator.recorderStartTime">
- <summary>
- <para>Start time of the first frame of the buffer relative to the frame at which StartRecording was called.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animator.recorderStopTime">
- <summary>
- <para>End time of the recorded clip relative to when StartRecording was called.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animator.rightFeetBottomHeight">
- <summary>
- <para>Get right foot bottom height.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animator.rootPosition">
- <summary>
- <para>The root position, the position of the game object.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animator.rootRotation">
- <summary>
- <para>The root rotation, the rotation of the game object.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animator.runtimeAnimatorController">
- <summary>
- <para>The runtime representation of AnimatorController that controls the Animator.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animator.speed">
- <summary>
- <para>The playback speed of the Animator. 1 is normal playback speed.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animator.stabilizeFeet">
- <summary>
- <para>Automatic stabilization of feet during transition and blending.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animator.targetPosition">
- <summary>
- <para>Returns the position of the target specified by SetTarget.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animator.targetRotation">
- <summary>
- <para>Returns the rotation of the target specified by SetTarget.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animator.updateMode">
- <summary>
- <para>Specifies the update mode of the Animator.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Animator.velocity">
- <summary>
- <para>Gets the avatar velocity for the last evaluated frame.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Animator.ApplyBuiltinRootMotion">
- <summary>
- <para>Apply the default Root Motion.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Animator.CrossFade(System.String,System.Single,System.Int32,System.Single,System.Single)">
- <summary>
- <para>Creates a crossfade from the current state to any other state using normalized times.</para>
- </summary>
- <param name="stateName">The name of the state.</param>
- <param name="stateHashName">The hash name of the state.</param>
- <param name="normalizedTransitionDuration">The duration of the transition (normalized).</param>
- <param name="layer">The layer where the crossfade occurs.</param>
- <param name="normalizedTimeOffset">The time of the state (normalized).</param>
- <param name="normalizedTransitionTime">The time of the transition (normalized).</param>
- </member>
- <member name="M:UnityEngine.Animator.CrossFade(System.Int32,System.Single,System.Int32,System.Single,System.Single)">
- <summary>
- <para>Creates a crossfade from the current state to any other state using normalized times.</para>
- </summary>
- <param name="stateName">The name of the state.</param>
- <param name="stateHashName">The hash name of the state.</param>
- <param name="normalizedTransitionDuration">The duration of the transition (normalized).</param>
- <param name="layer">The layer where the crossfade occurs.</param>
- <param name="normalizedTimeOffset">The time of the state (normalized).</param>
- <param name="normalizedTransitionTime">The time of the transition (normalized).</param>
- </member>
- <member name="M:UnityEngine.Animator.CrossFadeInFixedTime(System.Int32,System.Single,System.Int32,System.Single,System.Single)">
- <summary>
- <para>Creates a crossfade from the current state to any other state using times in seconds.</para>
- </summary>
- <param name="stateName">The name of the state.</param>
- <param name="stateHashName">The hash name of the state.</param>
- <param name="fixedTransitionDuration">The duration of the transition (in seconds).</param>
- <param name="layer">The layer where the crossfade occurs.</param>
- <param name="fixedTimeOffset">The time of the state (in seconds).</param>
- <param name="normalizedTransitionTime">The time of the transition (normalized).</param>
- </member>
- <member name="M:UnityEngine.Animator.CrossFadeInFixedTime(System.String,System.Single,System.Int32,System.Single,System.Single)">
- <summary>
- <para>Creates a crossfade from the current state to any other state using times in seconds.</para>
- </summary>
- <param name="stateName">The name of the state.</param>
- <param name="stateHashName">The hash name of the state.</param>
- <param name="fixedTransitionDuration">The duration of the transition (in seconds).</param>
- <param name="layer">The layer where the crossfade occurs.</param>
- <param name="fixedTimeOffset">The time of the state (in seconds).</param>
- <param name="normalizedTransitionTime">The time of the transition (normalized).</param>
- </member>
- <member name="M:UnityEngine.Animator.GetAnimatorTransitionInfo(System.Int32)">
- <summary>
- <para>Returns an AnimatorTransitionInfo with the informations on the current transition.</para>
- </summary>
- <param name="layerIndex">The layer's index.</param>
- <returns>
- <para>An AnimatorTransitionInfo with the informations on the current transition.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Animator.GetBehaviour">
- <summary>
- <para>Returns the first StateMachineBehaviour that matches type T or is derived from T. Returns null if none are found.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Animator.GetBehaviours">
- <summary>
- <para>Returns all StateMachineBehaviour that match type T or are derived from T. Returns null if none are found.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Animator.GetBoneTransform(UnityEngine.HumanBodyBones)">
- <summary>
- <para>Returns Transform mapped to this human bone id.</para>
- </summary>
- <param name="humanBoneId">The human bone that is queried, see enum HumanBodyBones for a list of possible values.</param>
- </member>
- <member name="M:UnityEngine.Animator.GetBool(System.String)">
- <summary>
- <para>Returns the value of the given boolean parameter.</para>
- </summary>
- <param name="name">The parameter name.</param>
- <param name="id">The parameter ID.</param>
- <returns>
- <para>The value of the parameter.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Animator.GetBool(System.Int32)">
- <summary>
- <para>Returns the value of the given boolean parameter.</para>
- </summary>
- <param name="name">The parameter name.</param>
- <param name="id">The parameter ID.</param>
- <returns>
- <para>The value of the parameter.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Animator.GetCurrentAnimatorClipInfo(System.Int32)">
- <summary>
- <para>Returns an array of all the AnimatorClipInfo in the current state of the given layer.</para>
- </summary>
- <param name="layerIndex">The layer index.</param>
- <returns>
- <para>An array of all the AnimatorClipInfo in the current state.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Animator.GetCurrentAnimatorClipInfo(System.Int32,System.Collections.Generic.List`1&lt;UnityEngine.AnimatorClipInfo&gt;)">
- <summary>
- <para>Fills clips with the list of all the AnimatorClipInfo in the current state of the given layer.</para>
- </summary>
- <param name="layerIndex">The layer index.</param>
- <param name="clips">The list of AnimatorClipInfo to fill.</param>
- </member>
- <member name="M:UnityEngine.Animator.GetCurrentAnimatorClipInfoCount(System.Int32)">
- <summary>
- <para>Returns the number of AnimatorClipInfo in the current state.</para>
- </summary>
- <param name="layerIndex">The layer index.</param>
- <returns>
- <para>The number of AnimatorClipInfo in the current state.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Animator.GetCurrentAnimatorStateInfo(System.Int32)">
- <summary>
- <para>Returns an AnimatorStateInfo with the information on the current state.</para>
- </summary>
- <param name="layerIndex">The layer index.</param>
- <returns>
- <para>An AnimatorStateInfo with the information on the current state.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Animator.GetFloat(System.String)">
- <summary>
- <para>Returns the value of the given float parameter.</para>
- </summary>
- <param name="name">The parameter name.</param>
- <param name="id">The parameter ID.</param>
- <returns>
- <para>The value of the parameter.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Animator.GetFloat(System.Int32)">
- <summary>
- <para>Returns the value of the given float parameter.</para>
- </summary>
- <param name="name">The parameter name.</param>
- <param name="id">The parameter ID.</param>
- <returns>
- <para>The value of the parameter.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Animator.GetIKHintPosition(UnityEngine.AvatarIKHint)">
- <summary>
- <para>Gets the position of an IK hint.</para>
- </summary>
- <param name="hint">The AvatarIKHint that is queried.</param>
- <returns>
- <para>Return the current position of this IK hint in world space.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Animator.GetIKHintPositionWeight(UnityEngine.AvatarIKHint)">
- <summary>
- <para>Gets the translative weight of an IK Hint (0 = at the original animation before IK, 1 = at the hint).</para>
- </summary>
- <param name="hint">The AvatarIKHint that is queried.</param>
- <returns>
- <para>Return translative weight.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Animator.GetIKPosition(UnityEngine.AvatarIKGoal)">
- <summary>
- <para>Gets the position of an IK goal.</para>
- </summary>
- <param name="goal">The AvatarIKGoal that is queried.</param>
- <returns>
- <para>Return the current position of this IK goal in world space.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Animator.GetIKPositionWeight(UnityEngine.AvatarIKGoal)">
- <summary>
- <para>Gets the translative weight of an IK goal (0 = at the original animation before IK, 1 = at the goal).</para>
- </summary>
- <param name="goal">The AvatarIKGoal that is queried.</param>
- </member>
- <member name="M:UnityEngine.Animator.GetIKRotation(UnityEngine.AvatarIKGoal)">
- <summary>
- <para>Gets the rotation of an IK goal.</para>
- </summary>
- <param name="goal">The AvatarIKGoal that is is queried.</param>
- </member>
- <member name="M:UnityEngine.Animator.GetIKRotationWeight(UnityEngine.AvatarIKGoal)">
- <summary>
- <para>Gets the rotational weight of an IK goal (0 = rotation before IK, 1 = rotation at the IK goal).</para>
- </summary>
- <param name="goal">The AvatarIKGoal that is queried.</param>
- </member>
- <member name="M:UnityEngine.Animator.GetInteger(System.String)">
- <summary>
- <para>Returns the value of the given integer parameter.</para>
- </summary>
- <param name="name">The parameter name.</param>
- <param name="id">The parameter ID.</param>
- <returns>
- <para>The value of the parameter.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Animator.GetInteger(System.Int32)">
- <summary>
- <para>Returns the value of the given integer parameter.</para>
- </summary>
- <param name="name">The parameter name.</param>
- <param name="id">The parameter ID.</param>
- <returns>
- <para>The value of the parameter.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Animator.GetLayerIndex(System.String)">
- <summary>
- <para>Returns the index of the layer with the given name.</para>
- </summary>
- <param name="layerName">The layer name.</param>
- <returns>
- <para>The layer index.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Animator.GetLayerName(System.Int32)">
- <summary>
- <para>Returns the layer name.</para>
- </summary>
- <param name="layerIndex">The layer index.</param>
- <returns>
- <para>The layer name.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Animator.GetLayerWeight(System.Int32)">
- <summary>
- <para>Returns the weight of the layer at the specified index.</para>
- </summary>
- <param name="layerIndex">The layer index.</param>
- <returns>
- <para>The layer weight.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Animator.GetNextAnimatorClipInfo(System.Int32)">
- <summary>
- <para>Returns an array of all the AnimatorClipInfo in the next state of the given layer.</para>
- </summary>
- <param name="layerIndex">The layer index.</param>
- <returns>
- <para>An array of all the AnimatorClipInfo in the next state.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Animator.GetNextAnimatorClipInfo(System.Int32,System.Collections.Generic.List`1&lt;UnityEngine.AnimatorClipInfo&gt;)">
- <summary>
- <para>Fills clips with the list of all the AnimatorClipInfo in the next state of the given layer.</para>
- </summary>
- <param name="layerIndex">The layer index.</param>
- <param name="clips">The list of AnimatorClipInfo to fill.</param>
- </member>
- <member name="M:UnityEngine.Animator.GetNextAnimatorClipInfoCount(System.Int32)">
- <summary>
- <para>Returns the number of AnimatorClipInfo in the next state.</para>
- </summary>
- <param name="layerIndex">The layer index.</param>
- <returns>
- <para>The number of AnimatorClipInfo in the next state.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Animator.GetNextAnimatorStateInfo(System.Int32)">
- <summary>
- <para>Returns an AnimatorStateInfo with the information on the next state.</para>
- </summary>
- <param name="layerIndex">The layer index.</param>
- <returns>
- <para>An AnimatorStateInfo with the information on the next state.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Animator.GetParameter(System.Int32)">
- <summary>
- <para>See AnimatorController.parameters.</para>
- </summary>
- <param name="index"></param>
- </member>
- <member name="M:UnityEngine.Animator.GetQuaternion(System.String)">
- <summary>
- <para>Gets the value of a quaternion parameter.</para>
- </summary>
- <param name="name">The name of the parameter.</param>
- </member>
- <member name="M:UnityEngine.Animator.GetQuaternion(System.Int32)">
- <summary>
- <para>Gets the value of a quaternion parameter.</para>
- </summary>
- <param name="id">The id of the parameter. The id is generated using Animator::StringToHash.</param>
- </member>
- <member name="M:UnityEngine.Animator.GetVector(System.String)">
- <summary>
- <para>Gets the value of a vector parameter.</para>
- </summary>
- <param name="name">The name of the parameter.</param>
- </member>
- <member name="M:UnityEngine.Animator.GetVector(System.Int32)">
- <summary>
- <para>Gets the value of a vector parameter.</para>
- </summary>
- <param name="id">The id of the parameter. The id is generated using Animator::StringToHash.</param>
- </member>
- <member name="M:UnityEngine.Animator.HasState(System.Int32,System.Int32)">
- <summary>
- <para>Returns true if the state exists in this layer, false otherwise.</para>
- </summary>
- <param name="layerIndex">The layer index.</param>
- <param name="stateID">The state ID.</param>
- <returns>
- <para>True if the state exists in this layer, false otherwise.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Animator.InterruptMatchTarget">
- <summary>
- <para>Interrupts the automatic target matching.</para>
- </summary>
- <param name="completeMatch"></param>
- </member>
- <member name="M:UnityEngine.Animator.InterruptMatchTarget(System.Boolean)">
- <summary>
- <para>Interrupts the automatic target matching.</para>
- </summary>
- <param name="completeMatch"></param>
- </member>
- <member name="M:UnityEngine.Animator.IsControlled(UnityEngine.Transform)">
- <summary>
- <para>Returns true if the transform is controlled by the Animator\.</para>
- </summary>
- <param name="transform">The transform that is queried.</param>
- </member>
- <member name="M:UnityEngine.Animator.IsInTransition(System.Int32)">
- <summary>
- <para>Returns true if there is a transition on the given layer, false otherwise.</para>
- </summary>
- <param name="layerIndex">The layer index.</param>
- <returns>
- <para>True if there is a transition on the given layer, false otherwise.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Animator.IsParameterControlledByCurve(System.String)">
- <summary>
- <para>Returns true if the parameter is controlled by a curve, false otherwise.</para>
- </summary>
- <param name="name">The parameter name.</param>
- <param name="id">The parameter ID.</param>
- <returns>
- <para>True if the parameter is controlled by a curve, false otherwise.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Animator.IsParameterControlledByCurve(System.Int32)">
- <summary>
- <para>Returns true if the parameter is controlled by a curve, false otherwise.</para>
- </summary>
- <param name="name">The parameter name.</param>
- <param name="id">The parameter ID.</param>
- <returns>
- <para>True if the parameter is controlled by a curve, false otherwise.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Animator.MatchTarget(UnityEngine.Vector3,UnityEngine.Quaternion,UnityEngine.AvatarTarget,UnityEngine.MatchTargetWeightMask,System.Single,System.Single)">
- <summary>
- <para>Automatically adjust the gameobject position and rotation so that the AvatarTarget reaches the matchPosition when the current state is at the specified progress.</para>
- </summary>
- <param name="matchPosition">The position we want the body part to reach.</param>
- <param name="matchRotation">The rotation in which we want the body part to be.</param>
- <param name="targetBodyPart">The body part that is involved in the match.</param>
- <param name="weightMask">Structure that contains weights for matching position and rotation.</param>
- <param name="startNormalizedTime">Start time within the animation clip (0 - beginning of clip, 1 - end of clip).</param>
- <param name="targetNormalizedTime">End time within the animation clip (0 - beginning of clip, 1 - end of clip), values greater than 1 can be set to trigger a match after a certain number of loops. Ex: 2.3 means at 30% of 2nd loop.</param>
- </member>
- <member name="M:UnityEngine.Animator.Play(System.String,System.Int32,System.Single)">
- <summary>
- <para>Plays a state.</para>
- </summary>
- <param name="stateName">The state name.</param>
- <param name="stateNameHash">The state hash name. If statNameHash is 0, it changes the current state time.</param>
- <param name="layer">The layer index. If layer is -1, it plays the first state with the given state name or hash.</param>
- <param name="normalizedTime">The time offset (in percentage).</param>
- </member>
- <member name="M:UnityEngine.Animator.Play(System.Int32,System.Int32,System.Single)">
- <summary>
- <para>Plays a state.</para>
- </summary>
- <param name="stateName">The state name.</param>
- <param name="stateNameHash">The state hash name. If statNameHash is 0, it changes the current state time.</param>
- <param name="layer">The layer index. If layer is -1, it plays the first state with the given state name or hash.</param>
- <param name="normalizedTime">The time offset (in percentage).</param>
- </member>
- <member name="M:UnityEngine.Animator.PlayInFixedTime(System.String,System.Int32,System.Single)">
- <summary>
- <para>Plays a state.</para>
- </summary>
- <param name="stateName">The state name.</param>
- <param name="stateNameHash">The state hash name. If statNameHash is 0, it changes the current state time.</param>
- <param name="layer">The layer index. If layer is -1, it plays the first state with the given state name or hash.</param>
- <param name="fixedTime">The time offset (in seconds).</param>
- </member>
- <member name="M:UnityEngine.Animator.PlayInFixedTime(System.Int32,System.Int32,System.Single)">
- <summary>
- <para>Plays a state.</para>
- </summary>
- <param name="stateName">The state name.</param>
- <param name="stateNameHash">The state hash name. If statNameHash is 0, it changes the current state time.</param>
- <param name="layer">The layer index. If layer is -1, it plays the first state with the given state name or hash.</param>
- <param name="fixedTime">The time offset (in seconds).</param>
- </member>
- <member name="M:UnityEngine.Animator.Rebind">
- <summary>
- <para>Rebind all the animated properties and mesh data with the Animator.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Animator.ResetTrigger(System.String)">
- <summary>
- <para>Resets the value of the given trigger parameter.</para>
- </summary>
- <param name="name">The parameter name.</param>
- <param name="id">The parameter ID.</param>
- </member>
- <member name="M:UnityEngine.Animator.ResetTrigger(System.Int32)">
- <summary>
- <para>Resets the value of the given trigger parameter.</para>
- </summary>
- <param name="name">The parameter name.</param>
- <param name="id">The parameter ID.</param>
- </member>
- <member name="M:UnityEngine.Animator.SetBoneLocalRotation(UnityEngine.HumanBodyBones,UnityEngine.Quaternion)">
- <summary>
- <para>Sets local rotation of a human bone during a IK pass.</para>
- </summary>
- <param name="humanBoneId">The human bone Id.</param>
- <param name="rotation">The local rotation.</param>
- </member>
- <member name="M:UnityEngine.Animator.SetBool(System.String,System.Boolean)">
- <summary>
- <para>Sets the value of the given boolean parameter.</para>
- </summary>
- <param name="name">The parameter name.</param>
- <param name="id">The parameter ID.</param>
- <param name="value">The new parameter value.</param>
- </member>
- <member name="M:UnityEngine.Animator.SetBool(System.Int32,System.Boolean)">
- <summary>
- <para>Sets the value of the given boolean parameter.</para>
- </summary>
- <param name="name">The parameter name.</param>
- <param name="id">The parameter ID.</param>
- <param name="value">The new parameter value.</param>
- </member>
- <member name="M:UnityEngine.Animator.SetFloat(System.String,System.Single)">
- <summary>
- <para>Send float values to the Animator to affect transitions.</para>
- </summary>
- <param name="name">The parameter name.</param>
- <param name="id">The parameter ID.</param>
- <param name="value">The new parameter value.</param>
- <param name="dampTime">The damper total time.</param>
- <param name="deltaTime">The delta time to give to the damper.</param>
- </member>
- <member name="M:UnityEngine.Animator.SetFloat(System.String,System.Single,System.Single,System.Single)">
- <summary>
- <para>Send float values to the Animator to affect transitions.</para>
- </summary>
- <param name="name">The parameter name.</param>
- <param name="id">The parameter ID.</param>
- <param name="value">The new parameter value.</param>
- <param name="dampTime">The damper total time.</param>
- <param name="deltaTime">The delta time to give to the damper.</param>
- </member>
- <member name="M:UnityEngine.Animator.SetFloat(System.Int32,System.Single)">
- <summary>
- <para>Send float values to the Animator to affect transitions.</para>
- </summary>
- <param name="name">The parameter name.</param>
- <param name="id">The parameter ID.</param>
- <param name="value">The new parameter value.</param>
- <param name="dampTime">The damper total time.</param>
- <param name="deltaTime">The delta time to give to the damper.</param>
- </member>
- <member name="M:UnityEngine.Animator.SetFloat(System.Int32,System.Single,System.Single,System.Single)">
- <summary>
- <para>Send float values to the Animator to affect transitions.</para>
- </summary>
- <param name="name">The parameter name.</param>
- <param name="id">The parameter ID.</param>
- <param name="value">The new parameter value.</param>
- <param name="dampTime">The damper total time.</param>
- <param name="deltaTime">The delta time to give to the damper.</param>
- </member>
- <member name="M:UnityEngine.Animator.SetIKHintPosition(UnityEngine.AvatarIKHint,UnityEngine.Vector3)">
- <summary>
- <para>Sets the position of an IK hint.</para>
- </summary>
- <param name="hint">The AvatarIKHint that is set.</param>
- <param name="hintPosition">The position in world space.</param>
- </member>
- <member name="M:UnityEngine.Animator.SetIKHintPositionWeight(UnityEngine.AvatarIKHint,System.Single)">
- <summary>
- <para>Sets the translative weight of an IK hint (0 = at the original animation before IK, 1 = at the hint).</para>
- </summary>
- <param name="hint">The AvatarIKHint that is set.</param>
- <param name="value">The translative weight.</param>
- </member>
- <member name="M:UnityEngine.Animator.SetIKPosition(UnityEngine.AvatarIKGoal,UnityEngine.Vector3)">
- <summary>
- <para>Sets the position of an IK goal.</para>
- </summary>
- <param name="goal">The AvatarIKGoal that is set.</param>
- <param name="goalPosition">The position in world space.</param>
- </member>
- <member name="M:UnityEngine.Animator.SetIKPositionWeight(UnityEngine.AvatarIKGoal,System.Single)">
- <summary>
- <para>Sets the translative weight of an IK goal (0 = at the original animation before IK, 1 = at the goal).</para>
- </summary>
- <param name="goal">The AvatarIKGoal that is set.</param>
- <param name="value">The translative weight.</param>
- </member>
- <member name="M:UnityEngine.Animator.SetIKRotation(UnityEngine.AvatarIKGoal,UnityEngine.Quaternion)">
- <summary>
- <para>Sets the rotation of an IK goal.</para>
- </summary>
- <param name="goal">The AvatarIKGoal that is set.</param>
- <param name="goalRotation">The rotation in world space.</param>
- </member>
- <member name="M:UnityEngine.Animator.SetIKRotationWeight(UnityEngine.AvatarIKGoal,System.Single)">
- <summary>
- <para>Sets the rotational weight of an IK goal (0 = rotation before IK, 1 = rotation at the IK goal).</para>
- </summary>
- <param name="goal">The AvatarIKGoal that is set.</param>
- <param name="value">The rotational weight.</param>
- </member>
- <member name="M:UnityEngine.Animator.SetInteger(System.String,System.Int32)">
- <summary>
- <para>Sets the value of the given integer parameter.</para>
- </summary>
- <param name="name">The parameter name.</param>
- <param name="id">The parameter ID.</param>
- <param name="value">The new parameter value.</param>
- </member>
- <member name="M:UnityEngine.Animator.SetInteger(System.Int32,System.Int32)">
- <summary>
- <para>Sets the value of the given integer parameter.</para>
- </summary>
- <param name="name">The parameter name.</param>
- <param name="id">The parameter ID.</param>
- <param name="value">The new parameter value.</param>
- </member>
- <member name="M:UnityEngine.Animator.SetLayerWeight(System.Int32,System.Single)">
- <summary>
- <para>Sets the weight of the layer at the given index.</para>
- </summary>
- <param name="layerIndex">The layer index.</param>
- <param name="weight">The new layer weight.</param>
- </member>
- <member name="M:UnityEngine.Animator.SetLookAtPosition(UnityEngine.Vector3)">
- <summary>
- <para>Sets the look at position.</para>
- </summary>
- <param name="lookAtPosition">The position to lookAt.</param>
- </member>
- <member name="M:UnityEngine.Animator.SetLookAtWeight(System.Single)">
- <summary>
- <para>Set look at weights.</para>
- </summary>
- <param name="weight">(0-1) the global weight of the LookAt, multiplier for other parameters.</param>
- <param name="bodyWeight">(0-1) determines how much the body is involved in the LookAt.</param>
- <param name="headWeight">(0-1) determines how much the head is involved in the LookAt.</param>
- <param name="eyesWeight">(0-1) determines how much the eyes are involved in the LookAt.</param>
- <param name="clampWeight">(0-1) 0.0 means the character is completely unrestrained in motion, 1.0 means he's completely clamped (look at becomes impossible), and 0.5 means he'll be able to move on half of the possible range (180 degrees).</param>
- </member>
- <member name="M:UnityEngine.Animator.SetLookAtWeight(System.Single,System.Single)">
- <summary>
- <para>Set look at weights.</para>
- </summary>
- <param name="weight">(0-1) the global weight of the LookAt, multiplier for other parameters.</param>
- <param name="bodyWeight">(0-1) determines how much the body is involved in the LookAt.</param>
- <param name="headWeight">(0-1) determines how much the head is involved in the LookAt.</param>
- <param name="eyesWeight">(0-1) determines how much the eyes are involved in the LookAt.</param>
- <param name="clampWeight">(0-1) 0.0 means the character is completely unrestrained in motion, 1.0 means he's completely clamped (look at becomes impossible), and 0.5 means he'll be able to move on half of the possible range (180 degrees).</param>
- </member>
- <member name="M:UnityEngine.Animator.SetLookAtWeight(System.Single,System.Single,System.Single)">
- <summary>
- <para>Set look at weights.</para>
- </summary>
- <param name="weight">(0-1) the global weight of the LookAt, multiplier for other parameters.</param>
- <param name="bodyWeight">(0-1) determines how much the body is involved in the LookAt.</param>
- <param name="headWeight">(0-1) determines how much the head is involved in the LookAt.</param>
- <param name="eyesWeight">(0-1) determines how much the eyes are involved in the LookAt.</param>
- <param name="clampWeight">(0-1) 0.0 means the character is completely unrestrained in motion, 1.0 means he's completely clamped (look at becomes impossible), and 0.5 means he'll be able to move on half of the possible range (180 degrees).</param>
- </member>
- <member name="M:UnityEngine.Animator.SetLookAtWeight(System.Single,System.Single,System.Single,System.Single)">
- <summary>
- <para>Set look at weights.</para>
- </summary>
- <param name="weight">(0-1) the global weight of the LookAt, multiplier for other parameters.</param>
- <param name="bodyWeight">(0-1) determines how much the body is involved in the LookAt.</param>
- <param name="headWeight">(0-1) determines how much the head is involved in the LookAt.</param>
- <param name="eyesWeight">(0-1) determines how much the eyes are involved in the LookAt.</param>
- <param name="clampWeight">(0-1) 0.0 means the character is completely unrestrained in motion, 1.0 means he's completely clamped (look at becomes impossible), and 0.5 means he'll be able to move on half of the possible range (180 degrees).</param>
- </member>
- <member name="M:UnityEngine.Animator.SetLookAtWeight(System.Single,System.Single,System.Single,System.Single,System.Single)">
- <summary>
- <para>Set look at weights.</para>
- </summary>
- <param name="weight">(0-1) the global weight of the LookAt, multiplier for other parameters.</param>
- <param name="bodyWeight">(0-1) determines how much the body is involved in the LookAt.</param>
- <param name="headWeight">(0-1) determines how much the head is involved in the LookAt.</param>
- <param name="eyesWeight">(0-1) determines how much the eyes are involved in the LookAt.</param>
- <param name="clampWeight">(0-1) 0.0 means the character is completely unrestrained in motion, 1.0 means he's completely clamped (look at becomes impossible), and 0.5 means he'll be able to move on half of the possible range (180 degrees).</param>
- </member>
- <member name="M:UnityEngine.Animator.SetQuaternion(System.String,UnityEngine.Quaternion)">
- <summary>
- <para>Sets the value of a quaternion parameter.</para>
- </summary>
- <param name="name">The name of the parameter.</param>
- <param name="value">The new value for the parameter.</param>
- </member>
- <member name="M:UnityEngine.Animator.SetQuaternion(System.Int32,UnityEngine.Quaternion)">
- <summary>
- <para>Sets the value of a quaternion parameter.</para>
- </summary>
- <param name="id">Of the parameter. The id is generated using Animator::StringToHash.</param>
- <param name="value">The new value for the parameter.</param>
- </member>
- <member name="M:UnityEngine.Animator.SetTarget(UnityEngine.AvatarTarget,System.Single)">
- <summary>
- <para>Sets an AvatarTarget and a targetNormalizedTime for the current state.</para>
- </summary>
- <param name="targetIndex">The avatar body part that is queried.</param>
- <param name="targetNormalizedTime">The current state Time that is queried.</param>
- </member>
- <member name="M:UnityEngine.Animator.SetTrigger(System.String)">
- <summary>
- <para>Sets the value of the given trigger parameter.</para>
- </summary>
- <param name="name">The parameter name.</param>
- <param name="id">The parameter ID.</param>
- </member>
- <member name="M:UnityEngine.Animator.SetTrigger(System.Int32)">
- <summary>
- <para>Sets the value of the given trigger parameter.</para>
- </summary>
- <param name="name">The parameter name.</param>
- <param name="id">The parameter ID.</param>
- </member>
- <member name="M:UnityEngine.Animator.SetVector(System.String,UnityEngine.Vector3)">
- <summary>
- <para>Sets the value of a vector parameter.</para>
- </summary>
- <param name="name">The name of the parameter.</param>
- <param name="value">The new value for the parameter.</param>
- </member>
- <member name="M:UnityEngine.Animator.SetVector(System.Int32,UnityEngine.Vector3)">
- <summary>
- <para>Sets the value of a vector parameter.</para>
- </summary>
- <param name="id">The id of the parameter. The id is generated using Animator::StringToHash.</param>
- <param name="value">The new value for the parameter.</param>
- </member>
- <member name="M:UnityEngine.Animator.StartPlayback">
- <summary>
- <para>Sets the animator in playback mode.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Animator.StartRecording(System.Int32)">
- <summary>
- <para>Sets the animator in recording mode, and allocates a circular buffer of size frameCount.</para>
- </summary>
- <param name="frameCount">The number of frames (updates) that will be recorded. If frameCount is 0, the recording will continue until the user calls StopRecording. The maximum value for frameCount is 10000.</param>
- </member>
- <member name="M:UnityEngine.Animator.StopPlayback">
- <summary>
- <para>Stops the animator playback mode. When playback stops, the avatar resumes getting control from game logic.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Animator.StopRecording">
- <summary>
- <para>Stops animator record mode.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Animator.StringToHash(System.String)">
- <summary>
- <para>Generates an parameter id from a string.</para>
- </summary>
- <param name="name">The string to convert to Id.</param>
- </member>
- <member name="M:UnityEngine.Animator.Update(System.Single)">
- <summary>
- <para>Evaluates the animator based on deltaTime.</para>
- </summary>
- <param name="deltaTime">The time delta.</param>
- </member>
- <member name="T:UnityEngine.AnimatorClipInfo">
- <summary>
- <para>Information about clip being played and blended by the Animator.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AnimatorClipInfo.clip">
- <summary>
- <para>Returns the animation clip played by the Animator.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AnimatorClipInfo.weight">
- <summary>
- <para>Returns the blending weight used by the Animator to blend this clip.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.AnimatorControllerParameter">
- <summary>
- <para>Used to communicate between scripting and the controller. Some parameters can be set in scripting and used by the controller, while other parameters are based on Custom Curves in Animation Clips and can be sampled using the scripting API.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AnimatorControllerParameter.defaultBool">
- <summary>
- <para>The default bool value for the parameter.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AnimatorControllerParameter.defaultFloat">
- <summary>
- <para>The default float value for the parameter.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AnimatorControllerParameter.defaultInt">
- <summary>
- <para>The default int value for the parameter.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AnimatorControllerParameter.name">
- <summary>
- <para>The name of the parameter.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AnimatorControllerParameter.nameHash">
- <summary>
- <para>Returns the hash of the parameter based on its name.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AnimatorControllerParameter.type">
- <summary>
- <para>The type of the parameter.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.AnimatorControllerParameterType">
- <summary>
- <para>The type of the parameter.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AnimatorControllerParameterType.Bool">
- <summary>
- <para>Boolean type parameter.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AnimatorControllerParameterType.Float">
- <summary>
- <para>Float type parameter.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AnimatorControllerParameterType.Int">
- <summary>
- <para>Int type parameter.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AnimatorControllerParameterType.Trigger">
- <summary>
- <para>Trigger type parameter.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.AnimatorCullingMode">
- <summary>
- <para>Culling mode for the Animator.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AnimatorCullingMode.AlwaysAnimate">
- <summary>
- <para>Always animate the entire character. Object is animated even when offscreen.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AnimatorCullingMode.CullCompletely">
- <summary>
- <para>Animation is completely disabled when renderers are not visible.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AnimatorCullingMode.CullUpdateTransforms">
- <summary>
- <para>Retarget, IK and write of Transforms are disabled when renderers are not visible.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.AnimatorOverrideController">
- <summary>
- <para>Interface to control Animator Override Controller.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AnimatorOverrideController.clips">
- <summary>
- <para>Returns the list of orignal Animation Clip from the controller and their override Animation Clip.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AnimatorOverrideController.overridesCount">
- <summary>
- <para>Returns the count of overrides.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AnimatorOverrideController.runtimeAnimatorController">
- <summary>
- <para>The Runtime Animator Controller that the Animator Override Controller overrides.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.AnimatorOverrideController.ApplyOverrides(System.Collections.Generic.IList`1&lt;System.Collections.Generic.KeyValuePair`2&lt;UnityEngine.AnimationClip,UnityEngine.AnimationClip&gt;&gt;)">
- <summary>
- <para>Applies the list of overrides on this Animator Override Controller.</para>
- </summary>
- <param name="overrides">Overrides list to apply.</param>
- </member>
- <member name="M:UnityEngine.AnimatorOverrideController.#ctor">
- <summary>
- <para>Creates an empty Animator Override Controller.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.AnimatorOverrideController.#ctor(UnityEngine.RuntimeAnimatorController)">
- <summary>
- <para>Creates an Animator Override Controller that overrides controller.</para>
- </summary>
- <param name="controller">Runtime Animator Controller to override.</param>
- </member>
- <member name="M:UnityEngine.AnimatorOverrideController.GetOverrides(System.Collections.Generic.List`1&lt;System.Collections.Generic.KeyValuePair`2&lt;UnityEngine.AnimationClip,UnityEngine.AnimationClip&gt;&gt;)">
- <summary>
- <para>Gets the list of Animation Clip overrides currently defined in this Animator Override Controller.</para>
- </summary>
- <param name="overrides">Array to receive results.</param>
- </member>
- <member name="P:UnityEngine.AnimatorOverrideController.this">
- <summary>
- <para>Returns either the overriding Animation Clip if set or the original Animation Clip named name.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AnimatorOverrideController.this">
- <summary>
- <para>Returns either the overriding Animation Clip if set or the original Animation Clip named name.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.AnimatorRecorderMode">
- <summary>
- <para>The mode of the Animator's recorder.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AnimatorRecorderMode.Offline">
- <summary>
- <para>The Animator recorder is offline.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AnimatorRecorderMode.Playback">
- <summary>
- <para>The Animator recorder is in Playback.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AnimatorRecorderMode.Record">
- <summary>
- <para>The Animator recorder is in Record.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.AnimatorStateInfo">
- <summary>
- <para>Information about the current or next state.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AnimatorStateInfo.fullPathHash">
- <summary>
- <para>The full path hash for this state.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AnimatorStateInfo.length">
- <summary>
- <para>Current duration of the state.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AnimatorStateInfo.loop">
- <summary>
- <para>Is the state looping.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AnimatorStateInfo.nameHash">
- <summary>
- <para>The hashed name of the State.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AnimatorStateInfo.normalizedTime">
- <summary>
- <para>Normalized time of the State.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AnimatorStateInfo.shortNameHash">
- <summary>
- <para>The hash is generated using Animator.StringToHash. The hash does not include the name of the parent layer.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AnimatorStateInfo.speed">
- <summary>
- <para>The playback speed of the animation. 1 is the normal playback speed.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AnimatorStateInfo.speedMultiplier">
- <summary>
- <para>The speed multiplier for this state.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AnimatorStateInfo.tagHash">
- <summary>
- <para>The Tag of the State.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.AnimatorStateInfo.IsName(System.String)">
- <summary>
- <para>Does name match the name of the active state in the statemachine?</para>
- </summary>
- <param name="name"></param>
- </member>
- <member name="M:UnityEngine.AnimatorStateInfo.IsTag(System.String)">
- <summary>
- <para>Does tag match the tag of the active state in the statemachine.</para>
- </summary>
- <param name="tag"></param>
- </member>
- <member name="T:UnityEngine.AnimatorTransitionInfo">
- <summary>
- <para>Information about the current transition.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AnimatorTransitionInfo.anyState">
- <summary>
- <para>Returns true if the transition is from an AnyState node, or from Animator.CrossFade.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AnimatorTransitionInfo.duration">
- <summary>
- <para>Duration of the transition.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AnimatorTransitionInfo.durationUnit">
- <summary>
- <para>The unit of the transition duration.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AnimatorTransitionInfo.fullPathHash">
- <summary>
- <para>The hash name of the Transition.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AnimatorTransitionInfo.nameHash">
- <summary>
- <para>The simplified name of the Transition.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AnimatorTransitionInfo.normalizedTime">
- <summary>
- <para>Normalized time of the Transition.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AnimatorTransitionInfo.userNameHash">
- <summary>
- <para>The user-specified name of the Transition.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.AnimatorTransitionInfo.IsName(System.String)">
- <summary>
- <para>Does name match the name of the active Transition.</para>
- </summary>
- <param name="name"></param>
- </member>
- <member name="M:UnityEngine.AnimatorTransitionInfo.IsUserName(System.String)">
- <summary>
- <para>Does userName match the name of the active Transition.</para>
- </summary>
- <param name="name"></param>
- </member>
- <member name="T:UnityEngine.AnimatorUpdateMode">
- <summary>
- <para>The update mode of the Animator.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AnimatorUpdateMode.AnimatePhysics">
- <summary>
- <para>Updates the animator during the physic loop in order to have the animation system synchronized with the physics engine.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AnimatorUpdateMode.Normal">
- <summary>
- <para>Normal update of the animator.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AnimatorUpdateMode.UnscaledTime">
- <summary>
- <para>Animator updates independently of Time.timeScale.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.AnimatorUtility">
- <summary>
- <para>Various utilities for animator manipulation.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.AnimatorUtility.DeoptimizeTransformHierarchy(UnityEngine.GameObject)">
- <summary>
- <para>This function will recreate all transform hierarchy under GameObject.</para>
- </summary>
- <param name="go">GameObject to Deoptimize.</param>
- </member>
- <member name="M:UnityEngine.AnimatorUtility.OptimizeTransformHierarchy(UnityEngine.GameObject,System.String[])">
- <summary>
- <para>This function will remove all transform hierarchy under GameObject, the animator will write directly transform matrices into the skin mesh matrices saving alot of CPU cycles.</para>
- </summary>
- <param name="go">GameObject to Optimize.</param>
- <param name="exposedTransforms">List of transform name to expose.</param>
- </member>
- <member name="T:UnityEngine.ArmDof">
- <summary>
- <para>Enumeration of all the muscles in an arm.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ArmDof.ArmDownUp">
- <summary>
- <para>The arm down-up muscle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ArmDof.ArmFrontBack">
- <summary>
- <para>The arm front-back muscle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ArmDof.ArmRollInOut">
- <summary>
- <para>The arm roll in-out muscle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ArmDof.ForeArmCloseOpen">
- <summary>
- <para>The forearm close-open muscle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ArmDof.ForeArmRollInOut">
- <summary>
- <para>The forearm roll in-out muscle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ArmDof.HandDownUp">
- <summary>
- <para>The hand down-up muscle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ArmDof.HandInOut">
- <summary>
- <para>The hand in-out muscle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ArmDof.LastArmDof">
- <summary>
- <para>The last value of the ArmDof enum.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ArmDof.ShoulderDownUp">
- <summary>
- <para>The shoulder down-up muscle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ArmDof.ShoulderFrontBack">
- <summary>
- <para>The shoulder front-back muscle.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Avatar">
- <summary>
- <para>Avatar definition.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Avatar.isHuman">
- <summary>
- <para>Return true if this avatar is a valid human avatar.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Avatar.isValid">
- <summary>
- <para>Return true if this avatar is a valid mecanim avatar. It can be a generic avatar or a human avatar.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.AvatarBuilder">
- <summary>
- <para>Class to build avatars from user scripts.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.AvatarBuilder.BuildGenericAvatar(UnityEngine.GameObject,System.String)">
- <summary>
- <para>Create a new generic avatar.</para>
- </summary>
- <param name="go">Root object of your transform hierarchy.</param>
- <param name="rootMotionTransformName">Transform name of the root motion transform. If empty no root motion is defined and you must take care of avatar movement yourself.</param>
- </member>
- <member name="M:UnityEngine.AvatarBuilder.BuildHumanAvatar(UnityEngine.GameObject,UnityEngine.HumanDescription)">
- <summary>
- <para>Create a humanoid avatar.</para>
- </summary>
- <param name="go">Root object of your transform hierachy. It must be the top most gameobject when you create the avatar.</param>
- <param name="humanDescription">Humanoid description of the avatar.</param>
- <returns>
- <para>Returns the Avatar, you must always always check the avatar is valid before using it with Avatar.isValid.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.AvatarIKGoal">
- <summary>
- <para>IK Goal.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AvatarIKGoal.LeftFoot">
- <summary>
- <para>The left foot.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AvatarIKGoal.LeftHand">
- <summary>
- <para>The left hand.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AvatarIKGoal.RightFoot">
- <summary>
- <para>The right foot.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AvatarIKGoal.RightHand">
- <summary>
- <para>The right hand.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.AvatarIKHint">
- <summary>
- <para>IK Hint.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AvatarIKHint.LeftElbow">
- <summary>
- <para>The left elbow IK hint.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AvatarIKHint.LeftKnee">
- <summary>
- <para>The left knee IK hint.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AvatarIKHint.RightElbow">
- <summary>
- <para>The right elbow IK hint.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AvatarIKHint.RightKnee">
- <summary>
- <para>The right knee IK hint.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.AvatarMask">
- <summary>
- <para>AvatarMask is used to mask out humanoid body parts and transforms.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AvatarMask.humanoidBodyPartCount">
- <summary>
- <para>The number of humanoid body parts.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AvatarMask.transformCount">
- <summary>
- <para>Number of transforms.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.AvatarMask.AddTransformPath(UnityEngine.Transform,System.Boolean)">
- <summary>
- <para>Adds a transform path into the AvatarMask.</para>
- </summary>
- <param name="transform">The transform to add into the AvatarMask.</param>
- <param name="recursive">Whether to also add all children of the specified transform.</param>
- </member>
- <member name="M:UnityEngine.AvatarMask.#ctor">
- <summary>
- <para>Creates a new AvatarMask.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.AvatarMask.GetHumanoidBodyPartActive(UnityEngine.AvatarMaskBodyPart)">
- <summary>
- <para>Returns true if the humanoid body part at the given index is active.</para>
- </summary>
- <param name="index">The index of the humanoid body part.</param>
- </member>
- <member name="M:UnityEngine.AvatarMask.GetTransformActive(System.Int32)">
- <summary>
- <para>Returns true if the transform at the given index is active.</para>
- </summary>
- <param name="index">The index of the transform.</param>
- </member>
- <member name="M:UnityEngine.AvatarMask.GetTransformPath(System.Int32)">
- <summary>
- <para>Returns the path of the transform at the given index.</para>
- </summary>
- <param name="index">The index of the transform.</param>
- </member>
- <member name="M:UnityEngine.AvatarMask.RemoveTransformPath(UnityEngine.Transform,System.Boolean)">
- <summary>
- <para>Removes a transform path from the AvatarMask.</para>
- </summary>
- <param name="transform">The Transform that should be removed from the AvatarMask.</param>
- <param name="recursive">Whether to also remove all children of the specified transform.</param>
- </member>
- <member name="M:UnityEngine.AvatarMask.SetHumanoidBodyPartActive(UnityEngine.AvatarMaskBodyPart,System.Boolean)">
- <summary>
- <para>Sets the humanoid body part at the given index to active or not.</para>
- </summary>
- <param name="index">The index of the humanoid body part.</param>
- <param name="value">Active or not.</param>
- </member>
- <member name="M:UnityEngine.AvatarMask.SetTransformActive(System.Int32,System.Boolean)">
- <summary>
- <para>Sets the tranform at the given index to active or not.</para>
- </summary>
- <param name="index">The index of the transform.</param>
- <param name="value">Active or not.</param>
- </member>
- <member name="M:UnityEngine.AvatarMask.SetTransformPath(System.Int32,System.String)">
- <summary>
- <para>Sets the path of the transform at the given index.</para>
- </summary>
- <param name="index">The index of the transform.</param>
- <param name="path">The path of the transform.</param>
- </member>
- <member name="T:UnityEngine.AvatarMaskBodyPart">
- <summary>
- <para>Avatar body part.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AvatarMaskBodyPart.Body">
- <summary>
- <para>The Body.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AvatarMaskBodyPart.Head">
- <summary>
- <para>The Head.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AvatarMaskBodyPart.LastBodyPart">
- <summary>
- <para>Total number of body parts.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AvatarMaskBodyPart.LeftArm">
- <summary>
- <para>The Left Arm.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AvatarMaskBodyPart.LeftFingers">
- <summary>
- <para>Left Fingers.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AvatarMaskBodyPart.LeftFootIK">
- <summary>
- <para>Left Foot IK.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AvatarMaskBodyPart.LeftHandIK">
- <summary>
- <para>Left Hand IK.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AvatarMaskBodyPart.LeftLeg">
- <summary>
- <para>The Left Leg.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AvatarMaskBodyPart.RightArm">
- <summary>
- <para>The Right Arm.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AvatarMaskBodyPart.RightFingers">
- <summary>
- <para>Right Fingers.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AvatarMaskBodyPart.RightFootIK">
- <summary>
- <para>Right Foot IK.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AvatarMaskBodyPart.RightHandIK">
- <summary>
- <para>Right Hand IK.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AvatarMaskBodyPart.RightLeg">
- <summary>
- <para>The Right Leg.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AvatarMaskBodyPart.Root">
- <summary>
- <para>The Root.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.AvatarTarget">
- <summary>
- <para>Target.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AvatarTarget.Body">
- <summary>
- <para>The body, center of mass.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AvatarTarget.LeftFoot">
- <summary>
- <para>The left foot.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AvatarTarget.LeftHand">
- <summary>
- <para>The left hand.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AvatarTarget.RightFoot">
- <summary>
- <para>The right foot.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AvatarTarget.RightHand">
- <summary>
- <para>The right hand.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AvatarTarget.Root">
- <summary>
- <para>The root, the position of the game object.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.BodyDof">
- <summary>
- <para>Enumeration of all the muscles in the body.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.BodyDof.ChestFrontBack">
- <summary>
- <para>The chest front-back muscle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.BodyDof.ChestLeftRight">
- <summary>
- <para>The chest left-right muscle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.BodyDof.ChestRollLeftRight">
- <summary>
- <para>The chest roll left-right muscle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.BodyDof.LastBodyDof">
- <summary>
- <para>The last value of the BodyDof enum.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.BodyDof.SpineFrontBack">
- <summary>
- <para>The spine front-back muscle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.BodyDof.SpineLeftRight">
- <summary>
- <para>The spine left-right muscle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.BodyDof.SpineRollLeftRight">
- <summary>
- <para>The spine roll left-right muscle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.BodyDof.UpperChestFrontBack">
- <summary>
- <para>The upper chest front-back muscle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.BodyDof.UpperChestLeftRight">
- <summary>
- <para>The upper chest left-right muscle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.BodyDof.UpperChestRollLeftRight">
- <summary>
- <para>The upper chest roll left-right muscle.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.DurationUnit">
- <summary>
- <para>Describe the unit of a duration.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.DurationUnit.Fixed">
- <summary>
- <para>A fixed duration is a duration expressed in seconds.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.DurationUnit.Normalized">
- <summary>
- <para>A normalized duration is a duration expressed in percentage.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.Animations.AnimationHumanStream">
- <summary>
- <para>The humanoid stream of animation data passed from one Playable to another.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Animations.AnimationHumanStream.bodyLocalPosition">
- <summary>
- <para>The position of the body center of mass relative to the root.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Animations.AnimationHumanStream.bodyLocalRotation">
- <summary>
- <para>The rotation of the body center of mass relative to the root.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Animations.AnimationHumanStream.bodyPosition">
- <summary>
- <para>The position of the body center of mass in world space.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Animations.AnimationHumanStream.bodyRotation">
- <summary>
- <para>The rotation of the body center of mass in world space.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Animations.AnimationHumanStream.humanScale">
- <summary>
- <para>The scale of the Avatar. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Animations.AnimationHumanStream.isValid">
- <summary>
- <para>Returns true if the stream is valid; false otherwise. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Animations.AnimationHumanStream.leftFootHeight">
- <summary>
- <para>The left foot height from the floor. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Animations.AnimationHumanStream.leftFootVelocity">
- <summary>
- <para>The left foot velocity from the last evaluated frame. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Animations.AnimationHumanStream.rightFootHeight">
- <summary>
- <para>The right foot height from the floor. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Animations.AnimationHumanStream.rightFootVelocity">
- <summary>
- <para>The right foot velocity from the last evaluated frame. (Read Only)</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.AnimationHumanStream.GetGoalLocalPosition(UnityEngine.AvatarIKGoal)">
- <summary>
- <para>Returns the position of this IK goal relative to the root.</para>
- </summary>
- <param name="index">The AvatarIKGoal that is queried.</param>
- <returns>
- <para>The position of this IK goal.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.AnimationHumanStream.GetGoalLocalRotation(UnityEngine.AvatarIKGoal)">
- <summary>
- <para>Returns the rotation of this IK goal relative to the root.</para>
- </summary>
- <param name="index">The AvatarIKGoal that is queried.</param>
- <returns>
- <para>The rotation of this IK goal.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.AnimationHumanStream.GetGoalPosition(UnityEngine.AvatarIKGoal)">
- <summary>
- <para>Returns the position of this IK goal in world space.</para>
- </summary>
- <param name="index">The AvatarIKGoal that is queried.</param>
- <returns>
- <para>The position of this IK goal.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.AnimationHumanStream.GetGoalPositionFromPose(UnityEngine.AvatarIKGoal)">
- <summary>
- <para>Returns the position of this IK goal in world space computed from the stream current pose.</para>
- </summary>
- <param name="index">The AvatarIKGoal that is queried.</param>
- <returns>
- <para>The position of this IK goal.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.AnimationHumanStream.GetGoalRotation(UnityEngine.AvatarIKGoal)">
- <summary>
- <para>Returns the rotation of this IK goal in world space.</para>
- </summary>
- <param name="index">The AvatarIKGoal that is queried.</param>
- <returns>
- <para>The rotation of this IK goal.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.AnimationHumanStream.GetGoalRotationFromPose(UnityEngine.AvatarIKGoal)">
- <summary>
- <para>Returns the rotation of this IK goal in world space computed from the stream current pose.</para>
- </summary>
- <param name="index">The AvatarIKGoal that is queried.</param>
- <returns>
- <para>The rotation of this IK goal.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.AnimationHumanStream.GetGoalWeightPosition(UnityEngine.AvatarIKGoal)">
- <summary>
- <para>Returns the position weight of the IK goal.</para>
- </summary>
- <param name="index">The AvatarIKGoal that is queried.</param>
- <returns>
- <para>The position weight of the IK goal.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.AnimationHumanStream.GetGoalWeightRotation(UnityEngine.AvatarIKGoal)">
- <summary>
- <para>Returns the rotation weight of the IK goal.</para>
- </summary>
- <param name="index">The AvatarIKGoal that is queried.</param>
- <returns>
- <para>The rotation weight of the IK goal.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.AnimationHumanStream.GetHintPosition(UnityEngine.AvatarIKHint)">
- <summary>
- <para>Returns the position of this IK Hint in world space.</para>
- </summary>
- <param name="index">The AvatarIKHint that is queried.</param>
- <returns>
- <para>The position of this IK Hint.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.AnimationHumanStream.GetHintWeightPosition(UnityEngine.AvatarIKHint)">
- <summary>
- <para>Returns the position weight of the IK Hint.</para>
- </summary>
- <param name="index">The AvatarIKHint that is queried.</param>
- <returns>
- <para>The position weight of the IK Hint.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.AnimationHumanStream.GetMuscle(UnityEngine.Experimental.Animations.MuscleHandle)">
- <summary>
- <para>Returns the muscle value.</para>
- </summary>
- <param name="muscle">The Muscle that is queried.</param>
- <returns>
- <para>The muscle value.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.AnimationHumanStream.ResetToStancePose">
- <summary>
- <para>Reset the current pose to the stance pose (T Pose).</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.AnimationHumanStream.SetGoalLocalPosition(UnityEngine.AvatarIKGoal,UnityEngine.Vector3)">
- <summary>
- <para>Sets the position of this IK goal relative to the root.</para>
- </summary>
- <param name="index">The AvatarIKGoal that is queried.</param>
- <param name="pos">The position of this IK goal.</param>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.AnimationHumanStream.SetGoalLocalRotation(UnityEngine.AvatarIKGoal,UnityEngine.Quaternion)">
- <summary>
- <para>Sets the rotation of this IK goal relative to the root.</para>
- </summary>
- <param name="index">The AvatarIKGoal that is queried.</param>
- <param name="rot">The rotation of this IK goal.</param>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.AnimationHumanStream.SetGoalPosition(UnityEngine.AvatarIKGoal,UnityEngine.Vector3)">
- <summary>
- <para>Sets the position of this IK goal in world space.</para>
- </summary>
- <param name="index">The AvatarIKGoal that is queried.</param>
- <param name="pos">The position of this IK goal.</param>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.AnimationHumanStream.SetGoalRotation(UnityEngine.AvatarIKGoal,UnityEngine.Quaternion)">
- <summary>
- <para>Sets the rotation of this IK goal in world space.</para>
- </summary>
- <param name="index">The AvatarIKGoal that is queried.</param>
- <param name="rot">The rotation of this IK goal.</param>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.AnimationHumanStream.SetGoalWeightPosition(UnityEngine.AvatarIKGoal,System.Single)">
- <summary>
- <para>Sets the position weight of the IK goal.</para>
- </summary>
- <param name="index">The AvatarIKGoal that is queried.</param>
- <param name="value">The position weight of the IK goal.</param>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.AnimationHumanStream.SetGoalWeightRotation(UnityEngine.AvatarIKGoal,System.Single)">
- <summary>
- <para>Sets the rotation weight of the IK goal.</para>
- </summary>
- <param name="index">The AvatarIKGoal that is queried.</param>
- <param name="value">The rotation weight of the IK goal.</param>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.AnimationHumanStream.SetHintPosition(UnityEngine.AvatarIKHint,UnityEngine.Vector3)">
- <summary>
- <para>Sets the position of this IK hint in world space.</para>
- </summary>
- <param name="index">The AvatarIKHint that is queried.</param>
- <param name="pos">The position of this IK hint.</param>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.AnimationHumanStream.SetHintWeightPosition(UnityEngine.AvatarIKHint,System.Single)">
- <summary>
- <para>Sets the position weight of the IK Hint.</para>
- </summary>
- <param name="index">The AvatarIKHint that is queried.</param>
- <param name="value">The position weight of the IK Hint.</param>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.AnimationHumanStream.SetLookAtBodyWeight(System.Single)">
- <summary>
- <para>Sets the LookAt body weight.</para>
- </summary>
- <param name="weight">The LookAt body weight.</param>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.AnimationHumanStream.SetLookAtClampWeight(System.Single)">
- <summary>
- <para>Sets the LookAt clamp weight.</para>
- </summary>
- <param name="weight">The LookAt clamp weight.</param>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.AnimationHumanStream.SetLookAtEyesWeight(System.Single)">
- <summary>
- <para>Sets the LookAt eyes weight.</para>
- </summary>
- <param name="weight">The LookAt eyes weight.</param>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.AnimationHumanStream.SetLookAtHeadWeight(System.Single)">
- <summary>
- <para>Sets the LookAt head weight.</para>
- </summary>
- <param name="weight">The LookAt head weight.</param>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.AnimationHumanStream.SetLookAtPosition(UnityEngine.Vector3)">
- <summary>
- <para>Sets the look at position in world space.</para>
- </summary>
- <param name="lookAtPosition">The look at position.</param>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.AnimationHumanStream.SetMuscle(UnityEngine.Experimental.Animations.MuscleHandle,System.Single)">
- <summary>
- <para>Sets the muscle value.</para>
- </summary>
- <param name="muscle">The Muscle that is queried.</param>
- <param name="value">The muscle value.</param>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.AnimationHumanStream.SolveIK">
- <summary>
- <para>Execute the IK solver.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.Animations.AnimationScriptPlayable">
- <summary>
- <para>A Playable that can run a custom, multi-threaded animation job.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.AnimationScriptPlayable.Create(UnityEngine.Playables.PlayableGraph,T,System.Int32)">
- <summary>
- <para>Creates an AnimationScriptPlayable in the PlayableGraph.</para>
- </summary>
- <param name="graph">The PlayableGraph object that will own the AnimationScriptPlayable.</param>
- <param name="job">The IAnimationJob to execute when processing the playable.</param>
- <param name="inputCount">The number of inputs on the playable.</param>
- <param name="jobData"></param>
- <returns>
- <para>A new AnimationScriptPlayable linked to the PlayableGraph.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.AnimationScriptPlayable.GetJobData">
- <summary>
- <para>Gets the job data contained in the playable.</para>
- </summary>
- <returns>
- <para>Returns the IAnimationJob data contained in the playable.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.AnimationScriptPlayable.GetProcessInputs">
- <summary>
- <para>Returns whether the playable inputs will be processed or not.</para>
- </summary>
- <returns>
- <para>true if the inputs will be processed; false otherwise.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.AnimationScriptPlayable.SetJobData(T)">
- <summary>
- <para>Sets a new job data in the playable.</para>
- </summary>
- <param name="jobData">The new IAnimationJob data to set in the playable.</param>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.AnimationScriptPlayable.SetProcessInputs(System.Boolean)">
- <summary>
- <para>Sets the new value for processing the inputs or not.</para>
- </summary>
- <param name="value">The new value for processing the inputs or not.</param>
- </member>
- <member name="T:UnityEngine.Experimental.Animations.AnimationStream">
- <summary>
- <para>The stream of animation data passed from one Playable to another.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Animations.AnimationStream.angularVelocity">
- <summary>
- <para>Gets or sets the avatar angular velocity for the evaluated frame.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Animations.AnimationStream.deltaTime">
- <summary>
- <para>Gets the delta time for the evaluated frame. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Animations.AnimationStream.inputStreamCount">
- <summary>
- <para>Gets the number of input streams. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Animations.AnimationStream.isHumanStream">
- <summary>
- <para>Returns true if the stream is from a humanoid avatar; false otherwise. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Animations.AnimationStream.isValid">
- <summary>
- <para>Returns true if the stream is valid; false otherwise. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Animations.AnimationStream.rootMotionPosition">
- <summary>
- <para>Gets the root motion position for the evaluated frame. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Animations.AnimationStream.rootMotionRotation">
- <summary>
- <para>Gets the root motion rotation for the evaluated frame. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Animations.AnimationStream.velocity">
- <summary>
- <para>Gets or sets the avatar velocity for the evaluated frame.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.AnimationStream.AsHuman">
- <summary>
- <para>Gets the same stream, but as an AnimationHumanStream.</para>
- </summary>
- <returns>
- <para>Returns the same stream, but as an AnimationHumanStream.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.AnimationStream.GetInputStream(System.Int32)">
- <summary>
- <para>Gets the AnimationStream of the playable input at index.</para>
- </summary>
- <param name="index">The input index.</param>
- <returns>
- <para>Returns the AnimationStream of the playable input at index. Returns an invalid stream if the input is not an animation Playable.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.Experimental.Animations.AnimatorJobExtensions">
- <summary>
- <para>Static class providing extension methods for Animator and the animation C# jobs.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.AnimatorJobExtensions.BindSceneProperty(UnityEngine.Animator,UnityEngine.Transform,System.Type,System.String)">
- <summary>
- <para>Create a PropertySceneHandle representing the new binding on the Component property of a Transform in the scene.</para>
- </summary>
- <param name="animator">The Animator instance the method is called on.</param>
- <param name="transform">The Transform to target.</param>
- <param name="type">The Component type.</param>
- <param name="property">The property to bind.</param>
- <returns>
- <para>The PropertySceneHandle representing the new binding.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.AnimatorJobExtensions.BindSceneTransform(UnityEngine.Animator,UnityEngine.Transform)">
- <summary>
- <para>Create a TransformSceneHandle representing the new binding between the Animator and a Transform in the scene.</para>
- </summary>
- <param name="animator">The Animator instance the method is called on.</param>
- <param name="transform">The Transform to bind.</param>
- <returns>
- <para>The TransformSceneHandle representing the new binding.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.AnimatorJobExtensions.BindStreamProperty(UnityEngine.Animator,UnityEngine.Transform,System.Type,System.String)">
- <summary>
- <para>Create a PropertyStreamHandle representing the new binding on the Component property of a Transform already bound to the Animator.</para>
- </summary>
- <param name="animator">The Animator instance the method is called on.</param>
- <param name="transform">The Transform to target.</param>
- <param name="type">The Component type.</param>
- <param name="property">The property to bind.</param>
- <returns>
- <para>The PropertyStreamHandle representing the new binding.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.AnimatorJobExtensions.BindStreamTransform(UnityEngine.Animator,UnityEngine.Transform)">
- <summary>
- <para>Create a TransformStreamHandle representing the new binding between the Animator and a Transform already bound to the Animator.</para>
- </summary>
- <param name="animator">The Animator instance the method is called on.</param>
- <param name="transform">The Transform to bind.</param>
- <returns>
- <para>The TransformStreamHandle representing the new binding.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.AnimatorJobExtensions.CloseAnimationStream(UnityEngine.Animator,UnityEngine.Experimental.Animations.AnimationStream&amp;)">
- <summary>
- <para>Close a stream that has been opened using OpenAnimationStream.</para>
- </summary>
- <param name="animator">The Animator instance the method is called on.</param>
- <param name="stream">The stream to close.</param>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.AnimatorJobExtensions.OpenAnimationStream(UnityEngine.Animator,UnityEngine.Experimental.Animations.AnimationStream&amp;)">
- <summary>
- <para>Open a new stream on the Animator.</para>
- </summary>
- <param name="animator">The Animator instance the method is called on.</param>
- <param name="stream">The new stream.</param>
- <returns>
- <para>Whether or not the stream have been opened.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.AnimatorJobExtensions.ResolveAllSceneHandles(UnityEngine.Animator)">
- <summary>
- <para>Newly created handles are always resolved lazily on the next access when the jobs are run. To avoid a cpu spike while evaluating the jobs you can manually resolve all handles from the main thread.</para>
- </summary>
- <param name="animator">The Animator instance the method is called on.</param>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.AnimatorJobExtensions.ResolveAllStreamHandles(UnityEngine.Animator)">
- <summary>
- <para>Newly created handles are always resolved lazily on the next access when the jobs are run. To avoid a cpu spike while evaluating the jobs you can manually resolve all handles from the main thread.</para>
- </summary>
- <param name="animator">The Animator instance the method is called on.</param>
- </member>
- <member name="?:UnityEngine.Experimental.Animations.IAnimationJob">
- <summary>
- <para>The interface defining an animation job to use with an IAnimationJobPlayable.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.IAnimationJob.ProcessAnimation(UnityEngine.Experimental.Animations.AnimationStream)">
- <summary>
- <para>Defines what to do when processing the animation.</para>
- </summary>
- <param name="stream">The animation stream to work on.</param>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.IAnimationJob.ProcessRootMotion(UnityEngine.Experimental.Animations.AnimationStream)">
- <summary>
- <para>Defines what to do when processing the root motion.</para>
- </summary>
- <param name="stream">The animation stream to work on.</param>
- </member>
- <member name="?:UnityEngine.Experimental.Animations.IAnimationJobPlayable">
- <summary>
- <para>The interface defining an animation playable that uses IAnimationJob.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.IAnimationJobPlayable.GetJobData">
- <summary>
- <para>Gets the job data contained in the playable.</para>
- </summary>
- <returns>
- <para>Returns the IAnimationJob data contained in the playable.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.IAnimationJobPlayable.SetJobData(T)">
- <summary>
- <para>Sets a new job data in the playable.</para>
- </summary>
- <param name="jobData">The new IAnimationJob data to set in the playable.</param>
- </member>
- <member name="T:UnityEngine.Experimental.Animations.MuscleHandle">
- <summary>
- <para>Handle for a muscle in the AnimationHumanStream.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Animations.MuscleHandle.dof">
- <summary>
- <para>The muscle human sub-part. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Animations.MuscleHandle.humanPartDof">
- <summary>
- <para>The muscle human part. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Animations.MuscleHandle.muscleHandleCount">
- <summary>
- <para>The total number of DoF parts in a humanoid. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Animations.MuscleHandle.name">
- <summary>
- <para>The name of the muscle. (Read Only)</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.MuscleHandle.#ctor(UnityEngine.BodyDof)">
- <summary>
- <para>The different constructors that creates the muscle handle.</para>
- </summary>
- <param name="bodyDof">The muscle body sub-part.</param>
- <param name="headDof">The muscle head sub-part.</param>
- <param name="partDof">The muscle human part.</param>
- <param name="legDof">The muscle leg sub-part.</param>
- <param name="armDof">The muscle arm sub-part.</param>
- <param name="fingerDof">The muscle finger sub-part.</param>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.MuscleHandle.#ctor(UnityEngine.HeadDof)">
- <summary>
- <para>The different constructors that creates the muscle handle.</para>
- </summary>
- <param name="bodyDof">The muscle body sub-part.</param>
- <param name="headDof">The muscle head sub-part.</param>
- <param name="partDof">The muscle human part.</param>
- <param name="legDof">The muscle leg sub-part.</param>
- <param name="armDof">The muscle arm sub-part.</param>
- <param name="fingerDof">The muscle finger sub-part.</param>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.MuscleHandle.#ctor">
- <summary>
- <para>The different constructors that creates the muscle handle.</para>
- </summary>
- <param name="bodyDof">The muscle body sub-part.</param>
- <param name="headDof">The muscle head sub-part.</param>
- <param name="partDof">The muscle human part.</param>
- <param name="legDof">The muscle leg sub-part.</param>
- <param name="armDof">The muscle arm sub-part.</param>
- <param name="fingerDof">The muscle finger sub-part.</param>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.MuscleHandle.#ctor">
- <summary>
- <para>The different constructors that creates the muscle handle.</para>
- </summary>
- <param name="bodyDof">The muscle body sub-part.</param>
- <param name="headDof">The muscle head sub-part.</param>
- <param name="partDof">The muscle human part.</param>
- <param name="legDof">The muscle leg sub-part.</param>
- <param name="armDof">The muscle arm sub-part.</param>
- <param name="fingerDof">The muscle finger sub-part.</param>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.MuscleHandle.#ctor(UnityEngine.HumanPartDof,UnityEngine.LegDof)">
- <summary>
- <para>The different constructors that creates the muscle handle.</para>
- </summary>
- <param name="bodyDof">The muscle body sub-part.</param>
- <param name="headDof">The muscle head sub-part.</param>
- <param name="partDof">The muscle human part.</param>
- <param name="legDof">The muscle leg sub-part.</param>
- <param name="armDof">The muscle arm sub-part.</param>
- <param name="fingerDof">The muscle finger sub-part.</param>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.MuscleHandle.#ctor(UnityEngine.HumanPartDof,UnityEngine.ArmDof)">
- <summary>
- <para>The different constructors that creates the muscle handle.</para>
- </summary>
- <param name="bodyDof">The muscle body sub-part.</param>
- <param name="headDof">The muscle head sub-part.</param>
- <param name="partDof">The muscle human part.</param>
- <param name="legDof">The muscle leg sub-part.</param>
- <param name="armDof">The muscle arm sub-part.</param>
- <param name="fingerDof">The muscle finger sub-part.</param>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.MuscleHandle.#ctor(UnityEngine.HumanPartDof,UnityEngine.FingerDof)">
- <summary>
- <para>The different constructors that creates the muscle handle.</para>
- </summary>
- <param name="bodyDof">The muscle body sub-part.</param>
- <param name="headDof">The muscle head sub-part.</param>
- <param name="partDof">The muscle human part.</param>
- <param name="legDof">The muscle leg sub-part.</param>
- <param name="armDof">The muscle arm sub-part.</param>
- <param name="fingerDof">The muscle finger sub-part.</param>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.MuscleHandle.GetMuscleHandles(UnityEngine.Experimental.Animations.MuscleHandle[])">
- <summary>
- <para>Fills the array with all the possible muscle handles on a humanoid.</para>
- </summary>
- <param name="muscleHandles">An array of MuscleHandle.</param>
- </member>
- <member name="T:UnityEngine.Experimental.Animations.PropertySceneHandle">
- <summary>
- <para>Handle for a Component property on an object in the scene.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.PropertySceneHandle.GetBool(UnityEngine.Experimental.Animations.AnimationStream)">
- <summary>
- <para>Gets the boolean property value from an object in the scene.</para>
- </summary>
- <param name="stream">The AnimationStream managing this handle.</param>
- <returns>
- <para>The boolean property value.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.PropertySceneHandle.GetFloat(UnityEngine.Experimental.Animations.AnimationStream)">
- <summary>
- <para>Gets the float property value from an object in the scene.</para>
- </summary>
- <param name="stream">The AnimationStream managing this handle.</param>
- <returns>
- <para>The float property value.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.PropertySceneHandle.GetInt(UnityEngine.Experimental.Animations.AnimationStream)">
- <summary>
- <para>Gets the integer property value from an object in the scene.</para>
- </summary>
- <param name="stream">The AnimationStream managing this handle.</param>
- <returns>
- <para>The integer property value.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.PropertySceneHandle.IsResolved(UnityEngine.Experimental.Animations.AnimationStream)">
- <summary>
- <para>Returns whether or not the handle is resolved.</para>
- </summary>
- <param name="stream">The AnimationStream managing this handle.</param>
- <returns>
- <para>Returns true if the handle is resolved, false otherwise.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.PropertySceneHandle.IsValid(UnityEngine.Experimental.Animations.AnimationStream)">
- <summary>
- <para>Returns whether or not the handle is valid.</para>
- </summary>
- <param name="stream">The AnimationStream managing this handle.</param>
- <returns>
- <para>Whether or not the handle is valid.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.PropertySceneHandle.Resolve(UnityEngine.Experimental.Animations.AnimationStream)">
- <summary>
- <para>Resolves the handle.</para>
- </summary>
- <param name="stream">The AnimationStream managing this handle.</param>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.PropertySceneHandle.SetBool(UnityEngine.Experimental.Animations.AnimationStream,System.Boolean)">
- <summary>
- <para>Sets the boolean property value to an object in the scene.</para>
- </summary>
- <param name="stream">The AnimationStream managing this handle.</param>
- <param name="value">The new boolean property value.</param>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.PropertySceneHandle.SetFloat(UnityEngine.Experimental.Animations.AnimationStream,System.Single)">
- <summary>
- <para>Sets the float property value to an object in the scene.</para>
- </summary>
- <param name="stream">The AnimationStream managing this handle.</param>
- <param name="value">The new float property value.</param>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.PropertySceneHandle.SetInt(UnityEngine.Experimental.Animations.AnimationStream,System.Int32)">
- <summary>
- <para>Sets the integer property value to an object in the scene.</para>
- </summary>
- <param name="stream">The AnimationStream managing this handle.</param>
- <param name="value">The new integer property value.</param>
- </member>
- <member name="T:UnityEngine.Experimental.Animations.PropertyStreamHandle">
- <summary>
- <para>Handle for a Component property on an object in the AnimationStream.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.PropertyStreamHandle.GetBool(UnityEngine.Experimental.Animations.AnimationStream)">
- <summary>
- <para>Gets the boolean property value from a stream.</para>
- </summary>
- <param name="stream">The AnimationStream holding the animated values.</param>
- <returns>
- <para>The boolean property value.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.PropertyStreamHandle.GetFloat(UnityEngine.Experimental.Animations.AnimationStream)">
- <summary>
- <para>Gets the float property value from a stream.</para>
- </summary>
- <param name="stream">The AnimationStream holding the animated values.</param>
- <returns>
- <para>The float property value.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.PropertyStreamHandle.GetInt(UnityEngine.Experimental.Animations.AnimationStream)">
- <summary>
- <para>Gets the integer property value from a stream.</para>
- </summary>
- <param name="stream">The AnimationStream holding the animated values.</param>
- <returns>
- <para>The integer property value.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.PropertyStreamHandle.IsResolved(UnityEngine.Experimental.Animations.AnimationStream)">
- <summary>
- <para>Returns whether or not the handle is resolved.</para>
- </summary>
- <param name="stream">The AnimationStream holding the animated values.</param>
- <returns>
- <para>Returns true if the handle is resolved, false otherwise.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.PropertyStreamHandle.IsValid(UnityEngine.Experimental.Animations.AnimationStream)">
- <summary>
- <para>Returns whether or not the handle is valid.</para>
- </summary>
- <param name="stream">The AnimationStream holding the animated values.</param>
- <returns>
- <para>Whether or not the handle is valid.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.PropertyStreamHandle.Resolve(UnityEngine.Experimental.Animations.AnimationStream)">
- <summary>
- <para>Resolves the handle.</para>
- </summary>
- <param name="stream">The AnimationStream holding the animated values.</param>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.PropertyStreamHandle.SetBool(UnityEngine.Experimental.Animations.AnimationStream,System.Boolean)">
- <summary>
- <para>Sets the boolean property value into a stream.</para>
- </summary>
- <param name="stream">The AnimationStream holding the animated values.</param>
- <param name="value">The new boolean property value.</param>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.PropertyStreamHandle.SetFloat(UnityEngine.Experimental.Animations.AnimationStream,System.Single)">
- <summary>
- <para>Sets the float property value into a stream.</para>
- </summary>
- <param name="stream">The AnimationStream holding the animated values.</param>
- <param name="value">The new float property value.</param>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.PropertyStreamHandle.SetInt(UnityEngine.Experimental.Animations.AnimationStream,System.Int32)">
- <summary>
- <para>Sets the integer property value into a stream.</para>
- </summary>
- <param name="stream">The AnimationStream holding the animated values.</param>
- <param name="value">The new integer property value.</param>
- </member>
- <member name="T:UnityEngine.Experimental.Animations.TransformSceneHandle">
- <summary>
- <para>Position, rotation and scale of an object in the scene.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.TransformSceneHandle.GetLocalPosition(UnityEngine.Experimental.Animations.AnimationStream)">
- <summary>
- <para>Gets the position of the transform relative to the parent.</para>
- </summary>
- <param name="stream">The AnimationStream that manage this handle.</param>
- <returns>
- <para>The position of the transform relative to the parent.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.TransformSceneHandle.GetLocalRotation(UnityEngine.Experimental.Animations.AnimationStream)">
- <summary>
- <para>Gets the rotation of the transform relative to the parent.</para>
- </summary>
- <param name="stream">The AnimationStream that manage this handle.</param>
- <returns>
- <para>The rotation of the transform relative to the parent.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.TransformSceneHandle.GetLocalScale(UnityEngine.Experimental.Animations.AnimationStream)">
- <summary>
- <para>Gets the scale of the transform relative to the parent.</para>
- </summary>
- <param name="stream">The AnimationStream that manage this handle.</param>
- <returns>
- <para>The scale of the transform relative to the parent.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.TransformSceneHandle.GetPosition(UnityEngine.Experimental.Animations.AnimationStream)">
- <summary>
- <para>Gets the position of the transform in world space.</para>
- </summary>
- <param name="stream">The AnimationStream that manage this handle.</param>
- <returns>
- <para>The position of the transform in world space.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.TransformSceneHandle.GetRotation(UnityEngine.Experimental.Animations.AnimationStream)">
- <summary>
- <para>Gets the rotation of the transform in world space.</para>
- </summary>
- <param name="stream">The AnimationStream that manage this handle.</param>
- <returns>
- <para>The rotation of the transform in world space.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.TransformSceneHandle.IsValid(UnityEngine.Experimental.Animations.AnimationStream)">
- <summary>
- <para>Returns whether this is a valid handle.</para>
- </summary>
- <param name="stream">The AnimationStream that manage this handle.</param>
- <returns>
- <para>Whether this is a valid handle.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.TransformSceneHandle.SetLocalPosition(UnityEngine.Experimental.Animations.AnimationStream,UnityEngine.Vector3)">
- <summary>
- <para>Sets the position of the transform relative to the parent.</para>
- </summary>
- <param name="stream">The AnimationStream that manage this handle.</param>
- <param name="position">The position of the transform relative to the parent.</param>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.TransformSceneHandle.SetLocalRotation(UnityEngine.Experimental.Animations.AnimationStream,UnityEngine.Quaternion)">
- <summary>
- <para>Sets the rotation of the transform relative to the parent.</para>
- </summary>
- <param name="stream">The AnimationStream that manage this handle.</param>
- <param name="rotation">The rotation of the transform relative to the parent.</param>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.TransformSceneHandle.SetLocalScale(UnityEngine.Experimental.Animations.AnimationStream,UnityEngine.Vector3)">
- <summary>
- <para>Sets the scale of the transform relative to the parent.</para>
- </summary>
- <param name="stream">The AnimationStream that manage this handle.</param>
- <param name="scale">The scale of the transform relative to the parent.</param>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.TransformSceneHandle.SetPosition(UnityEngine.Experimental.Animations.AnimationStream,UnityEngine.Vector3)">
- <summary>
- <para>Sets the position of the transform in world space.</para>
- </summary>
- <param name="stream">The AnimationStream that manage this handle.</param>
- <param name="position">The position of the transform in world space.</param>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.TransformSceneHandle.SetRotation(UnityEngine.Experimental.Animations.AnimationStream,UnityEngine.Quaternion)">
- <summary>
- <para>Sets the rotation of the transform in world space.</para>
- </summary>
- <param name="stream">The AnimationStream that manage this handle.</param>
- <param name="rotation">The rotation of the transform in world space.</param>
- </member>
- <member name="T:UnityEngine.Experimental.Animations.TransformStreamHandle">
- <summary>
- <para>Position, rotation and scale of an object in the AnimationStream.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.TransformStreamHandle.GetLocalPosition(UnityEngine.Experimental.Animations.AnimationStream)">
- <summary>
- <para>Gets the position of the transform relative to the parent.</para>
- </summary>
- <param name="stream">The AnimationStream that hold the animated values.</param>
- <returns>
- <para>The position of the transform relative to the parent.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.TransformStreamHandle.GetLocalRotation(UnityEngine.Experimental.Animations.AnimationStream)">
- <summary>
- <para>Gets the rotation of the transform relative to the parent.</para>
- </summary>
- <param name="stream">The AnimationStream that hold the animated values.</param>
- <returns>
- <para>The rotation of the transform relative to the parent.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.TransformStreamHandle.GetLocalScale(UnityEngine.Experimental.Animations.AnimationStream)">
- <summary>
- <para>Gets the scale of the transform relative to the parent.</para>
- </summary>
- <param name="stream">The AnimationStream that hold the animated values.</param>
- <returns>
- <para>The scale of the transform relative to the parent.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.TransformStreamHandle.GetPosition(UnityEngine.Experimental.Animations.AnimationStream)">
- <summary>
- <para>Gets the position of the transform in world space.</para>
- </summary>
- <param name="stream">The AnimationStream that hold the animated values.</param>
- <returns>
- <para>The position of the transform in world space.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.TransformStreamHandle.GetRotation(UnityEngine.Experimental.Animations.AnimationStream)">
- <summary>
- <para>Gets the rotation of the transform in world space.</para>
- </summary>
- <param name="stream">The AnimationStream that hold the animated values.</param>
- <returns>
- <para>The rotation of the transform in world space.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.TransformStreamHandle.IsResolved(UnityEngine.Experimental.Animations.AnimationStream)">
- <summary>
- <para>Returns whether this handle is resolved.</para>
- </summary>
- <param name="stream">The AnimationStream that hold the animated values.</param>
- <returns>
- <para>Returns true if the handle is resolved, false otherwise.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.TransformStreamHandle.IsValid(UnityEngine.Experimental.Animations.AnimationStream)">
- <summary>
- <para>Returns whether this is a valid handle.</para>
- </summary>
- <param name="stream">The AnimationStream that hold the animated values.</param>
- <returns>
- <para>Whether this is a valid handle.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.TransformStreamHandle.Resolve(UnityEngine.Experimental.Animations.AnimationStream)">
- <summary>
- <para>Bind this handle with an animated values from the AnimationStream.</para>
- </summary>
- <param name="stream">The AnimationStream that hold the animated values.</param>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.TransformStreamHandle.SetLocalPosition(UnityEngine.Experimental.Animations.AnimationStream,UnityEngine.Vector3)">
- <summary>
- <para>Sets the position of the transform relative to the parent.</para>
- </summary>
- <param name="stream">The AnimationStream that hold the animated values.</param>
- <param name="position">The position of the transform relative to the parent.</param>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.TransformStreamHandle.SetLocalRotation(UnityEngine.Experimental.Animations.AnimationStream,UnityEngine.Quaternion)">
- <summary>
- <para>Sets the rotation of the transform relative to the parent.</para>
- </summary>
- <param name="stream">The AnimationStream that hold the animated values.</param>
- <param name="rotation">The rotation of the transform relative to the parent.</param>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.TransformStreamHandle.SetLocalScale(UnityEngine.Experimental.Animations.AnimationStream,UnityEngine.Vector3)">
- <summary>
- <para>Sets the scale of the transform relative to the parent.</para>
- </summary>
- <param name="scale">The scale of the transform relative to the parent.</param>
- <param name="stream">The AnimationStream that hold the animated values.</param>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.TransformStreamHandle.SetPosition(UnityEngine.Experimental.Animations.AnimationStream,UnityEngine.Vector3)">
- <summary>
- <para>Sets the position of the transform in world space.</para>
- </summary>
- <param name="position">The position of the transform in world space.</param>
- <param name="stream">The AnimationStream that hold the animated values.</param>
- </member>
- <member name="M:UnityEngine.Experimental.Animations.TransformStreamHandle.SetRotation(UnityEngine.Experimental.Animations.AnimationStream,UnityEngine.Quaternion)">
- <summary>
- <para>Sets the rotation of the transform in world space.</para>
- </summary>
- <param name="stream">The AnimationStream that hold the animated values.</param>
- <param name="rotation">The rotation of the transform in world space.</param>
- </member>
- <member name="T:UnityEngine.FingerDof">
- <summary>
- <para>Enumeration of all the muscles in a finger.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.FingerDof.DistalCloseOpen">
- <summary>
- <para>The distal close-open muscle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.FingerDof.IntermediateCloseOpen">
- <summary>
- <para>The intermediate close-open muscle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.FingerDof.LastFingerDof">
- <summary>
- <para>The last value of the FingerDof enum.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.FingerDof.ProximalDownUp">
- <summary>
- <para>The proximal down-up muscle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.FingerDof.ProximalInOut">
- <summary>
- <para>The proximal in-out muscle.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.HeadDof">
- <summary>
- <para>Enumeration of all the muscles in the head.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HeadDof.HeadFrontBack">
- <summary>
- <para>The head front-back muscle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HeadDof.HeadLeftRight">
- <summary>
- <para>The head left-right muscle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HeadDof.HeadRollLeftRight">
- <summary>
- <para>The head roll left-right muscle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HeadDof.JawDownUp">
- <summary>
- <para>The jaw down-up muscle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HeadDof.JawLeftRight">
- <summary>
- <para>The jaw left-right muscle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HeadDof.LastHeadDof">
- <summary>
- <para>The last value of the HeadDof enum.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HeadDof.LeftEyeDownUp">
- <summary>
- <para>The left eye down-up muscle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HeadDof.LeftEyeInOut">
- <summary>
- <para>The left eye in-out muscle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HeadDof.NeckFrontBack">
- <summary>
- <para>The neck front-back muscle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HeadDof.NeckLeftRight">
- <summary>
- <para>The neck left-right muscle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HeadDof.NeckRollLeftRight">
- <summary>
- <para>The neck roll left-right muscle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HeadDof.RightEyeDownUp">
- <summary>
- <para>The right eye down-up muscle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HeadDof.RightEyeInOut">
- <summary>
- <para>The right eye in-out muscle.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.HumanBodyBones">
- <summary>
- <para>Human Body Bones.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanBodyBones.Chest">
- <summary>
- <para>This is the Chest bone.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanBodyBones.Head">
- <summary>
- <para>This is the Head bone.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanBodyBones.Hips">
- <summary>
- <para>This is the Hips bone.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanBodyBones.Jaw">
- <summary>
- <para>This is the Jaw bone.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanBodyBones.LastBone">
- <summary>
- <para>This is the Last bone index delimiter.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanBodyBones.LeftEye">
- <summary>
- <para>This is the Left Eye bone.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanBodyBones.LeftFoot">
- <summary>
- <para>This is the Left Ankle bone.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanBodyBones.LeftHand">
- <summary>
- <para>This is the Left Wrist bone.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanBodyBones.LeftIndexDistal">
- <summary>
- <para>This is the left index 3rd phalange.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanBodyBones.LeftIndexIntermediate">
- <summary>
- <para>This is the left index 2nd phalange.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanBodyBones.LeftIndexProximal">
- <summary>
- <para>This is the left index 1st phalange.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanBodyBones.LeftLittleDistal">
- <summary>
- <para>This is the left little 3rd phalange.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanBodyBones.LeftLittleIntermediate">
- <summary>
- <para>This is the left little 2nd phalange.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanBodyBones.LeftLittleProximal">
- <summary>
- <para>This is the left little 1st phalange.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanBodyBones.LeftLowerArm">
- <summary>
- <para>This is the Left Elbow bone.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanBodyBones.LeftLowerLeg">
- <summary>
- <para>This is the Left Knee bone.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanBodyBones.LeftMiddleDistal">
- <summary>
- <para>This is the left middle 3rd phalange.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanBodyBones.LeftMiddleIntermediate">
- <summary>
- <para>This is the left middle 2nd phalange.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanBodyBones.LeftMiddleProximal">
- <summary>
- <para>This is the left middle 1st phalange.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanBodyBones.LeftRingDistal">
- <summary>
- <para>This is the left ring 3rd phalange.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanBodyBones.LeftRingIntermediate">
- <summary>
- <para>This is the left ring 2nd phalange.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanBodyBones.LeftRingProximal">
- <summary>
- <para>This is the left ring 1st phalange.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanBodyBones.LeftShoulder">
- <summary>
- <para>This is the Left Shoulder bone.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanBodyBones.LeftThumbDistal">
- <summary>
- <para>This is the left thumb 3rd phalange.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanBodyBones.LeftThumbIntermediate">
- <summary>
- <para>This is the left thumb 2nd phalange.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanBodyBones.LeftThumbProximal">
- <summary>
- <para>This is the left thumb 1st phalange.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanBodyBones.LeftToes">
- <summary>
- <para>This is the Left Toes bone.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanBodyBones.LeftUpperArm">
- <summary>
- <para>This is the Left Upper Arm bone.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanBodyBones.LeftUpperLeg">
- <summary>
- <para>This is the Left Upper Leg bone.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanBodyBones.Neck">
- <summary>
- <para>This is the Neck bone.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanBodyBones.RightEye">
- <summary>
- <para>This is the Right Eye bone.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanBodyBones.RightFoot">
- <summary>
- <para>This is the Right Ankle bone.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanBodyBones.RightHand">
- <summary>
- <para>This is the Right Wrist bone.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanBodyBones.RightIndexDistal">
- <summary>
- <para>This is the right index 3rd phalange.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanBodyBones.RightIndexIntermediate">
- <summary>
- <para>This is the right index 2nd phalange.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanBodyBones.RightIndexProximal">
- <summary>
- <para>This is the right index 1st phalange.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanBodyBones.RightLittleDistal">
- <summary>
- <para>This is the right little 3rd phalange.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanBodyBones.RightLittleIntermediate">
- <summary>
- <para>This is the right little 2nd phalange.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanBodyBones.RightLittleProximal">
- <summary>
- <para>This is the right little 1st phalange.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanBodyBones.RightLowerArm">
- <summary>
- <para>This is the Right Elbow bone.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanBodyBones.RightLowerLeg">
- <summary>
- <para>This is the Right Knee bone.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanBodyBones.RightMiddleDistal">
- <summary>
- <para>This is the right middle 3rd phalange.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanBodyBones.RightMiddleIntermediate">
- <summary>
- <para>This is the right middle 2nd phalange.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanBodyBones.RightMiddleProximal">
- <summary>
- <para>This is the right middle 1st phalange.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanBodyBones.RightRingDistal">
- <summary>
- <para>This is the right ring 3rd phalange.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanBodyBones.RightRingIntermediate">
- <summary>
- <para>This is the right ring 2nd phalange.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanBodyBones.RightRingProximal">
- <summary>
- <para>This is the right ring 1st phalange.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanBodyBones.RightShoulder">
- <summary>
- <para>This is the Right Shoulder bone.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanBodyBones.RightThumbDistal">
- <summary>
- <para>This is the right thumb 3rd phalange.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanBodyBones.RightThumbIntermediate">
- <summary>
- <para>This is the right thumb 2nd phalange.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanBodyBones.RightThumbProximal">
- <summary>
- <para>This is the right thumb 1st phalange.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanBodyBones.RightToes">
- <summary>
- <para>This is the Right Toes bone.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanBodyBones.RightUpperArm">
- <summary>
- <para>This is the Right Upper Arm bone.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanBodyBones.RightUpperLeg">
- <summary>
- <para>This is the Right Upper Leg bone.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanBodyBones.Spine">
- <summary>
- <para>This is the first Spine bone.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanBodyBones.UpperChest">
- <summary>
- <para>This is the Upper Chest bone.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.HumanBone">
- <summary>
- <para>The mapping between a bone in the model and the conceptual bone in the Mecanim human anatomy.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.HumanBone.boneName">
- <summary>
- <para>The name of the bone to which the Mecanim human bone is mapped.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.HumanBone.humanName">
- <summary>
- <para>The name of the Mecanim human bone to which the bone from the model is mapped.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanBone.limit">
- <summary>
- <para>The rotation limits that define the muscle for this bone.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.HumanDescription">
- <summary>
- <para>Class that holds humanoid avatar parameters to pass to the AvatarBuilder.BuildHumanAvatar function.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.HumanDescription.armStretch">
- <summary>
- <para>Amount by which the arm's length is allowed to stretch when using IK.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.HumanDescription.feetSpacing">
- <summary>
- <para>Modification to the minimum distance between the feet of a humanoid model.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.HumanDescription.hasTranslationDoF">
- <summary>
- <para>True for any human that has a translation Degree of Freedom (DoF). It is set to false by default.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanDescription.human">
- <summary>
- <para>Mapping between Mecanim bone names and bone names in the rig.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.HumanDescription.legStretch">
- <summary>
- <para>Amount by which the leg's length is allowed to stretch when using IK.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.HumanDescription.lowerArmTwist">
- <summary>
- <para>Defines how the lower arm's roll/twisting is distributed between the elbow and wrist joints.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.HumanDescription.lowerLegTwist">
- <summary>
- <para>Defines how the lower leg's roll/twisting is distributed between the knee and ankle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanDescription.skeleton">
- <summary>
- <para>List of bone Transforms to include in the model.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.HumanDescription.upperArmTwist">
- <summary>
- <para>Defines how the upper arm's roll/twisting is distributed between the shoulder and elbow joints.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.HumanDescription.upperLegTwist">
- <summary>
- <para>Defines how the upper leg's roll/twisting is distributed between the thigh and knee joints.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.HumanLimit">
- <summary>
- <para>This class stores the rotation limits that define the muscle for a single human bone.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.HumanLimit.axisLength">
- <summary>
- <para>Length of the bone to which the limit is applied.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.HumanLimit.center">
- <summary>
- <para>The default orientation of a bone when no muscle action is applied.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.HumanLimit.max">
- <summary>
- <para>The maximum rotation away from the initial value that this muscle can apply.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.HumanLimit.min">
- <summary>
- <para>The maximum negative rotation away from the initial value that this muscle can apply.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.HumanLimit.useDefaultValues">
- <summary>
- <para>Should this limit use the default values?</para>
- </summary>
- </member>
- <member name="T:UnityEngine.HumanPartDof">
- <summary>
- <para>Enumeration of all the parts in a human.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanPartDof.Body">
- <summary>
- <para>The human body part.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanPartDof.Head">
- <summary>
- <para>The human head part.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanPartDof.LeftArm">
- <summary>
- <para>The human left arm part.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanPartDof.LeftIndex">
- <summary>
- <para>The human left index finger part.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanPartDof.LeftLeg">
- <summary>
- <para>The human left leg part.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanPartDof.LeftLittle">
- <summary>
- <para>The human left little finger part.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanPartDof.LeftMiddle">
- <summary>
- <para>The human left middle finger part.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanPartDof.LeftRing">
- <summary>
- <para>The human left ring finger part.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanPartDof.LeftThumb">
- <summary>
- <para>The human left thumb finger part.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanPartDof.RightArm">
- <summary>
- <para>The human right arm part.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanPartDof.RightIndex">
- <summary>
- <para>The human right index finger part.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanPartDof.RightLeg">
- <summary>
- <para>The human right leg part.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanPartDof.RightLittle">
- <summary>
- <para>The human right little finger part.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanPartDof.RightMiddle">
- <summary>
- <para>The human right middle finger part.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanPartDof.RightRing">
- <summary>
- <para>The human right ring finger part.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanPartDof.RightThumb">
- <summary>
- <para>The human right thumb finger part.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.HumanPose">
- <summary>
- <para>Retargetable humanoid pose.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanPose.bodyPosition">
- <summary>
- <para>The human body position for that pose.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanPose.bodyRotation">
- <summary>
- <para>The human body orientation for that pose.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HumanPose.muscles">
- <summary>
- <para>The array of muscle values for that pose.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.HumanPoseHandler">
- <summary>
- <para>A handler that lets you read or write a HumanPose from or to a humanoid avatar skeleton hierarchy.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.HumanPoseHandler.#ctor(UnityEngine.Avatar,UnityEngine.Transform)">
- <summary>
- <para>Creates a human pose handler from an avatar and a root transform.</para>
- </summary>
- <param name="avatar">The avatar that defines the humanoid rig on skeleton hierarchy with root as the top most parent.</param>
- <param name="root">The top most node of the skeleton hierarchy defined in humanoid avatar.</param>
- </member>
- <member name="M:UnityEngine.HumanPoseHandler.GetHumanPose(UnityEngine.HumanPose&amp;)">
- <summary>
- <para>Gets a human pose from the handled avatar skeleton.</para>
- </summary>
- <param name="humanPose">The output human pose.</param>
- </member>
- <member name="M:UnityEngine.HumanPoseHandler.SetHumanPose(UnityEngine.HumanPose&amp;)">
- <summary>
- <para>Sets a human pose on the handled avatar skeleton.</para>
- </summary>
- <param name="humanPose">The human pose to be set.</param>
- </member>
- <member name="T:UnityEngine.HumanTrait">
- <summary>
- <para>Details of all the human bone and muscle types defined by Mecanim.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.HumanTrait.BoneCount">
- <summary>
- <para>The number of human bone types defined by Mecanim.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.HumanTrait.BoneFromMuscle(System.Int32)">
- <summary>
- <para>Return the bone to which a particular muscle is connected.</para>
- </summary>
- <param name="i">Muscle index.</param>
- </member>
- <member name="P:UnityEngine.HumanTrait.BoneName">
- <summary>
- <para>Array of the names of all human bone types defined by Mecanim.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.HumanTrait.GetBoneDefaultHierarchyMass(System.Int32)">
- <summary>
- <para>Gets the bone hierarchy mass.</para>
- </summary>
- <param name="i">The humanoid bone index.</param>
- <returns>
- <para>The bone hierarchy mass.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.HumanTrait.GetMuscleDefaultMax(System.Int32)">
- <summary>
- <para>Get the default maximum value of rotation for a muscle in degrees.</para>
- </summary>
- <param name="i">Muscle index.</param>
- </member>
- <member name="M:UnityEngine.HumanTrait.GetMuscleDefaultMin(System.Int32)">
- <summary>
- <para>Get the default minimum value of rotation for a muscle in degrees.</para>
- </summary>
- <param name="i">Muscle index.</param>
- </member>
- <member name="M:UnityEngine.HumanTrait.GetParentBone(System.Int32)">
- <summary>
- <para>Returns parent humanoid bone index of a bone.</para>
- </summary>
- <param name="i">Humanoid bone index to get parent from.</param>
- <returns>
- <para>Humanoid bone index of parent.</para>
- </returns>
- </member>
- <member name="P:UnityEngine.HumanTrait.MuscleCount">
- <summary>
- <para>The number of human muscle types defined by Mecanim.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.HumanTrait.MuscleFromBone(System.Int32,System.Int32)">
- <summary>
- <para>Obtain the muscle index for a particular bone index and "degree of freedom".</para>
- </summary>
- <param name="i">Bone index.</param>
- <param name="dofIndex">Number representing a "degree of freedom": 0 for X-Axis, 1 for Y-Axis, 2 for Z-Axis.</param>
- </member>
- <member name="P:UnityEngine.HumanTrait.MuscleName">
- <summary>
- <para>Array of the names of all human muscle types defined by Mecanim.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.HumanTrait.RequiredBone(System.Int32)">
- <summary>
- <para>Is the bone a member of the minimal set of bones that Mecanim requires for a human model?</para>
- </summary>
- <param name="i">Index of the bone to test.</param>
- </member>
- <member name="P:UnityEngine.HumanTrait.RequiredBoneCount">
- <summary>
- <para>The number of bone types that are required by Mecanim for any human model.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.LegDof">
- <summary>
- <para>Enumeration of all the muscles in a leg.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.LegDof.FootCloseOpen">
- <summary>
- <para>The foot close-open muscle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.LegDof.FootInOut">
- <summary>
- <para>The foot in-out muscle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.LegDof.LastLegDof">
- <summary>
- <para>The last value of the LegDof enum.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.LegDof.LegCloseOpen">
- <summary>
- <para>The leg close-open muscle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.LegDof.LegRollInOut">
- <summary>
- <para>The leg roll in-out muscle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.LegDof.ToesUpDown">
- <summary>
- <para>The toes up-down muscle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.LegDof.UpperLegFrontBack">
- <summary>
- <para>The upper leg front-back muscle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.LegDof.UpperLegInOut">
- <summary>
- <para>The upper leg in-out muscle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.LegDof.UpperLegRollInOut">
- <summary>
- <para>The upper leg roll in-out muscle.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.MatchTargetWeightMask">
- <summary>
- <para>Use this struct to specify the position and rotation weight mask for Animator.MatchTarget.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.MatchTargetWeightMask.positionXYZWeight">
- <summary>
- <para>Position XYZ weight.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.MatchTargetWeightMask.rotationWeight">
- <summary>
- <para>Rotation weight.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.MatchTargetWeightMask.#ctor(UnityEngine.Vector3,System.Single)">
- <summary>
- <para>MatchTargetWeightMask contructor.</para>
- </summary>
- <param name="positionXYZWeight">Position XYZ weight.</param>
- <param name="rotationWeight">Rotation weight.</param>
- </member>
- <member name="T:UnityEngine.Motion">
- <summary>
- <para>Base class for AnimationClips and BlendTrees.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Playables.AnimationPlayableUtilities">
- <summary>
- <para>Implements high-level utility methods to simplify use of the Playable API with Animations.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Playables.AnimationPlayableUtilities.Play(UnityEngine.Animator,UnityEngine.Playables.Playable,UnityEngine.Playables.PlayableGraph)">
- <summary>
- <para>Plays the Playable on the given Animator.</para>
- </summary>
- <param name="animator">Target Animator.</param>
- <param name="playable">The Playable that will be played.</param>
- <param name="graph">The Graph that owns the Playable.</param>
- </member>
- <member name="M:UnityEngine.Playables.AnimationPlayableUtilities.PlayAnimatorController(UnityEngine.Animator,UnityEngine.RuntimeAnimatorController,UnityEngine.Playables.PlayableGraph&amp;)">
- <summary>
- <para>Creates a PlayableGraph to be played on the given Animator. An AnimatorControllerPlayable is also created for the given RuntimeAnimatorController.</para>
- </summary>
- <param name="animator">Target Animator.</param>
- <param name="controller">The RuntimeAnimatorController to create an AnimatorControllerPlayable for.</param>
- <param name="graph">The created PlayableGraph.</param>
- <returns>
- <para>A handle to the newly-created AnimatorControllerPlayable.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Playables.AnimationPlayableUtilities.PlayClip(UnityEngine.Animator,UnityEngine.AnimationClip,UnityEngine.Playables.PlayableGraph&amp;)">
- <summary>
- <para>Creates a PlayableGraph to be played on the given Animator. An AnimationClipPlayable is also created for the given AnimationClip.</para>
- </summary>
- <param name="animator">Target Animator.</param>
- <param name="clip">The AnimationClip to create an AnimationClipPlayable for.</param>
- <param name="graph">The created PlayableGraph.</param>
- <returns>
- <para>A handle to the newly-created AnimationClipPlayable.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Playables.AnimationPlayableUtilities.PlayLayerMixer(UnityEngine.Animator,System.Int32,UnityEngine.Playables.PlayableGraph&amp;)">
- <summary>
- <para>Creates a PlayableGraph to be played on the given Animator. An AnimationLayerMixerPlayable is also created.</para>
- </summary>
- <param name="animator">Target Animator.</param>
- <param name="inputCount">The input count for the AnimationLayerMixerPlayable. Defines the number of layers.</param>
- <param name="graph">The created PlayableGraph.</param>
- <returns>
- <para>A handle to the newly-created AnimationLayerMixerPlayable.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Playables.AnimationPlayableUtilities.PlayMixer(UnityEngine.Animator,System.Int32,UnityEngine.Playables.PlayableGraph&amp;)">
- <summary>
- <para>Creates a PlayableGraph to be played on the given Animator. An AnimationMixerPlayable is also created.</para>
- </summary>
- <param name="animator">Target Animator.</param>
- <param name="inputCount">The input count for the AnimationMixerPlayable.</param>
- <param name="graph">The created PlayableGraph.</param>
- <returns>
- <para>A handle to the newly-created AnimationMixerPlayable.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.PlayMode">
- <summary>
- <para>Used by Animation.Play function.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.PlayMode.StopAll">
- <summary>
- <para>Will stop all animations that were started with this component before playing.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.PlayMode.StopSameLayer">
- <summary>
- <para>Will stop all animations that were started in the same layer. This is the default when playing animations.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.QueueMode">
- <summary>
- <para>Used by Animation.Play function.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.QueueMode.CompleteOthers">
- <summary>
- <para>Will start playing after all other animations have stopped playing.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.QueueMode.PlayNow">
- <summary>
- <para>Starts playing immediately. This can be used if you just want to quickly create a duplicate animation.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.RuntimeAnimatorController">
- <summary>
- <para>The runtime representation of the AnimatorController. Use this representation to change the Animator Controller during runtime.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RuntimeAnimatorController.animationClips">
- <summary>
- <para>Retrieves all AnimationClip used by the controller.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.SharedBetweenAnimatorsAttribute">
- <summary>
- <para>SharedBetweenAnimatorsAttribute is an attribute that specify that this StateMachineBehaviour should be instantiate only once and shared among all Animator instance. This attribute reduce the memory footprint for each controller instance.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.SkeletonBone">
- <summary>
- <para>Details of the Transform name mapped to a model's skeleton bone and its default position and rotation in the T-pose.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SkeletonBone.name">
- <summary>
- <para>The name of the Transform mapped to the bone.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SkeletonBone.position">
- <summary>
- <para>The T-pose position of the bone in local space.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SkeletonBone.rotation">
- <summary>
- <para>The T-pose rotation of the bone in local space.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SkeletonBone.scale">
- <summary>
- <para>The T-pose scaling of the bone in local space.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.StateMachineBehaviour">
- <summary>
- <para>StateMachineBehaviour is a component that can be added to a state machine state. It's the base class every script on a state derives from.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.StateMachineBehaviour.OnStateEnter">
- <summary>
- <para>Called on the first Update frame when a statemachine evaluate this state.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.StateMachineBehaviour.OnStateExit">
- <summary>
- <para>Called on the last update frame when a statemachine evaluate this state.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.StateMachineBehaviour.OnStateIK">
- <summary>
- <para>Called right after MonoBehaviour.OnAnimatorIK.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.StateMachineBehaviour.OnStateMachineEnter(UnityEngine.Animator,System.Int32)">
- <summary>
- <para>Called on the first Update frame when making a transition to a StateMachine. This is not called when making a transition into a StateMachine sub-state.</para>
- </summary>
- <param name="animator">The Animator playing this state machine.</param>
- <param name="stateMachinePathHash">The full path hash for this state machine.</param>
- </member>
- <member name="M:UnityEngine.StateMachineBehaviour.OnStateMachineExit(UnityEngine.Animator,System.Int32)">
- <summary>
- <para>Called on the last Update frame when making a transition out of a StateMachine. This is not called when making a transition into a StateMachine sub-state.</para>
- </summary>
- <param name="animator">The Animator playing this state machine.</param>
- <param name="stateMachinePathHash">The full path hash for this state machine.</param>
- </member>
- <member name="M:UnityEngine.StateMachineBehaviour.OnStateMove">
- <summary>
- <para>Called right after MonoBehaviour.OnAnimatorMove.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.StateMachineBehaviour.OnStateUpdate">
- <summary>
- <para>Called at each Update frame except for the first and last frame.</para>
- </summary>
- </member>
- <member name="A:UnityEngine.AnimationModule">
- <summary>
- <para>The Animation module implements Unity's animation system.</para>
- </summary>
- </member>
- </members>
-</doc>
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.AssetBundleModule.dll b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.AssetBundleModule.dll
deleted file mode 100644
index 3d7cbd6..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.AssetBundleModule.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.AssetBundleModule.xml b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.AssetBundleModule.xml
deleted file mode 100644
index 6bc726b..0000000
--- a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.AssetBundleModule.xml
+++ /dev/null
@@ -1,317 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
-<doc>
- <members>
- <assembly>
- <name>UnityEngine.AssetBundleModule</name>
- </assembly>
- <member name="T:UnityEngine.AssetBundle">
- <summary>
- <para>AssetBundles let you stream additional assets via the UnityWebRequest class and instantiate them at runtime. AssetBundles are created via BuildPipeline.BuildAssetBundle.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AssetBundle.isStreamedSceneAssetBundle">
- <summary>
- <para>Return true if the AssetBundle is a streamed scene AssetBundle.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AssetBundle.mainAsset">
- <summary>
- <para>Main asset that was supplied when building the asset bundle (Read Only).</para>
- </summary>
- </member>
- <member name="M:UnityEngine.AssetBundle.Contains(System.String)">
- <summary>
- <para>Check if an AssetBundle contains a specific object.</para>
- </summary>
- <param name="name"></param>
- </member>
- <member name="M:UnityEngine.AssetBundle.GetAllAssetNames">
- <summary>
- <para>Return all asset names in the AssetBundle.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.AssetBundle.GetAllLoadedAssetBundles">
- <summary>
- <para>To use when you need to get a list of all the currently loaded Asset Bundles.</para>
- </summary>
- <returns>
- <para>Returns IEnumerable&lt;AssetBundle&gt; of all currently loaded Asset Bundles.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.AssetBundle.GetAllScenePaths">
- <summary>
- <para>Return all the scene asset paths (paths to *.unity assets) in the AssetBundle.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.AssetBundle.LoadAllAssets(System.Type)">
- <summary>
- <para>Loads all assets contained in the asset bundle that inherit from type.</para>
- </summary>
- <param name="type"></param>
- </member>
- <member name="M:UnityEngine.AssetBundle.LoadAllAssets">
- <summary>
- <para>Loads all assets contained in the asset bundle.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.AssetBundle.LoadAllAssets">
- <summary>
- <para>Loads all assets contained in the asset bundle that inherit from type T.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.AssetBundle.LoadAllAssetsAsync">
- <summary>
- <para>Loads all assets contained in the asset bundle asynchronously.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.AssetBundle.LoadAllAssetsAsync">
- <summary>
- <para>Loads all assets contained in the asset bundle that inherit from T asynchronously.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.AssetBundle.LoadAllAssetsAsync(System.Type)">
- <summary>
- <para>Loads all assets contained in the asset bundle that inherit from type asynchronously.</para>
- </summary>
- <param name="type"></param>
- </member>
- <member name="M:UnityEngine.AssetBundle.LoadAsset(System.String)">
- <summary>
- <para>Loads asset with name from the bundle.</para>
- </summary>
- <param name="name"></param>
- </member>
- <member name="M:UnityEngine.AssetBundle.LoadAsset(System.String,System.Type)">
- <summary>
- <para>Loads asset with name of a given type from the bundle.</para>
- </summary>
- <param name="name"></param>
- <param name="type"></param>
- </member>
- <member name="M:UnityEngine.AssetBundle.LoadAsset(System.String)">
- <summary>
- <para>Loads asset with name of type T from the bundle.</para>
- </summary>
- <param name="name"></param>
- </member>
- <member name="M:UnityEngine.AssetBundle.LoadAssetAsync(System.String)">
- <summary>
- <para>Asynchronously loads asset with name from the bundle.</para>
- </summary>
- <param name="name"></param>
- </member>
- <member name="M:UnityEngine.AssetBundle.LoadAssetAsync(System.String)">
- <summary>
- <para>Asynchronously loads asset with name of a given T from the bundle.</para>
- </summary>
- <param name="name"></param>
- </member>
- <member name="M:UnityEngine.AssetBundle.LoadAssetAsync(System.String,System.Type)">
- <summary>
- <para>Asynchronously loads asset with name of a given type from the bundle.</para>
- </summary>
- <param name="name"></param>
- <param name="type"></param>
- </member>
- <member name="M:UnityEngine.AssetBundle.LoadAssetWithSubAssets(System.String)">
- <summary>
- <para>Loads asset and sub assets with name from the bundle.</para>
- </summary>
- <param name="name"></param>
- </member>
- <member name="M:UnityEngine.AssetBundle.LoadAssetWithSubAssets(System.String,System.Type)">
- <summary>
- <para>Loads asset and sub assets with name of a given type from the bundle.</para>
- </summary>
- <param name="name"></param>
- <param name="type"></param>
- </member>
- <member name="M:UnityEngine.AssetBundle.LoadAssetWithSubAssets(System.String)">
- <summary>
- <para>Loads asset and sub assets with name of type T from the bundle.</para>
- </summary>
- <param name="name"></param>
- </member>
- <member name="M:UnityEngine.AssetBundle.LoadAssetWithSubAssetsAsync(System.String)">
- <summary>
- <para>Loads asset with sub assets with name from the bundle asynchronously.</para>
- </summary>
- <param name="name"></param>
- </member>
- <member name="M:UnityEngine.AssetBundle.LoadAssetWithSubAssetsAsync(System.String)">
- <summary>
- <para>Loads asset with sub assets with name of type T from the bundle asynchronously.</para>
- </summary>
- <param name="name"></param>
- </member>
- <member name="M:UnityEngine.AssetBundle.LoadAssetWithSubAssetsAsync(System.String,System.Type)">
- <summary>
- <para>Loads asset with sub assets with name of a given type from the bundle asynchronously.</para>
- </summary>
- <param name="name"></param>
- <param name="type"></param>
- </member>
- <member name="M:UnityEngine.AssetBundle.LoadFromFile(System.String,System.UInt32,System.UInt64)">
- <summary>
- <para>Synchronously loads an AssetBundle from a file on disk.</para>
- </summary>
- <param name="path">Path of the file on disk.</param>
- <param name="crc">An optional CRC-32 checksum of the uncompressed content. If this is non-zero, then the content will be compared against the checksum before loading it, and give an error if it does not match.</param>
- <param name="offset">An optional byte offset. This value specifies where to start reading the AssetBundle from.</param>
- <returns>
- <para>Loaded AssetBundle object or null if failed.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.AssetBundle.LoadFromFile">
- <summary>
- <para>Synchronously loads an AssetBundle from a file on disk.</para>
- </summary>
- <param name="path">Path of the file on disk.</param>
- <param name="crc">An optional CRC-32 checksum of the uncompressed content. If this is non-zero, then the content will be compared against the checksum before loading it, and give an error if it does not match.</param>
- <param name="offset">An optional byte offset. This value specifies where to start reading the AssetBundle from.</param>
- <returns>
- <para>Loaded AssetBundle object or null if failed.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.AssetBundle.LoadFromFileAsync(System.String,System.UInt32,System.UInt64)">
- <summary>
- <para>Asynchronously loads an AssetBundle from a file on disk.</para>
- </summary>
- <param name="path">Path of the file on disk.</param>
- <param name="crc">An optional CRC-32 checksum of the uncompressed content. If this is non-zero, then the content will be compared against the checksum before loading it, and give an error if it does not match.</param>
- <param name="offset">An optional byte offset. This value specifies where to start reading the AssetBundle from.</param>
- <returns>
- <para>Asynchronous create request for an AssetBundle. Use AssetBundleCreateRequest.assetBundle property to get an AssetBundle once it is loaded.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.AssetBundle.LoadFromMemory(System.Byte[],System.UInt32)">
- <summary>
- <para>Synchronously create an AssetBundle from a memory region.</para>
- </summary>
- <param name="binary">Array of bytes with the AssetBundle data.</param>
- <param name="crc">An optional CRC-32 checksum of the uncompressed content. If this is non-zero, then the content will be compared against the checksum before loading it, and give an error if it does not match.</param>
- <returns>
- <para>Loaded AssetBundle object or null if failed.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.AssetBundle.LoadFromMemoryAsync(System.Byte[],System.UInt32)">
- <summary>
- <para>Asynchronously create an AssetBundle from a memory region.</para>
- </summary>
- <param name="binary">Array of bytes with the AssetBundle data.</param>
- <param name="crc">An optional CRC-32 checksum of the uncompressed content. If this is non-zero, then the content will be compared against the checksum before loading it, and give an error if it does not match.</param>
- <returns>
- <para>Asynchronous create request for an AssetBundle. Use AssetBundleCreateRequest.assetBundle property to get an AssetBundle once it is loaded.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.AssetBundle.LoadFromStream(System.IO.Stream,System.UInt32,System.UInt32)">
- <summary>
- <para>Synchronously loads an AssetBundle from a managed Stream.</para>
- </summary>
- <param name="stream">The managed Stream object. Unity calls Read(), Seek() and the Length property on this object to load the AssetBundle data.</param>
- <param name="crc">An optional CRC-32 checksum of the uncompressed content.</param>
- <param name="managedReadBufferSize">An optional overide for the size of the read buffer size used whilst loading data. The default size is 32KB.</param>
- <returns>
- <para>The loaded AssetBundle object or null when the object fails to load.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.AssetBundle.LoadFromStreamAsync(System.IO.Stream,System.UInt32,System.UInt32)">
- <summary>
- <para>Asynchronously loads an AssetBundle from a managed Stream.</para>
- </summary>
- <param name="stream">The managed Stream object. Unity calls Read(), Seek() and the Length property on this object to load the AssetBundle data.</param>
- <param name="crc">An optional CRC-32 checksum of the uncompressed content.</param>
- <param name="managedReadBufferSize">An optional overide for the size of the read buffer size used whilst loading data. The default size is 32KB.</param>
- <returns>
- <para>Asynchronous create request for an AssetBundle. Use AssetBundleCreateRequest.assetBundle property to get an AssetBundle once it is loaded.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.AssetBundle.Unload(System.Boolean)">
- <summary>
- <para>Unloads all assets in the bundle.</para>
- </summary>
- <param name="unloadAllLoadedObjects"></param>
- </member>
- <member name="M:UnityEngine.AssetBundle.UnloadAllAssetBundles(System.Boolean)">
- <summary>
- <para>Unloads all currently loaded Asset Bundles.</para>
- </summary>
- <param name="unloadAllObjects">Determines whether the current instances of objects loaded from Asset Bundles will also be unloaded.</param>
- </member>
- <member name="T:UnityEngine.AssetBundleCreateRequest">
- <summary>
- <para>Asynchronous create request for an AssetBundle.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AssetBundleCreateRequest.assetBundle">
- <summary>
- <para>Asset object being loaded (Read Only).</para>
- </summary>
- </member>
- <member name="T:UnityEngine.AssetBundleManifest">
- <summary>
- <para>Manifest for all the AssetBundles in the build.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.AssetBundleManifest.GetAllAssetBundles">
- <summary>
- <para>Get all the AssetBundles in the manifest.</para>
- </summary>
- <returns>
- <para>An array of asset bundle names.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.AssetBundleManifest.GetAllAssetBundlesWithVariant">
- <summary>
- <para>Get all the AssetBundles with variant in the manifest.</para>
- </summary>
- <returns>
- <para>An array of asset bundle names.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.AssetBundleManifest.GetAllDependencies(System.String)">
- <summary>
- <para>Get all the dependent AssetBundles for the given AssetBundle.</para>
- </summary>
- <param name="assetBundleName">Name of the asset bundle.</param>
- </member>
- <member name="M:UnityEngine.AssetBundleManifest.GetAssetBundleHash(System.String)">
- <summary>
- <para>Get the hash for the given AssetBundle.</para>
- </summary>
- <param name="assetBundleName">Name of the asset bundle.</param>
- <returns>
- <para>The 128-bit hash for the asset bundle.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.AssetBundleManifest.GetDirectDependencies(System.String)">
- <summary>
- <para>Get the direct dependent AssetBundles for the given AssetBundle.</para>
- </summary>
- <param name="assetBundleName">Name of the asset bundle.</param>
- <returns>
- <para>Array of asset bundle names this asset bundle depends on.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.AssetBundleRequest">
- <summary>
- <para>Asynchronous load request from an AssetBundle.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AssetBundleRequest.allAssets">
- <summary>
- <para>Asset objects with sub assets being loaded. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AssetBundleRequest.asset">
- <summary>
- <para>Asset object being loaded (Read Only).</para>
- </summary>
- </member>
- <member name="A:UnityEngine.AssetBundleModule">
- <summary>
- <para>The AssetBundle module implements the AssetBundle class and related APIs to load data from AssetBundles.</para>
- </summary>
- </member>
- </members>
-</doc>
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.AudioModule.dll b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.AudioModule.dll
deleted file mode 100644
index 2551d0b..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.AudioModule.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.AudioModule.xml b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.AudioModule.xml
deleted file mode 100644
index de22e53..0000000
--- a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.AudioModule.xml
+++ /dev/null
@@ -1,1955 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
-<doc>
- <members>
- <assembly>
- <name>UnityEngine.AudioModule</name>
- </assembly>
- <member name="T:UnityEngine.Audio.AudioClipPlayable">
- <summary>
- <para>An implementation of IPlayable that controls an AudioClip.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Audio.AudioClipPlayable.Create(UnityEngine.Playables.PlayableGraph,UnityEngine.AudioClip,System.Boolean)">
- <summary>
- <para>Creates an AudioClipPlayable in the PlayableGraph.</para>
- </summary>
- <param name="graph">The PlayableGraph that will contain the new AnimationLayerMixerPlayable.</param>
- <param name="clip">The AudioClip that will be added in the PlayableGraph.</param>
- <param name="looping">True if the clip should loop, false otherwise.</param>
- <returns>
- <para>A AudioClipPlayable linked to the PlayableGraph.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.Audio.AudioMixer">
- <summary>
- <para>AudioMixer asset.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Audio.AudioMixer.outputAudioMixerGroup">
- <summary>
- <para>Routing target.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Audio.AudioMixer.updateMode">
- <summary>
- <para>How time should progress for this AudioMixer. Used during Snapshot transitions.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Audio.AudioMixer.ClearFloat(System.String)">
- <summary>
- <para>Resets an exposed parameter to its initial value.</para>
- </summary>
- <param name="name">Exposed parameter.</param>
- <returns>
- <para>Returns false if the parameter was not found or could not be set.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Audio.AudioMixer.FindMatchingGroups(System.String)">
- <summary>
- <para>Connected groups in the mixer form a path from the mixer's master group to the leaves. This path has the format "Master GroupChild of Master GroupGrandchild of Master Group", so to find the grandchild group in this example, a valid search string would be for instance "randchi" which would return exactly one group while "hild" or "oup/" would return 2 different groups.</para>
- </summary>
- <param name="subPath">Sub-string of the paths to be matched.</param>
- <returns>
- <para>Groups in the mixer whose paths match the specified search path.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Audio.AudioMixer.FindSnapshot(System.String)">
- <summary>
- <para>The name must be an exact match.</para>
- </summary>
- <param name="name">Name of snapshot object to be returned.</param>
- <returns>
- <para>The snapshot identified by the name.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Audio.AudioMixer.GetFloat(System.String,System.Single&amp;)">
- <summary>
- <para>Returns the value of the exposed parameter specified. If the parameter doesn't exist the function returns false. Prior to calling SetFloat and after ClearFloat has been called on this parameter the value returned will be that of the current snapshot or snapshot transition.</para>
- </summary>
- <param name="name">Name of exposed parameter.</param>
- <param name="value">Return value of exposed parameter.</param>
- <returns>
- <para>Returns false if the exposed parameter specified doesn't exist.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Audio.AudioMixer.SetFloat(System.String,System.Single)">
- <summary>
- <para>Sets the value of the exposed parameter specified. When a parameter is exposed, it is not controlled by mixer snapshots and can therefore only be changed via this function.</para>
- </summary>
- <param name="name">Name of exposed parameter.</param>
- <param name="value">New value of exposed parameter.</param>
- <returns>
- <para>Returns false if the exposed parameter was not found or snapshots are currently being edited.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Audio.AudioMixer.TransitionToSnapshots(UnityEngine.Audio.AudioMixerSnapshot[],System.Single[],System.Single)">
- <summary>
- <para>Transitions to a weighted mixture of the snapshots specified. This can be used for games that specify the game state as a continuum between states or for interpolating snapshots from a triangulated map location.</para>
- </summary>
- <param name="snapshots">The set of snapshots to be mixed.</param>
- <param name="weights">The mix weights for the snapshots specified.</param>
- <param name="timeToReach">Relative time after which the mixture should be reached from any current state.</param>
- </member>
- <member name="T:UnityEngine.Audio.AudioMixerGroup">
- <summary>
- <para>Object representing a group in the mixer.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Audio.AudioMixerPlayable">
- <summary>
- <para>An implementation of IPlayable that controls an audio mixer.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Audio.AudioMixerSnapshot">
- <summary>
- <para>Object representing a snapshot in the mixer.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Audio.AudioMixerSnapshot.TransitionTo(System.Single)">
- <summary>
- <para>Performs an interpolated transition towards this snapshot over the time interval specified.</para>
- </summary>
- <param name="timeToReach">Relative time after which this snapshot should be reached from any current state.</param>
- </member>
- <member name="T:UnityEngine.Audio.AudioMixerUpdateMode">
- <summary>
- <para>The mode in which an AudioMixer should update its time.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Audio.AudioMixerUpdateMode.Normal">
- <summary>
- <para>Update the AudioMixer with scaled game time.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Audio.AudioMixerUpdateMode.UnscaledTime">
- <summary>
- <para>Update the AudioMixer with unscaled realtime.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Audio.AudioPlayableBinding">
- <summary>
- <para>A PlayableBinding that contains information representing an AudioPlayableOutput.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Audio.AudioPlayableBinding.Create(System.String,UnityEngine.Object)">
- <summary>
- <para>Creates a PlayableBinding that contains information representing an AudioPlayableOutput.</para>
- </summary>
- <param name="key">A reference to a UnityEngine.Object that acts as a key for this binding.</param>
- <param name="name">The name of the AudioPlayableOutput.</param>
- <returns>
- <para>Returns a PlayableBinding that contains information that is used to create an AudioPlayableOutput.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.Audio.AudioPlayableOutput">
- <summary>
- <para>A IPlayableOutput implementation that will be used to play audio.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Audio.AudioPlayableOutput.Create(UnityEngine.Playables.PlayableGraph,System.String,UnityEngine.AudioSource)">
- <summary>
- <para>Creates an AudioPlayableOutput in the PlayableGraph.</para>
- </summary>
- <param name="graph">The PlayableGraph that will contain the AnimationPlayableOutput.</param>
- <param name="name">The name of the output.</param>
- <param name="target">The AudioSource that will play the AudioPlayableOutput source Playable.</param>
- <returns>
- <para>A new AudioPlayableOutput attached to the PlayableGraph.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Audio.AudioPlayableOutput.GetEvaluateOnSeek">
- <summary>
- <para>Gets the state of output playback when seeking.</para>
- </summary>
- <returns>
- <para>Returns true if the output plays when seeking. Returns false otherwise.</para>
- </returns>
- </member>
- <member name="P:UnityEngine.Audio.AudioPlayableOutput.Null">
- <summary>
- <para>Returns an invalid AudioPlayableOutput.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Audio.AudioPlayableOutput.SetEvaluateOnSeek(System.Boolean)">
- <summary>
- <para>Controls whether the output should play when seeking.</para>
- </summary>
- <param name="value">Set to true to play the output when seeking. Set to false to disable audio scrubbing on this output. Default is true.</param>
- </member>
- <member name="T:UnityEngine.AudioChorusFilter">
- <summary>
- <para>The Audio Chorus Filter takes an Audio Clip and processes it creating a chorus effect.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioChorusFilter.delay">
- <summary>
- <para>Chorus delay in ms. 0.1 to 100.0. Default = 40.0 ms.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioChorusFilter.depth">
- <summary>
- <para>Chorus modulation depth. 0.0 to 1.0. Default = 0.03.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioChorusFilter.dryMix">
- <summary>
- <para>Volume of original signal to pass to output. 0.0 to 1.0. Default = 0.5.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioChorusFilter.feedback">
- <summary>
- <para>Chorus feedback. Controls how much of the wet signal gets fed back into the chorus buffer. 0.0 to 1.0. Default = 0.0.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioChorusFilter.rate">
- <summary>
- <para>Chorus modulation rate in hz. 0.0 to 20.0. Default = 0.8 hz.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioChorusFilter.wetMix1">
- <summary>
- <para>Volume of 1st chorus tap. 0.0 to 1.0. Default = 0.5.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioChorusFilter.wetMix2">
- <summary>
- <para>Volume of 2nd chorus tap. This tap is 90 degrees out of phase of the first tap. 0.0 to 1.0. Default = 0.5.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioChorusFilter.wetMix3">
- <summary>
- <para>Volume of 3rd chorus tap. This tap is 90 degrees out of phase of the second tap. 0.0 to 1.0. Default = 0.5.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.AudioClip">
- <summary>
- <para>A container for audio data.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioClip.ambisonic">
- <summary>
- <para>Returns true if this audio clip is ambisonic (read-only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioClip.channels">
- <summary>
- <para>The number of channels in the audio clip. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioClip.frequency">
- <summary>
- <para>The sample frequency of the clip in Hertz. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioClip.isReadyToPlay">
- <summary>
- <para>Returns true if the AudioClip is ready to play (read-only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioClip.length">
- <summary>
- <para>The length of the audio clip in seconds. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioClip.loadInBackground">
- <summary>
- <para>Corresponding to the "Load In Background" flag in the inspector, when this flag is set, the loading will happen delayed without blocking the main thread.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioClip.loadState">
- <summary>
- <para>Returns the current load state of the audio data associated with an AudioClip.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioClip.loadType">
- <summary>
- <para>The load type of the clip (read-only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioClip.preloadAudioData">
- <summary>
- <para>Preloads audio data of the clip when the clip asset is loaded. When this flag is off, scripts have to call AudioClip.LoadAudioData() to load the data before the clip can be played. Properties like length, channels and format are available before the audio data has been loaded.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioClip.samples">
- <summary>
- <para>The length of the audio clip in samples. (Read Only)</para>
- </summary>
- </member>
- <member name="M:UnityEngine.AudioClip.Create(System.String,System.Int32,System.Int32,System.Int32,System.Boolean)">
- <summary>
- <para>Creates a user AudioClip with a name and with the given length in samples, channels and frequency.</para>
- </summary>
- <param name="name">Name of clip.</param>
- <param name="lengthSamples">Number of sample frames.</param>
- <param name="channels">Number of channels per frame.</param>
- <param name="frequency">Sample frequency of clip.</param>
- <param name="_3D">Audio clip is played back in 3D.</param>
- <param name="stream">True if clip is streamed, that is if the pcmreadercallback generates data on the fly.</param>
- <param name="pcmreadercallback">This callback is invoked to generate a block of sample data. Non-streamed clips call this only once at creation time while streamed clips call this continuously.</param>
- <param name="pcmsetpositioncallback">This callback is invoked whenever the clip loops or changes playback position.</param>
- <returns>
- <para>A reference to the created AudioClip.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.AudioClip.Create(System.String,System.Int32,System.Int32,System.Int32,System.Boolean,UnityEngine.AudioClip/PCMReaderCallback)">
- <summary>
- <para>Creates a user AudioClip with a name and with the given length in samples, channels and frequency.</para>
- </summary>
- <param name="name">Name of clip.</param>
- <param name="lengthSamples">Number of sample frames.</param>
- <param name="channels">Number of channels per frame.</param>
- <param name="frequency">Sample frequency of clip.</param>
- <param name="_3D">Audio clip is played back in 3D.</param>
- <param name="stream">True if clip is streamed, that is if the pcmreadercallback generates data on the fly.</param>
- <param name="pcmreadercallback">This callback is invoked to generate a block of sample data. Non-streamed clips call this only once at creation time while streamed clips call this continuously.</param>
- <param name="pcmsetpositioncallback">This callback is invoked whenever the clip loops or changes playback position.</param>
- <returns>
- <para>A reference to the created AudioClip.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.AudioClip.Create(System.String,System.Int32,System.Int32,System.Int32,System.Boolean,UnityEngine.AudioClip/PCMReaderCallback,UnityEngine.AudioClip/PCMSetPositionCallback)">
- <summary>
- <para>Creates a user AudioClip with a name and with the given length in samples, channels and frequency.</para>
- </summary>
- <param name="name">Name of clip.</param>
- <param name="lengthSamples">Number of sample frames.</param>
- <param name="channels">Number of channels per frame.</param>
- <param name="frequency">Sample frequency of clip.</param>
- <param name="_3D">Audio clip is played back in 3D.</param>
- <param name="stream">True if clip is streamed, that is if the pcmreadercallback generates data on the fly.</param>
- <param name="pcmreadercallback">This callback is invoked to generate a block of sample data. Non-streamed clips call this only once at creation time while streamed clips call this continuously.</param>
- <param name="pcmsetpositioncallback">This callback is invoked whenever the clip loops or changes playback position.</param>
- <returns>
- <para>A reference to the created AudioClip.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.AudioClip.Create(System.String,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean)">
- <summary>
- <para>Creates a user AudioClip with a name and with the given length in samples, channels and frequency.</para>
- </summary>
- <param name="name">Name of clip.</param>
- <param name="lengthSamples">Number of sample frames.</param>
- <param name="channels">Number of channels per frame.</param>
- <param name="frequency">Sample frequency of clip.</param>
- <param name="_3D">Audio clip is played back in 3D.</param>
- <param name="stream">True if clip is streamed, that is if the pcmreadercallback generates data on the fly.</param>
- <param name="pcmreadercallback">This callback is invoked to generate a block of sample data. Non-streamed clips call this only once at creation time while streamed clips call this continuously.</param>
- <param name="pcmsetpositioncallback">This callback is invoked whenever the clip loops or changes playback position.</param>
- <returns>
- <para>A reference to the created AudioClip.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.AudioClip.Create(System.String,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean,UnityEngine.AudioClip/PCMReaderCallback)">
- <summary>
- <para>Creates a user AudioClip with a name and with the given length in samples, channels and frequency.</para>
- </summary>
- <param name="name">Name of clip.</param>
- <param name="lengthSamples">Number of sample frames.</param>
- <param name="channels">Number of channels per frame.</param>
- <param name="frequency">Sample frequency of clip.</param>
- <param name="_3D">Audio clip is played back in 3D.</param>
- <param name="stream">True if clip is streamed, that is if the pcmreadercallback generates data on the fly.</param>
- <param name="pcmreadercallback">This callback is invoked to generate a block of sample data. Non-streamed clips call this only once at creation time while streamed clips call this continuously.</param>
- <param name="pcmsetpositioncallback">This callback is invoked whenever the clip loops or changes playback position.</param>
- <returns>
- <para>A reference to the created AudioClip.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.AudioClip.Create(System.String,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean,UnityEngine.AudioClip/PCMReaderCallback,UnityEngine.AudioClip/PCMSetPositionCallback)">
- <summary>
- <para>Creates a user AudioClip with a name and with the given length in samples, channels and frequency.</para>
- </summary>
- <param name="name">Name of clip.</param>
- <param name="lengthSamples">Number of sample frames.</param>
- <param name="channels">Number of channels per frame.</param>
- <param name="frequency">Sample frequency of clip.</param>
- <param name="_3D">Audio clip is played back in 3D.</param>
- <param name="stream">True if clip is streamed, that is if the pcmreadercallback generates data on the fly.</param>
- <param name="pcmreadercallback">This callback is invoked to generate a block of sample data. Non-streamed clips call this only once at creation time while streamed clips call this continuously.</param>
- <param name="pcmsetpositioncallback">This callback is invoked whenever the clip loops or changes playback position.</param>
- <returns>
- <para>A reference to the created AudioClip.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.AudioClip.GetData(System.Single[],System.Int32)">
- <summary>
- <para>Fills an array with sample data from the clip.</para>
- </summary>
- <param name="data"></param>
- <param name="offsetSamples"></param>
- </member>
- <member name="M:UnityEngine.AudioClip.LoadAudioData">
- <summary>
- <para>Loads the audio data of a clip. Clips that have "Preload Audio Data" set will load the audio data automatically.</para>
- </summary>
- <returns>
- <para>Returns true if loading succeeded.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.AudioClip.PCMReaderCallback">
- <summary>
- <para>Delegate called each time AudioClip reads data.</para>
- </summary>
- <param name="data">Array of floats containing data read from the clip.</param>
- </member>
- <member name="T:UnityEngine.AudioClip.PCMSetPositionCallback">
- <summary>
- <para>Delegate called each time AudioClip changes read position.</para>
- </summary>
- <param name="position">New position in the audio clip.</param>
- </member>
- <member name="M:UnityEngine.AudioClip.SetData(System.Single[],System.Int32)">
- <summary>
- <para>Set sample data in a clip.</para>
- </summary>
- <param name="data"></param>
- <param name="offsetSamples"></param>
- </member>
- <member name="M:UnityEngine.AudioClip.UnloadAudioData">
- <summary>
- <para>Unloads the audio data associated with the clip. This works only for AudioClips that are based on actual sound file assets.</para>
- </summary>
- <returns>
- <para>Returns false if unloading failed.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.AudioClipLoadType">
- <summary>
- <para>Determines how the audio clip is loaded in.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioClipLoadType.CompressedInMemory">
- <summary>
- <para>The audio data of the clip will be kept in memory in compressed form.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioClipLoadType.DecompressOnLoad">
- <summary>
- <para>The audio data is decompressed when the audio clip is loaded.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioClipLoadType.Streaming">
- <summary>
- <para>Streams audio data from disk.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.AudioCompressionFormat">
- <summary>
- <para>An enum containing different compression types.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioCompressionFormat.AAC">
- <summary>
- <para>AAC Audio Compression.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioCompressionFormat.ADPCM">
- <summary>
- <para>Adaptive differential pulse-code modulation.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioCompressionFormat.ATRAC9">
- <summary>
- <para>Sony proprietary hardware format.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioCompressionFormat.GCADPCM">
- <summary>
- <para>Nintendo ADPCM audio compression format.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioCompressionFormat.HEVAG">
- <summary>
- <para>Sony proprietory hardware codec.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioCompressionFormat.MP3">
- <summary>
- <para>MPEG Audio Layer III.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioCompressionFormat.PCM">
- <summary>
- <para>Uncompressed pulse-code modulation.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioCompressionFormat.VAG">
- <summary>
- <para>Sony proprietary hardware format.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioCompressionFormat.Vorbis">
- <summary>
- <para>Vorbis compression format.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioCompressionFormat.XMA">
- <summary>
- <para>Xbox One proprietary hardware format.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.AudioConfiguration">
- <summary>
- <para>Specifies the current properties or desired properties to be set for the audio system.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioConfiguration.dspBufferSize">
- <summary>
- <para>The length of the DSP buffer in samples determining the latency of sounds by the audio output device.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioConfiguration.numRealVoices">
- <summary>
- <para>The current maximum number of simultaneously audible sounds in the game.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioConfiguration.numVirtualVoices">
- <summary>
- <para>The maximum number of managed sounds in the game. Beyond this limit sounds will simply stop playing.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioConfiguration.sampleRate">
- <summary>
- <para>The current sample rate of the audio output device used.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioConfiguration.speakerMode">
- <summary>
- <para>The current speaker mode used by the audio output device.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.AudioDataLoadState">
- <summary>
- <para>Value describing the current load state of the audio data associated with an AudioClip.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioDataLoadState.Failed">
- <summary>
- <para>Value returned by AudioClip.loadState for an AudioClip that has failed loading its audio data.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioDataLoadState.Loaded">
- <summary>
- <para>Value returned by AudioClip.loadState for an AudioClip that has succeeded loading its audio data.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioDataLoadState.Loading">
- <summary>
- <para>Value returned by AudioClip.loadState for an AudioClip that is currently loading audio data.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioDataLoadState.Unloaded">
- <summary>
- <para>Value returned by AudioClip.loadState for an AudioClip that has no audio data loaded and where loading has not been initiated yet.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.AudioDistortionFilter">
- <summary>
- <para>The Audio Distortion Filter distorts the sound from an AudioSource or sounds reaching the AudioListener.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioDistortionFilter.distortionLevel">
- <summary>
- <para>Distortion value. 0.0 to 1.0. Default = 0.5.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.AudioEchoFilter">
- <summary>
- <para>The Audio Echo Filter repeats a sound after a given Delay, attenuating the repetitions based on the Decay Ratio.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioEchoFilter.decayRatio">
- <summary>
- <para>Echo decay per delay. 0 to 1. 1.0 = No decay, 0.0 = total decay (i.e. simple 1 line delay). Default = 0.5.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioEchoFilter.delay">
- <summary>
- <para>Echo delay in ms. 10 to 5000. Default = 500.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioEchoFilter.dryMix">
- <summary>
- <para>Volume of original signal to pass to output. 0.0 to 1.0. Default = 1.0.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioEchoFilter.wetMix">
- <summary>
- <para>Volume of echo signal to pass to output. 0.0 to 1.0. Default = 1.0.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.AudioHighPassFilter">
- <summary>
- <para>The Audio High Pass Filter passes high frequencies of an AudioSource, and cuts off signals with frequencies lower than the Cutoff Frequency.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioHighPassFilter.cutoffFrequency">
- <summary>
- <para>Highpass cutoff frequency in hz. 10.0 to 22000.0. Default = 5000.0.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioHighPassFilter.highpassResonanceQ">
- <summary>
- <para>Determines how much the filter's self-resonance isdampened.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.AudioListener">
- <summary>
- <para>Representation of a listener in 3D space.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioListener.pause">
- <summary>
- <para>The paused state of the audio system.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioListener.velocityUpdateMode">
- <summary>
- <para>This lets you set whether the Audio Listener should be updated in the fixed or dynamic update.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioListener.volume">
- <summary>
- <para>Controls the game sound volume (0.0 to 1.0).</para>
- </summary>
- </member>
- <member name="M:UnityEngine.AudioListener.GetOutputData(System.Single[],System.Int32)">
- <summary>
- <para>Provides a block of the listener (master)'s output data.</para>
- </summary>
- <param name="samples">The array to populate with audio samples. Its length must be a power of 2.</param>
- <param name="channel">The channel to sample from.</param>
- </member>
- <member name="M:UnityEngine.AudioListener.GetOutputData(System.Int32,System.Int32)">
- <summary>
- <para>Deprecated Version. Returns a block of the listener (master)'s output data.</para>
- </summary>
- <param name="numSamples"></param>
- <param name="channel"></param>
- </member>
- <member name="M:UnityEngine.AudioListener.GetSpectrumData(System.Single[],System.Int32,UnityEngine.FFTWindow)">
- <summary>
- <para>Provides a block of the listener (master)'s spectrum data.</para>
- </summary>
- <param name="samples">The array to populate with audio samples. Its length must be a power of 2.</param>
- <param name="channel">The channel to sample from.</param>
- <param name="window">The FFTWindow type to use when sampling.</param>
- </member>
- <member name="M:UnityEngine.AudioListener.GetSpectrumData(System.Int32,System.Int32,UnityEngine.FFTWindow)">
- <summary>
- <para>Deprecated Version. Returns a block of the listener (master)'s spectrum data.</para>
- </summary>
- <param name="numSamples">Number of values (the length of the samples array). Must be a power of 2. Min = 64. Max = 8192.</param>
- <param name="channel">The channel to sample from.</param>
- <param name="window">The FFTWindow type to use when sampling.</param>
- </member>
- <member name="T:UnityEngine.AudioLowPassFilter">
- <summary>
- <para>The Audio Low Pass Filter passes low frequencies of an AudioSource or all sounds reaching an AudioListener, while removing frequencies higher than the Cutoff Frequency.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioLowPassFilter.customCutoffCurve">
- <summary>
- <para>Returns or sets the current custom frequency cutoff curve.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioLowPassFilter.cutoffFrequency">
- <summary>
- <para>Lowpass cutoff frequency in hz. 10.0 to 22000.0. Default = 5000.0.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioLowPassFilter.lowpassResonanceQ">
- <summary>
- <para>Determines how much the filter's self-resonance is dampened.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.AudioRenderer">
- <summary>
- <para>Allow recording the main output of the game or specific groups in the AudioMixer.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.AudioRenderer.GetSampleCountForCaptureFrame">
- <summary>
- <para>Returns the number of samples available since the last time AudioRenderer.Render was called. This is dependent on the frame capture rate.</para>
- </summary>
- <returns>
- <para>Number of samples available since last recorded frame.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.AudioRenderer.Render(Unity.Collections.NativeArray`1&lt;System.Single&gt;)">
- <summary>
- <para>Performs the recording of the main output as well as any optional mixer groups that have been registered via AudioRenderer.AddMixerGroupSink.</para>
- </summary>
- <param name="buffer">The buffer to write the sample data to.</param>
- <returns>
- <para>True if the recording succeeded.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.AudioRenderer.Start">
- <summary>
- <para>Enters audio recording mode. After this Unity will output silence until AudioRenderer.Stop is called.</para>
- </summary>
- <returns>
- <para>True if the engine was switched into output recording mode. False if it is already recording.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.AudioRenderer.Stop">
- <summary>
- <para>Exits audio recording mode. After this audio output will be audible again.</para>
- </summary>
- <returns>
- <para>True if the engine was recording when this function was called.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.AudioReverbFilter">
- <summary>
- <para>The Audio Reverb Filter takes an Audio Clip and distorts it to create a custom reverb effect.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioReverbFilter.decayHFRatio">
- <summary>
- <para>Decay HF Ratio : High-frequency to low-frequency decay time ratio. Ranges from 0.1 to 2.0. Default is 0.5.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioReverbFilter.decayTime">
- <summary>
- <para>Reverberation decay time at low-frequencies in seconds. Ranges from 0.1 to 20.0. Default is 1.0.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioReverbFilter.density">
- <summary>
- <para>Reverberation density (modal density) in percent. Ranges from 0.0 to 100.0. Default is 100.0.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioReverbFilter.diffusion">
- <summary>
- <para>Reverberation diffusion (echo density) in percent. Ranges from 0.0 to 100.0. Default is 100.0.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioReverbFilter.dryLevel">
- <summary>
- <para>Mix level of dry signal in output in mB. Ranges from -10000.0 to 0.0. Default is 0.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioReverbFilter.hfReference">
- <summary>
- <para>Reference high frequency in Hz. Ranges from 20.0 to 20000.0. Default is 5000.0.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioReverbFilter.lfReference">
- <summary>
- <para>Reference low-frequency in Hz. Ranges from 20.0 to 1000.0. Default is 250.0.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioReverbFilter.reflectionsDelay">
- <summary>
- <para>Late reverberation level relative to room effect in mB. Ranges from -10000.0 to 2000.0. Default is 0.0.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioReverbFilter.reflectionsLevel">
- <summary>
- <para>Early reflections level relative to room effect in mB. Ranges from -10000.0 to 1000.0. Default is -10000.0.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioReverbFilter.reverbDelay">
- <summary>
- <para>Late reverberation delay time relative to first reflection in seconds. Ranges from 0.0 to 0.1. Default is 0.04.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioReverbFilter.reverbLevel">
- <summary>
- <para>Late reverberation level relative to room effect in mB. Ranges from -10000.0 to 2000.0. Default is 0.0.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioReverbFilter.reverbPreset">
- <summary>
- <para>Set/Get reverb preset properties.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioReverbFilter.room">
- <summary>
- <para>Room effect level at low frequencies in mB. Ranges from -10000.0 to 0.0. Default is 0.0.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioReverbFilter.roomHF">
- <summary>
- <para>Room effect high-frequency level re. low frequency level in mB. Ranges from -10000.0 to 0.0. Default is 0.0.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioReverbFilter.roomLF">
- <summary>
- <para>Room effect low-frequency level in mB. Ranges from -10000.0 to 0.0. Default is 0.0.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.AudioReverbPreset">
- <summary>
- <para>Reverb presets used by the Reverb Zone class and the audio reverb filter.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioReverbPreset.Alley">
- <summary>
- <para>Alley preset.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioReverbPreset.Arena">
- <summary>
- <para>Arena preset.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioReverbPreset.Auditorium">
- <summary>
- <para>Auditorium preset.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioReverbPreset.Bathroom">
- <summary>
- <para>Bathroom preset.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioReverbPreset.CarpetedHallway">
- <summary>
- <para>Carpeted hallway preset.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioReverbPreset.Cave">
- <summary>
- <para>Cave preset.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioReverbPreset.City">
- <summary>
- <para>City preset.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioReverbPreset.Concerthall">
- <summary>
- <para>Concert hall preset.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioReverbPreset.Dizzy">
- <summary>
- <para>Dizzy preset.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioReverbPreset.Drugged">
- <summary>
- <para>Drugged preset.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioReverbPreset.Forest">
- <summary>
- <para>Forest preset.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioReverbPreset.Generic">
- <summary>
- <para>Generic preset.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioReverbPreset.Hallway">
- <summary>
- <para>Hallway preset.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioReverbPreset.Hangar">
- <summary>
- <para>Hangar preset.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioReverbPreset.Livingroom">
- <summary>
- <para>Livingroom preset.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioReverbPreset.Mountains">
- <summary>
- <para>Mountains preset.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioReverbPreset.Off">
- <summary>
- <para>No reverb preset selected.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioReverbPreset.PaddedCell">
- <summary>
- <para>Padded cell preset.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioReverbPreset.ParkingLot">
- <summary>
- <para>Parking Lot preset.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioReverbPreset.Plain">
- <summary>
- <para>Plain preset.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioReverbPreset.Psychotic">
- <summary>
- <para>Psychotic preset.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioReverbPreset.Quarry">
- <summary>
- <para>Quarry preset.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioReverbPreset.Room">
- <summary>
- <para>Room preset.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioReverbPreset.SewerPipe">
- <summary>
- <para>Sewer pipe preset.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioReverbPreset.StoneCorridor">
- <summary>
- <para>Stone corridor preset.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioReverbPreset.Stoneroom">
- <summary>
- <para>Stoneroom preset.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioReverbPreset.Underwater">
- <summary>
- <para>Underwater presset.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioReverbPreset.User">
- <summary>
- <para>User defined preset.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.AudioReverbZone">
- <summary>
- <para>Reverb Zones are used when you want to create location based ambient effects in the scene.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioReverbZone.decayHFRatio">
- <summary>
- <para>High-frequency to mid-frequency decay time ratio.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioReverbZone.decayTime">
- <summary>
- <para>Reverberation decay time at mid frequencies.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioReverbZone.density">
- <summary>
- <para>Value that controls the modal density in the late reverberation decay.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioReverbZone.diffusion">
- <summary>
- <para>Value that controls the echo density in the late reverberation decay.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioReverbZone.maxDistance">
- <summary>
- <para>The distance from the centerpoint that the reverb will not have any effect. Default = 15.0.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioReverbZone.minDistance">
- <summary>
- <para>The distance from the centerpoint that the reverb will have full effect at. Default = 10.0.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioReverbZone.reflections">
- <summary>
- <para>Early reflections level relative to room effect.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioReverbZone.reflectionsDelay">
- <summary>
- <para>Initial reflection delay time.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioReverbZone.reverb">
- <summary>
- <para>Late reverberation level relative to room effect.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioReverbZone.reverbDelay">
- <summary>
- <para>Late reverberation delay time relative to initial reflection.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioReverbZone.reverbPreset">
- <summary>
- <para>Set/Get reverb preset properties.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioReverbZone.room">
- <summary>
- <para>Room effect level (at mid frequencies).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioReverbZone.roomHF">
- <summary>
- <para>Relative room effect level at high frequencies.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioReverbZone.roomLF">
- <summary>
- <para>Relative room effect level at low frequencies.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioReverbZone.roomRolloffFactor">
- <summary>
- <para>Like rolloffscale in global settings, but for reverb room size effect.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioReverbZone.HFReference">
- <summary>
- <para>Reference high frequency (hz).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioReverbZone.LFReference">
- <summary>
- <para>Reference low frequency (hz).</para>
- </summary>
- </member>
- <member name="T:UnityEngine.AudioRolloffMode">
- <summary>
- <para>Rolloff modes that a 3D sound can have in an audio source.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioRolloffMode.Custom">
- <summary>
- <para>Use this when you want to use a custom rolloff.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioRolloffMode.Linear">
- <summary>
- <para>Use this mode when you want to lower the volume of your sound over the distance.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioRolloffMode.Logarithmic">
- <summary>
- <para>Use this mode when you want a real-world rolloff.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.AudioSettings">
- <summary>
- <para>Controls the global audio settings from script.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioSettings.driverCapabilities">
- <summary>
- <para>Returns the speaker mode capability of the current audio driver. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioSettings.dspTime">
- <summary>
- <para>Returns the current time of the audio system.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioSettings.outputSampleRate">
- <summary>
- <para>Get the mixer's current output rate.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioSettings.speakerMode">
- <summary>
- <para>Gets the current speaker mode. Default is 2 channel stereo.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.AudioSettings.AudioConfigurationChangeHandler">
- <summary>
- <para>A delegate called whenever the global audio settings are changed, either by AudioSettings.Reset or by an external device change such as the OS control panel changing the sample rate or because the default output device was changed, for example when plugging in an HDMI monitor or a USB headset.</para>
- </summary>
- <param name="deviceWasChanged">True if the change was caused by an device change.</param>
- </member>
- <member name="M:UnityEngine.AudioSettings.GetConfiguration">
- <summary>
- <para>Returns the current configuration of the audio device and system. The values in the struct may then be modified and reapplied via AudioSettings.Reset.</para>
- </summary>
- <returns>
- <para>The new configuration to be applied.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.AudioSettings.GetDSPBufferSize(System.Int32&amp;,System.Int32&amp;)">
- <summary>
- <para>Get the mixer's buffer size in samples.</para>
- </summary>
- <param name="bufferLength">Is the length of each buffer in the ringbuffer.</param>
- <param name="numBuffers">Is number of buffers.</param>
- </member>
- <member name="M:UnityEngine.AudioSettings.GetSpatializerPluginName">
- <summary>
- <para>Returns the name of the spatializer selected on the currently-running platform.</para>
- </summary>
- <returns>
- <para>The spatializer plugin name.</para>
- </returns>
- </member>
- <member name="?:UnityEngine.AudioSettings.OnAudioConfigurationChanged(UnityEngine.AudioSettings/AudioConfigurationChangeHandler)">
- <summary>
- <para>A delegate called whenever the global audio settings are changed, either by AudioSettings.Reset or by an external factor such as the OS control panel changing the sample rate or because the default output device was changed, for example when plugging in an HDMI monitor or a USB headset.</para>
- </summary>
- <param name="value">True if the change was caused by an device change.</param>
- </member>
- <member name="M:UnityEngine.AudioSettings.Reset(UnityEngine.AudioConfiguration)">
- <summary>
- <para>Performs a change of the device configuration. In response to this the AudioSettings.OnAudioConfigurationChanged delegate is invoked with the argument deviceWasChanged=false. It cannot be guaranteed that the exact settings specified can be used, but the an attempt is made to use the closest match supported by the system.</para>
- </summary>
- <param name="config">The new configuration to be used.</param>
- <returns>
- <para>True if all settings could be successfully applied.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.AudioSource">
- <summary>
- <para>A representation of audio sources in 3D.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioSource.bypassEffects">
- <summary>
- <para>Bypass effects (Applied from filter components or global listener filters).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioSource.bypassListenerEffects">
- <summary>
- <para>When set global effects on the AudioListener will not be applied to the audio signal generated by the AudioSource. Does not apply if the AudioSource is playing into a mixer group.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioSource.bypassReverbZones">
- <summary>
- <para>When set doesn't route the signal from an AudioSource into the global reverb associated with reverb zones.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioSource.clip">
- <summary>
- <para>The default AudioClip to play.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioSource.dopplerLevel">
- <summary>
- <para>Sets the Doppler scale for this AudioSource.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioSource.ignoreListenerPause">
- <summary>
- <para>Allows AudioSource to play even though AudioListener.pause is set to true. This is useful for the menu element sounds or background music in pause menus.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioSource.ignoreListenerVolume">
- <summary>
- <para>This makes the audio source not take into account the volume of the audio listener.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioSource.isPlaying">
- <summary>
- <para>Is the clip playing right now (Read Only)?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioSource.isVirtual">
- <summary>
- <para>True if all sounds played by the AudioSource (main sound started by Play() or playOnAwake as well as one-shots) are culled by the audio system.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioSource.loop">
- <summary>
- <para>Is the audio clip looping?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioSource.maxDistance">
- <summary>
- <para>(Logarithmic rolloff) MaxDistance is the distance a sound stops attenuating at.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioSource.minDistance">
- <summary>
- <para>Within the Min distance the AudioSource will cease to grow louder in volume.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioSource.mute">
- <summary>
- <para>Un- / Mutes the AudioSource. Mute sets the volume=0, Un-Mute restore the original volume.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioSource.outputAudioMixerGroup">
- <summary>
- <para>The target group to which the AudioSource should route its signal.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioSource.panStereo">
- <summary>
- <para>Pans a playing sound in a stereo way (left or right). This only applies to sounds that are Mono or Stereo.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioSource.pitch">
- <summary>
- <para>The pitch of the audio source.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioSource.playOnAwake">
- <summary>
- <para>If set to true, the audio source will automatically start playing on awake.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioSource.priority">
- <summary>
- <para>Sets the priority of the AudioSource.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioSource.reverbZoneMix">
- <summary>
- <para>The amount by which the signal from the AudioSource will be mixed into the global reverb associated with the Reverb Zones.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioSource.rolloffMode">
- <summary>
- <para>Sets/Gets how the AudioSource attenuates over distance.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioSource.spatialBlend">
- <summary>
- <para>Sets how much this AudioSource is affected by 3D spatialisation calculations (attenuation, doppler etc). 0.0 makes the sound full 2D, 1.0 makes it full 3D.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioSource.spatialize">
- <summary>
- <para>Enables or disables spatialization.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioSource.spatializePostEffects">
- <summary>
- <para>Determines if the spatializer effect is inserted before or after the effect filters.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioSource.spread">
- <summary>
- <para>Sets the spread angle (in degrees) of a 3d stereo or multichannel sound in speaker space.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioSource.time">
- <summary>
- <para>Playback position in seconds.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioSource.timeSamples">
- <summary>
- <para>Playback position in PCM samples.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioSource.velocityUpdateMode">
- <summary>
- <para>Whether the Audio Source should be updated in the fixed or dynamic update.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AudioSource.volume">
- <summary>
- <para>The volume of the audio source (0.0 to 1.0).</para>
- </summary>
- </member>
- <member name="M:UnityEngine.AudioSource.GetAmbisonicDecoderFloat(System.Int32,System.Single&amp;)">
- <summary>
- <para>Reads a user-defined parameter of a custom ambisonic decoder effect that is attached to an AudioSource.</para>
- </summary>
- <param name="index">Zero-based index of user-defined parameter to be read.</param>
- <param name="value">Return value of the user-defined parameter that is read.</param>
- <returns>
- <para>True, if the parameter could be read.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.AudioSource.GetCustomCurve(UnityEngine.AudioSourceCurveType)">
- <summary>
- <para>Get the current custom curve for the given AudioSourceCurveType.</para>
- </summary>
- <param name="type">The curve type to get.</param>
- <returns>
- <para>The custom AnimationCurve corresponding to the given curve type.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.AudioSource.GetOutputData(System.Single[],System.Int32)">
- <summary>
- <para>Provides a block of the currently playing source's output data.</para>
- </summary>
- <param name="samples">The array to populate with audio samples. Its length must be a power of 2.</param>
- <param name="channel">The channel to sample from.</param>
- </member>
- <member name="M:UnityEngine.AudioSource.GetOutputData(System.Int32,System.Int32)">
- <summary>
- <para>Deprecated Version. Returns a block of the currently playing source's output data.</para>
- </summary>
- <param name="numSamples"></param>
- <param name="channel"></param>
- </member>
- <member name="M:UnityEngine.AudioSource.GetSpatializerFloat(System.Int32,System.Single&amp;)">
- <summary>
- <para>Reads a user-defined parameter of a custom spatializer effect that is attached to an AudioSource.</para>
- </summary>
- <param name="index">Zero-based index of user-defined parameter to be read.</param>
- <param name="value">Return value of the user-defined parameter that is read.</param>
- <returns>
- <para>True, if the parameter could be read.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.AudioSource.GetSpectrumData(System.Single[],System.Int32,UnityEngine.FFTWindow)">
- <summary>
- <para>Provides a block of the currently playing audio source's spectrum data.</para>
- </summary>
- <param name="samples">The array to populate with audio samples. Its length must be a power of 2.</param>
- <param name="channel">The channel to sample from.</param>
- <param name="window">The FFTWindow type to use when sampling.</param>
- </member>
- <member name="M:UnityEngine.AudioSource.GetSpectrumData(System.Int32,System.Int32,UnityEngine.FFTWindow)">
- <summary>
- <para>Deprecated Version. Returns a block of the currently playing source's spectrum data.</para>
- </summary>
- <param name="numSamples">The number of samples to retrieve. Must be a power of 2.</param>
- <param name="channel">The channel to sample from.</param>
- <param name="window">The FFTWindow type to use when sampling.</param>
- </member>
- <member name="M:UnityEngine.AudioSource.Pause">
- <summary>
- <para>Pauses playing the clip.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.AudioSource.Play()">
- <summary>
- <para>Plays the clip with an optional certain delay.</para>
- </summary>
- <param name="delay">Delay in number of samples, assuming a 44100Hz sample rate (meaning that Play(44100) will delay the playing by exactly 1 sec).</param>
- </member>
- <member name="M:UnityEngine.AudioSource.Play(System.UInt64)">
- <summary>
- <para>Plays the clip with an optional certain delay.</para>
- </summary>
- <param name="delay">Delay in number of samples, assuming a 44100Hz sample rate (meaning that Play(44100) will delay the playing by exactly 1 sec).</param>
- </member>
- <member name="M:UnityEngine.AudioSource.PlayClipAtPoint(UnityEngine.AudioClip,UnityEngine.Vector3)">
- <summary>
- <para>Plays an AudioClip at a given position in world space.</para>
- </summary>
- <param name="clip">Audio data to play.</param>
- <param name="position">Position in world space from which sound originates.</param>
- <param name="volume">Playback volume.</param>
- </member>
- <member name="M:UnityEngine.AudioSource.PlayClipAtPoint(UnityEngine.AudioClip,UnityEngine.Vector3,System.Single)">
- <summary>
- <para>Plays an AudioClip at a given position in world space.</para>
- </summary>
- <param name="clip">Audio data to play.</param>
- <param name="position">Position in world space from which sound originates.</param>
- <param name="volume">Playback volume.</param>
- </member>
- <member name="M:UnityEngine.AudioSource.PlayDelayed(System.Single)">
- <summary>
- <para>Plays the clip with a delay specified in seconds. Users are advised to use this function instead of the old Play(delay) function that took a delay specified in samples relative to a reference rate of 44.1 kHz as an argument.</para>
- </summary>
- <param name="delay">Delay time specified in seconds.</param>
- </member>
- <member name="M:UnityEngine.AudioSource.PlayOneShot(UnityEngine.AudioClip)">
- <summary>
- <para>Plays an AudioClip, and scales the AudioSource volume by volumeScale.</para>
- </summary>
- <param name="clip">The clip being played.</param>
- <param name="volumeScale">The scale of the volume (0-1).</param>
- </member>
- <member name="M:UnityEngine.AudioSource.PlayOneShot(UnityEngine.AudioClip,System.Single)">
- <summary>
- <para>Plays an AudioClip, and scales the AudioSource volume by volumeScale.</para>
- </summary>
- <param name="clip">The clip being played.</param>
- <param name="volumeScale">The scale of the volume (0-1).</param>
- </member>
- <member name="M:UnityEngine.AudioSource.PlayScheduled(System.Double)">
- <summary>
- <para>Plays the clip at a specific time on the absolute time-line that AudioSettings.dspTime reads from.</para>
- </summary>
- <param name="time">Time in seconds on the absolute time-line that AudioSettings.dspTime refers to for when the sound should start playing.</param>
- </member>
- <member name="M:UnityEngine.AudioSource.SetAmbisonicDecoderFloat(System.Int32,System.Single)">
- <summary>
- <para>Sets a user-defined parameter of a custom ambisonic decoder effect that is attached to an AudioSource.</para>
- </summary>
- <param name="index">Zero-based index of user-defined parameter to be set.</param>
- <param name="value">New value of the user-defined parameter.</param>
- <returns>
- <para>True, if the parameter could be set.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.AudioSource.SetCustomCurve(UnityEngine.AudioSourceCurveType,UnityEngine.AnimationCurve)">
- <summary>
- <para>Set the custom curve for the given AudioSourceCurveType.</para>
- </summary>
- <param name="type">The curve type that should be set.</param>
- <param name="curve">The curve that should be applied to the given curve type.</param>
- </member>
- <member name="M:UnityEngine.AudioSource.SetScheduledEndTime(System.Double)">
- <summary>
- <para>Changes the time at which a sound that has already been scheduled to play will end. Notice that depending on the timing not all rescheduling requests can be fulfilled.</para>
- </summary>
- <param name="time">Time in seconds.</param>
- </member>
- <member name="M:UnityEngine.AudioSource.SetScheduledStartTime(System.Double)">
- <summary>
- <para>Changes the time at which a sound that has already been scheduled to play will start.</para>
- </summary>
- <param name="time">Time in seconds.</param>
- </member>
- <member name="M:UnityEngine.AudioSource.SetSpatializerFloat(System.Int32,System.Single)">
- <summary>
- <para>Sets a user-defined parameter of a custom spatializer effect that is attached to an AudioSource.</para>
- </summary>
- <param name="index">Zero-based index of user-defined parameter to be set.</param>
- <param name="value">New value of the user-defined parameter.</param>
- <returns>
- <para>True, if the parameter could be set.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.AudioSource.Stop">
- <summary>
- <para>Stops playing the clip.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.AudioSource.UnPause">
- <summary>
- <para>Unpause the paused playback of this AudioSource.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.AudioSourceCurveType">
- <summary>
- <para>This defines the curve type of the different custom curves that can be queried and set within the AudioSource.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioSourceCurveType.CustomRolloff">
- <summary>
- <para>Custom Volume Rolloff.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioSourceCurveType.ReverbZoneMix">
- <summary>
- <para>Reverb Zone Mix.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioSourceCurveType.SpatialBlend">
- <summary>
- <para>The Spatial Blend.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioSourceCurveType.Spread">
- <summary>
- <para>The 3D Spread.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.AudioSpeakerMode">
- <summary>
- <para>These are speaker types defined for use with AudioSettings.speakerMode.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioSpeakerMode.Mode5point1">
- <summary>
- <para>Channel count is set to 6. 5.1 speaker setup. This includes front left, front right, center, rear left, rear right and a subwoofer.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioSpeakerMode.Mode7point1">
- <summary>
- <para>Channel count is set to 8. 7.1 speaker setup. This includes front left, front right, center, rear left, rear right, side left, side right and a subwoofer.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioSpeakerMode.Mono">
- <summary>
- <para>Channel count is set to 1. The speakers are monaural.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioSpeakerMode.Prologic">
- <summary>
- <para>Channel count is set to 2. Stereo output, but data is encoded in a way that is picked up by a Prologic/Prologic2 decoder and split into a 5.1 speaker setup.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioSpeakerMode.Quad">
- <summary>
- <para>Channel count is set to 4. 4 speaker setup. This includes front left, front right, rear left, rear right.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioSpeakerMode.Raw">
- <summary>
- <para>Channel count is unaffected.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioSpeakerMode.Stereo">
- <summary>
- <para>Channel count is set to 2. The speakers are stereo. This is the editor default.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioSpeakerMode.Surround">
- <summary>
- <para>Channel count is set to 5. 5 speaker setup. This includes front left, front right, center, rear left, rear right.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.AudioVelocityUpdateMode">
- <summary>
- <para>Describes when an AudioSource or AudioListener is updated.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioVelocityUpdateMode.Auto">
- <summary>
- <para>Updates the source or listener in the fixed update loop if it is attached to a Rigidbody, dynamic otherwise.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioVelocityUpdateMode.Dynamic">
- <summary>
- <para>Updates the source or listener in the dynamic update loop.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioVelocityUpdateMode.Fixed">
- <summary>
- <para>Updates the source or listener in the fixed update loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.Audio.AudioSampleProvider">
- <summary>
- <para>Provides access to the audio samples generated by Unity objects such as VideoPlayer.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Audio.AudioSampleProvider.availableSampleFrameCount">
- <summary>
- <para>Number of sample frames available for consuming with Experimental.Audio.AudioSampleProvider.ConsumeSampleFrames.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Audio.AudioSampleProvider.channelCount">
- <summary>
- <para>The number of audio channels per sample frame.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Audio.AudioSampleProvider.consumeSampleFramesNativeFunction">
- <summary>
- <para>Pointer to the native function that provides access to audio sample frames.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Audio.AudioSampleProvider.enableSampleFramesAvailableEvents">
- <summary>
- <para>Enables the Experimental.Audio.AudioSampleProvider.sampleFramesAvailable events.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Audio.AudioSampleProvider.enableSilencePadding">
- <summary>
- <para>If true, buffers produced by ConsumeSampleFrames will get padded when silence if there are less available than asked for. Otherwise, the extra sample frames in the buffer will be left unchanged.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Audio.AudioSampleProvider.freeSampleFrameCount">
- <summary>
- <para>Number of sample frames that can still be written to by the sample producer before overflowing.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Audio.AudioSampleProvider.freeSampleFrameCountLowThreshold">
- <summary>
- <para>Then the free sample count falls below this threshold, the Experimental.Audio.AudioSampleProvider.sampleFramesAvailable event and associated native is emitted.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Audio.AudioSampleProvider.id">
- <summary>
- <para>Unique identifier for this instance.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Audio.AudioSampleProvider.maxSampleFrameCount">
- <summary>
- <para>The maximum number of sample frames that can be accumulated inside the internal buffer before an overflow event is emitted.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Audio.AudioSampleProvider.owner">
- <summary>
- <para>Object where this provider came from.</para>
- </summary>
- </member>
- <member name="?:UnityEngine.Experimental.Audio.AudioSampleProvider.sampleFramesAvailable(UnityEngine.Experimental.Audio.AudioSampleProvider/SampleFramesHandler)">
- <summary>
- <para>Invoked when the number of available sample frames goes beyond the threshold set with Experimental.Audio.AudioSampleProvider.freeSampleFrameCountLowThreshold.</para>
- </summary>
- <param name="value">Number of available sample frames.</param>
- </member>
- <member name="?:UnityEngine.Experimental.Audio.AudioSampleProvider.sampleFramesOverflow(UnityEngine.Experimental.Audio.AudioSampleProvider/SampleFramesHandler)">
- <summary>
- <para>Invoked when the number of available sample frames goes beyond the maximum that fits in the internal buffer.</para>
- </summary>
- <param name="value">The number of sample frames that were dropped due to the overflow.</param>
- </member>
- <member name="P:UnityEngine.Experimental.Audio.AudioSampleProvider.sampleRate">
- <summary>
- <para>The expected playback rate for the sample frames produced by this class.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Audio.AudioSampleProvider.trackIndex">
- <summary>
- <para>Index of the track in the object that created this provider.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Audio.AudioSampleProvider.valid">
- <summary>
- <para>True if the object is valid.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.Audio.AudioSampleProvider.ClearSampleFramesAvailableNativeHandler">
- <summary>
- <para>Clear the native handler set with Experimental.Audio.AudioSampleProvider.SetSampleFramesAvailableNativeHandler.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.Audio.AudioSampleProvider.ClearSampleFramesOverflowNativeHandler">
- <summary>
- <para>Clear the native handler set with Experimental.Audio.AudioSampleProvider.SetSampleFramesOverflowNativeHandler.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.Audio.AudioSampleProvider.ConsumeSampleFrames(Unity.Collections.NativeArray`1&lt;System.Single&gt;)">
- <summary>
- <para>Consume sample frames from the internal buffer.</para>
- </summary>
- <param name="sampleFrames">Buffer where the consumed samples will be transferred.</param>
- <returns>
- <para>How many sample frames were written into the buffer passed in.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.Experimental.Audio.AudioSampleProvider.ConsumeSampleFramesNativeFunction">
- <summary>
- <para>Type that represents the native function pointer for consuming sample frames.</para>
- </summary>
- <param name="providerId">Id of the provider. See Experimental.Audio.AudioSampleProvider.id.</param>
- <param name="interleavedSampleFrames">Pointer to the sample frames buffer to fill. The actual C type is float*.</param>
- <param name="sampleFrameCount">Number of sample frames that can be written into interleavedSampleFrames.</param>
- </member>
- <member name="M:UnityEngine.Experimental.Audio.AudioSampleProvider.Dispose">
- <summary>
- <para>Release internal resources. Inherited from IDisposable.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.Audio.AudioSampleProvider.SampleFramesEventNativeFunction">
- <summary>
- <para>Type that represents the native function pointer for handling sample frame events.</para>
- </summary>
- <param name="userData">User data specified when the handler was set. The actual C type is void*.</param>
- <param name="providerId">Id of the provider. See Experimental.Audio.AudioSampleProvider.id.</param>
- <param name="sampleFrameCount">Number of sample frames available or overflowed, depending on event type.</param>
- </member>
- <member name="T:UnityEngine.Experimental.Audio.AudioSampleProvider.SampleFramesHandler">
- <summary>
- <para>Delegate for sample frame events.</para>
- </summary>
- <param name="provider">Provider emitting the event.</param>
- <param name="sampleFrameCount">How many sample frames are available, or were dropped, depending on the event.</param>
- </member>
- <member name="M:UnityEngine.Experimental.Audio.AudioSampleProvider.SetSampleFramesAvailableNativeHandler(UnityEngine.Experimental.Audio.AudioSampleProvider/SampleFramesEventNativeFunction,System.IntPtr)">
- <summary>
- <para>Set the native event handler for events emitted when the number of available sample frames crosses the threshold.</para>
- </summary>
- <param name="handler">Pointer to the function to invoke when the event is emitted.</param>
- <param name="userData">User data to be passed to the handler when invoked. The actual C type is void*.</param>
- </member>
- <member name="M:UnityEngine.Experimental.Audio.AudioSampleProvider.SetSampleFramesOverflowNativeHandler(UnityEngine.Experimental.Audio.AudioSampleProvider/SampleFramesEventNativeFunction,System.IntPtr)">
- <summary>
- <para>Set the native event handler for events emitted when the internal sample frame buffer overflows.</para>
- </summary>
- <param name="handler">Pointer to the function to invoke when the event is emitted.</param>
- <param name="userData">User data to be passed to the handler when invoked. The actual C type is void*.</param>
- </member>
- <member name="T:UnityEngine.FFTWindow">
- <summary>
- <para>Spectrum analysis windowing types.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.FFTWindow.Blackman">
- <summary>
- <para>W[n] = 0.42 - (0.5 * COS(nN) ) + (0.08 * COS(2.0 * nN) ).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.FFTWindow.BlackmanHarris">
- <summary>
- <para>W[n] = 0.35875 - (0.48829 * COS(1.0 * nN)) + (0.14128 * COS(2.0 * nN)) - (0.01168 * COS(3.0 * n/N)).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.FFTWindow.Hamming">
- <summary>
- <para>W[n] = 0.54 - (0.46 * COS(n/N) ).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.FFTWindow.Hanning">
- <summary>
- <para>W[n] = 0.5 * (1.0 - COS(n/N) ).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.FFTWindow.Rectangular">
- <summary>
- <para>W[n] = 1.0.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.FFTWindow.Triangle">
- <summary>
- <para>W[n] = TRI(2n/N).</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Microphone">
- <summary>
- <para>Use this class to record to an AudioClip using a connected microphone.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Microphone.devices">
- <summary>
- <para>A list of available microphone devices, identified by name.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Microphone.End(System.String)">
- <summary>
- <para>Stops recording.</para>
- </summary>
- <param name="deviceName">The name of the device.</param>
- </member>
- <member name="M:UnityEngine.Microphone.GetDeviceCaps(System.String,System.Int32&amp;,System.Int32&amp;)">
- <summary>
- <para>Get the frequency capabilities of a device.</para>
- </summary>
- <param name="deviceName">The name of the device.</param>
- <param name="minFreq">Returns the minimum sampling frequency of the device.</param>
- <param name="maxFreq">Returns the maximum sampling frequency of the device.</param>
- </member>
- <member name="M:UnityEngine.Microphone.GetPosition(System.String)">
- <summary>
- <para>Get the position in samples of the recording.</para>
- </summary>
- <param name="deviceName">The name of the device.</param>
- </member>
- <member name="M:UnityEngine.Microphone.IsRecording(System.String)">
- <summary>
- <para>Query if a device is currently recording.</para>
- </summary>
- <param name="deviceName">The name of the device.</param>
- </member>
- <member name="M:UnityEngine.Microphone.Start(System.String,System.Boolean,System.Int32,System.Int32)">
- <summary>
- <para>Start Recording with device.</para>
- </summary>
- <param name="deviceName">The name of the device.</param>
- <param name="loop">Indicates whether the recording should continue recording if lengthSec is reached, and wrap around and record from the beginning of the AudioClip.</param>
- <param name="lengthSec">Is the length of the AudioClip produced by the recording.</param>
- <param name="frequency">The sample rate of the AudioClip produced by the recording.</param>
- <returns>
- <para>The function returns null if the recording fails to start.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.MovieTexture">
- <summary>
- <para>MovieTexture has been deprecated. Refer to the new movie playback solution VideoPlayer.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.MovieTexture.audioClip">
- <summary>
- <para>MovieTexture has been deprecated. Refer to the new movie playback solution VideoPlayer.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.MovieTexture.duration">
- <summary>
- <para>MovieTexture has been deprecated. Refer to the new movie playback solution VideoPlayer.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.MovieTexture.isPlaying">
- <summary>
- <para>MovieTexture has been deprecated. Refer to the new movie playback solution VideoPlayer.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.MovieTexture.isReadyToPlay">
- <summary>
- <para>MovieTexture has been deprecated. Refer to the new movie playback solution VideoPlayer.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.MovieTexture.loop">
- <summary>
- <para>MovieTexture has been deprecated. Refer to the new movie playback solution VideoPlayer.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.MovieTexture.Pause">
- <summary>
- <para>MovieTexture has been deprecated. Refer to the new movie playback solution VideoPlayer.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.MovieTexture.Play">
- <summary>
- <para>MovieTexture has been deprecated. Refer to the new movie playback solution VideoPlayer.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.MovieTexture.Stop">
- <summary>
- <para>MovieTexture has been deprecated. Refer to the new movie playback solution VideoPlayer.</para>
- </summary>
- </member>
- <member name="A:UnityEngine.AudioModule">
- <summary>
- <para>The Audio module implements Unity's audio system.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.WebCamDevice">
- <summary>
- <para>A structure describing the webcam device.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.WebCamDevice.isFrontFacing">
- <summary>
- <para>True if camera faces the same direction a screen does, false otherwise.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.WebCamDevice.name">
- <summary>
- <para>A human-readable name of the device. Varies across different systems.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.WebCamTexture">
- <summary>
- <para>WebCam Textures are textures onto which the live video input is rendered.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.WebCamTexture.deviceName">
- <summary>
- <para>Set this to specify the name of the device to use.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.WebCamTexture.devices">
- <summary>
- <para>Return a list of available devices.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.WebCamTexture.didUpdateThisFrame">
- <summary>
- <para>Did the video buffer update this frame?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.WebCamTexture.isPlaying">
- <summary>
- <para>Returns if the camera is currently playing.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.WebCamTexture.requestedFPS">
- <summary>
- <para>Set the requested frame rate of the camera device (in frames per second).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.WebCamTexture.requestedHeight">
- <summary>
- <para>Set the requested height of the camera device.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.WebCamTexture.requestedWidth">
- <summary>
- <para>Set the requested width of the camera device.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.WebCamTexture.videoRotationAngle">
- <summary>
- <para>Returns an clockwise angle (in degrees), which can be used to rotate a polygon so camera contents are shown in correct orientation.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.WebCamTexture.videoVerticallyMirrored">
- <summary>
- <para>Returns if the texture image is vertically flipped.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.WebCamTexture.#ctor">
- <summary>
- <para>Create a WebCamTexture.</para>
- </summary>
- <param name="deviceName">The name of the video input device to be used.</param>
- <param name="requestedWidth">The requested width of the texture.</param>
- <param name="requestedHeight">The requested height of the texture.</param>
- <param name="requestedFPS">The requested frame rate of the texture.</param>
- </member>
- <member name="M:UnityEngine.WebCamTexture.#ctor(System.Int32,System.Int32,System.Int32)">
- <summary>
- <para>Create a WebCamTexture.</para>
- </summary>
- <param name="deviceName">The name of the video input device to be used.</param>
- <param name="requestedWidth">The requested width of the texture.</param>
- <param name="requestedHeight">The requested height of the texture.</param>
- <param name="requestedFPS">The requested frame rate of the texture.</param>
- </member>
- <member name="M:UnityEngine.WebCamTexture.#ctor(System.Int32,System.Int32)">
- <summary>
- <para>Create a WebCamTexture.</para>
- </summary>
- <param name="deviceName">The name of the video input device to be used.</param>
- <param name="requestedWidth">The requested width of the texture.</param>
- <param name="requestedHeight">The requested height of the texture.</param>
- <param name="requestedFPS">The requested frame rate of the texture.</param>
- </member>
- <member name="M:UnityEngine.WebCamTexture.#ctor(System.String)">
- <summary>
- <para>Create a WebCamTexture.</para>
- </summary>
- <param name="deviceName">The name of the video input device to be used.</param>
- <param name="requestedWidth">The requested width of the texture.</param>
- <param name="requestedHeight">The requested height of the texture.</param>
- <param name="requestedFPS">The requested frame rate of the texture.</param>
- </member>
- <member name="M:UnityEngine.WebCamTexture.#ctor(System.String,System.Int32,System.Int32)">
- <summary>
- <para>Create a WebCamTexture.</para>
- </summary>
- <param name="deviceName">The name of the video input device to be used.</param>
- <param name="requestedWidth">The requested width of the texture.</param>
- <param name="requestedHeight">The requested height of the texture.</param>
- <param name="requestedFPS">The requested frame rate of the texture.</param>
- </member>
- <member name="M:UnityEngine.WebCamTexture.#ctor(System.String,System.Int32,System.Int32,System.Int32)">
- <summary>
- <para>Create a WebCamTexture.</para>
- </summary>
- <param name="deviceName">The name of the video input device to be used.</param>
- <param name="requestedWidth">The requested width of the texture.</param>
- <param name="requestedHeight">The requested height of the texture.</param>
- <param name="requestedFPS">The requested frame rate of the texture.</param>
- </member>
- <member name="M:UnityEngine.WebCamTexture.GetPixel(System.Int32,System.Int32)">
- <summary>
- <para>Returns pixel color at coordinates (x, y).</para>
- </summary>
- <param name="x"></param>
- <param name="y"></param>
- </member>
- <member name="M:UnityEngine.WebCamTexture.GetPixels">
- <summary>
- <para>Get a block of pixel colors.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.WebCamTexture.GetPixels(System.Int32,System.Int32,System.Int32,System.Int32)">
- <summary>
- <para>Get a block of pixel colors.</para>
- </summary>
- <param name="x"></param>
- <param name="y"></param>
- <param name="blockWidth"></param>
- <param name="blockHeight"></param>
- </member>
- <member name="M:UnityEngine.WebCamTexture.GetPixels32()">
- <summary>
- <para>Returns the pixels data in raw format.</para>
- </summary>
- <param name="colors">Optional array to receive pixel data.</param>
- </member>
- <member name="M:UnityEngine.WebCamTexture.GetPixels32(UnityEngine.Color32[])">
- <summary>
- <para>Returns the pixels data in raw format.</para>
- </summary>
- <param name="colors">Optional array to receive pixel data.</param>
- </member>
- <member name="M:UnityEngine.WebCamTexture.Pause">
- <summary>
- <para>Pauses the camera.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.WebCamTexture.Play">
- <summary>
- <para>Starts the camera.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.WebCamTexture.Stop">
- <summary>
- <para>Stops the camera.</para>
- </summary>
- </member>
- </members>
-</doc>
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.BaselibModule.dll b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.BaselibModule.dll
deleted file mode 100644
index a33f01a..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.BaselibModule.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.BaselibModule.xml b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.BaselibModule.xml
deleted file mode 100644
index 81ed4c9..0000000
--- a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.BaselibModule.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
-<doc>
- <members>
- <assembly>
- <name>UnityEngine.BaselibModule</name>
- </assembly>
- <member name="A:UnityEngine.BaselibModule">
- <summary>
- <para>Baselib is a module used internally to provide low-level functionality needed by other modules.</para>
- </summary>
- </member>
- </members>
-</doc>
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.ClothModule.dll b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.ClothModule.dll
deleted file mode 100644
index 404f8b2..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.ClothModule.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.ClothModule.xml b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.ClothModule.xml
deleted file mode 100644
index 18a0a87..0000000
--- a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.ClothModule.xml
+++ /dev/null
@@ -1,230 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
-<doc>
- <members>
- <assembly>
- <name>UnityEngine.ClothModule</name>
- </assembly>
- <member name="T:UnityEngine.Cloth">
- <summary>
- <para>The Cloth class provides an interface to cloth simulation physics.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Cloth.bendingStiffness">
- <summary>
- <para>Bending stiffness of the cloth.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Cloth.capsuleColliders">
- <summary>
- <para>An array of CapsuleColliders which this Cloth instance should collide with.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Cloth.clothSolverFrequency">
- <summary>
- <para>Number of cloth solver iterations per second.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Cloth.coefficients">
- <summary>
- <para>The cloth skinning coefficients used to set up how the cloth interacts with the skinned mesh.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Cloth.collisionMassScale">
- <summary>
- <para>How much to increase mass of colliding particles.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Cloth.damping">
- <summary>
- <para>Damp cloth motion.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Cloth.enableContinuousCollision">
- <summary>
- <para>Enable continuous collision to improve collision stability.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Cloth.enabled">
- <summary>
- <para>Is this cloth enabled?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Cloth.externalAcceleration">
- <summary>
- <para>A constant, external acceleration applied to the cloth.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Cloth.friction">
- <summary>
- <para>The friction of the cloth when colliding with the character.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Cloth.normals">
- <summary>
- <para>The current normals of the cloth object.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Cloth.randomAcceleration">
- <summary>
- <para>A random, external acceleration applied to the cloth.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Cloth.selfCollisionDistance">
- <summary>
- <para>Minimum distance at which two cloth particles repel each other (default: 0.0).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Cloth.selfCollisionStiffness">
- <summary>
- <para>Self-collision stiffness defines how strong the separating impulse should be for colliding particles.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Cloth.sleepThreshold">
- <summary>
- <para>Cloth's sleep threshold.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Cloth.sphereColliders">
- <summary>
- <para>An array of ClothSphereColliderPairs which this Cloth instance should collide with.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Cloth.stiffnessFrequency">
- <summary>
- <para>Sets the stiffness frequency parameter.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Cloth.stretchingStiffness">
- <summary>
- <para>Stretching stiffness of the cloth.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Cloth.useGravity">
- <summary>
- <para>Should gravity affect the cloth simulation?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Cloth.useTethers">
- <summary>
- <para>Use Tether Anchors.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Cloth.useVirtualParticles">
- <summary>
- <para>Add one virtual particle per triangle to improve collision stability.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Cloth.vertices">
- <summary>
- <para>The current vertex positions of the cloth object.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Cloth.worldAccelerationScale">
- <summary>
- <para>How much world-space acceleration of the character will affect cloth vertices.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Cloth.worldVelocityScale">
- <summary>
- <para>How much world-space movement of the character will affect cloth vertices.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Cloth.ClearTransformMotion">
- <summary>
- <para>Clear the pending transform changes from affecting the cloth simulation.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Cloth.GetSelfAndInterCollisionIndices(System.Collections.Generic.List`1&lt;System.UInt32&gt;)">
- <summary>
- <para>Get list of particles to be used for self and inter collision.</para>
- </summary>
- <param name="indices">List to be populated with cloth particle indices that are used for self and/or inter collision.</param>
- </member>
- <member name="M:UnityEngine.Cloth.GetVirtualParticleIndices(System.Collections.Generic.List`1&lt;System.UInt32&gt;)">
- <summary>
- <para>Get list of indices to be used when generating virtual particles.</para>
- </summary>
- <param name="indices">List to be populated with virtual particle indices.</param>
- </member>
- <member name="M:UnityEngine.Cloth.GetVirtualParticleWeights(System.Collections.Generic.List`1&lt;UnityEngine.Vector3&gt;)">
- <summary>
- <para>Get weights to be used when generating virtual particles for cloth.</para>
- </summary>
- <param name="weights">List to populate with virtual particle weights.</param>
- </member>
- <member name="M:UnityEngine.Cloth.SetEnabledFading(System.Boolean,System.Single)">
- <summary>
- <para>Fade the cloth simulation in or out.</para>
- </summary>
- <param name="enabled">Fading enabled or not.</param>
- <param name="interpolationTime"></param>
- </member>
- <member name="M:UnityEngine.Cloth.SetSelfAndInterCollisionIndices(System.Collections.Generic.List`1&lt;System.UInt32&gt;)">
- <summary>
- <para>This allows you to set the cloth indices used for self and inter collision.</para>
- </summary>
- <param name="indices">List of cloth particles indices to use for cloth self and/or inter collision.</param>
- </member>
- <member name="M:UnityEngine.Cloth.SetVirtualParticleIndices(System.Collections.Generic.List`1&lt;System.UInt32&gt;)">
- <summary>
- <para>Set indices to use when generating virtual particles.</para>
- </summary>
- <param name="indices">List of cloth particle indices to use when generating virtual particles.</param>
- </member>
- <member name="M:UnityEngine.Cloth.SetVirtualParticleWeights(System.Collections.Generic.List`1&lt;UnityEngine.Vector3&gt;)">
- <summary>
- <para>Sets weights to be used when generating virtual particles for cloth.</para>
- </summary>
- <param name="weights">List of weights to be used when setting virutal particles for cloth.</param>
- </member>
- <member name="T:UnityEngine.ClothSkinningCoefficient">
- <summary>
- <para>The ClothSkinningCoefficient struct is used to set up how a Cloth component is allowed to move with respect to the SkinnedMeshRenderer it is attached to.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ClothSkinningCoefficient.collisionSphereDistance">
- <summary>
- <para>Definition of a sphere a vertex is not allowed to enter. This allows collision against the animated cloth.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ClothSkinningCoefficient.maxDistance">
- <summary>
- <para>Distance a vertex is allowed to travel from the skinned mesh vertex position.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ClothSphereColliderPair">
- <summary>
- <para>A pair of SphereColliders used to define shapes for Cloth objects to collide against.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ClothSphereColliderPair.first">
- <summary>
- <para>The first SphereCollider of a ClothSphereColliderPair.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ClothSphereColliderPair.second">
- <summary>
- <para>The second SphereCollider of a ClothSphereColliderPair.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.ClothSphereColliderPair.#ctor(UnityEngine.SphereCollider)">
- <summary>
- <para>Creates a ClothSphereColliderPair. If only one SphereCollider is given, the ClothSphereColliderPair will define a simple sphere. If two SphereColliders are given, the ClothSphereColliderPair defines a conic capsule shape, composed of the two spheres and the cone connecting the two.</para>
- </summary>
- <param name="a">The first SphereCollider of a ClothSphereColliderPair.</param>
- <param name="b">The second SphereCollider of a ClothSphereColliderPair.</param>
- </member>
- <member name="M:UnityEngine.ClothSphereColliderPair.#ctor(UnityEngine.SphereCollider,UnityEngine.SphereCollider)">
- <summary>
- <para>Creates a ClothSphereColliderPair. If only one SphereCollider is given, the ClothSphereColliderPair will define a simple sphere. If two SphereColliders are given, the ClothSphereColliderPair defines a conic capsule shape, composed of the two spheres and the cone connecting the two.</para>
- </summary>
- <param name="a">The first SphereCollider of a ClothSphereColliderPair.</param>
- <param name="b">The second SphereCollider of a ClothSphereColliderPair.</param>
- </member>
- <member name="A:UnityEngine.ClothModule">
- <summary>
- <para>The Cloth module implements cloth physics simulation through the Cloth component.</para>
- </summary>
- </member>
- </members>
-</doc>
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.CloudWebServicesModule.dll b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.CloudWebServicesModule.dll
deleted file mode 100644
index 04a43b8..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.CloudWebServicesModule.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.CloudWebServicesModule.xml b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.CloudWebServicesModule.xml
deleted file mode 100644
index 0defe84..0000000
--- a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.CloudWebServicesModule.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
-<doc>
- <members>
- <assembly>
- <name>UnityEngine.CloudWebServicesModule</name>
- </assembly>
- </members>
-</doc>
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.ClusterInputModule.dll b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.ClusterInputModule.dll
deleted file mode 100644
index 0e71f59..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.ClusterInputModule.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.ClusterInputModule.xml b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.ClusterInputModule.xml
deleted file mode 100644
index daece5f..0000000
--- a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.ClusterInputModule.xml
+++ /dev/null
@@ -1,119 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
-<doc>
- <members>
- <assembly>
- <name>UnityEngine.ClusterInputModule</name>
- </assembly>
- <member name="T:UnityEngine.ClusterInput">
- <summary>
- <para>Interface for reading and writing inputs in a Unity Cluster.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.ClusterInput.AddInput(System.String,System.String,System.String,System.Int32,UnityEngine.ClusterInputType)">
- <summary>
- <para>Add a new VRPN input entry.</para>
- </summary>
- <param name="name">Name of the input entry. This has to be unique.</param>
- <param name="deviceName">Device name registered to VRPN server.</param>
- <param name="serverUrl">URL to the vrpn server.</param>
- <param name="index">Index of the Input entry, refer to vrpn.cfg if unsure.</param>
- <param name="type">Type of the input.</param>
- <returns>
- <para>True if the operation succeed.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.ClusterInput.CheckConnectionToServer(System.String)">
- <summary>
- <para>Check the connection status of the device to the VRPN server it connected to.</para>
- </summary>
- <param name="name">Name of the input entry.</param>
- </member>
- <member name="M:UnityEngine.ClusterInput.EditInput(System.String,System.String,System.String,System.Int32,UnityEngine.ClusterInputType)">
- <summary>
- <para>Edit an input entry which added via ClusterInput.AddInput.</para>
- </summary>
- <param name="name">Name of the input entry. This has to be unique.</param>
- <param name="deviceName">Device name registered to VRPN server.</param>
- <param name="serverUrl">URL to the vrpn server.</param>
- <param name="index">Index of the Input entry, refer to vrpn.cfg if unsure.</param>
- <param name="type">Type of the ClusterInputType as follow.</param>
- </member>
- <member name="M:UnityEngine.ClusterInput.GetAxis(System.String)">
- <summary>
- <para>Returns the axis value as a continous float.</para>
- </summary>
- <param name="name">Name of input to poll.c.</param>
- </member>
- <member name="M:UnityEngine.ClusterInput.GetButton(System.String)">
- <summary>
- <para>Returns the binary value of a button.</para>
- </summary>
- <param name="name">Name of input to poll.</param>
- </member>
- <member name="M:UnityEngine.ClusterInput.GetTrackerPosition(System.String)">
- <summary>
- <para>Return the position of a tracker as a Vector3.</para>
- </summary>
- <param name="name">Name of input to poll.</param>
- </member>
- <member name="M:UnityEngine.ClusterInput.GetTrackerRotation(System.String)">
- <summary>
- <para>Returns the rotation of a tracker as a Quaternion.</para>
- </summary>
- <param name="name">Name of input to poll.</param>
- </member>
- <member name="M:UnityEngine.ClusterInput.SetAxis(System.String,System.Single)">
- <summary>
- <para>Sets the axis value for this input. Only works for input typed Custom.</para>
- </summary>
- <param name="name">Name of input to modify.</param>
- <param name="value">Value to set.</param>
- </member>
- <member name="M:UnityEngine.ClusterInput.SetButton(System.String,System.Boolean)">
- <summary>
- <para>Sets the button value for this input. Only works for input typed Custom.</para>
- </summary>
- <param name="name">Name of input to modify.</param>
- <param name="value">Value to set.</param>
- </member>
- <member name="M:UnityEngine.ClusterInput.SetTrackerPosition(System.String,UnityEngine.Vector3)">
- <summary>
- <para>Sets the tracker position for this input. Only works for input typed Custom.</para>
- </summary>
- <param name="name">Name of input to modify.</param>
- <param name="value">Value to set.</param>
- </member>
- <member name="M:UnityEngine.ClusterInput.SetTrackerRotation(System.String,UnityEngine.Quaternion)">
- <summary>
- <para>Sets the tracker rotation for this input. Only works for input typed Custom.</para>
- </summary>
- <param name="name">Name of input to modify.</param>
- <param name="value">Value to set.</param>
- </member>
- <member name="T:UnityEngine.ClusterInputType">
- <summary>
- <para>Values to determine the type of input value to be expect from one entry of ClusterInput.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ClusterInputType.Axis">
- <summary>
- <para>Device is an analog axis that provides continuous value represented by a float.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ClusterInputType.Button">
- <summary>
- <para>Device that return a binary result of pressed or not pressed.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ClusterInputType.CustomProvidedInput">
- <summary>
- <para>A user customized input.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ClusterInputType.Tracker">
- <summary>
- <para>Device that provide position and orientation values.</para>
- </summary>
- </member>
- </members>
-</doc>
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.ClusterRendererModule.dll b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.ClusterRendererModule.dll
deleted file mode 100644
index f2747cc..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.ClusterRendererModule.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.ClusterRendererModule.xml b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.ClusterRendererModule.xml
deleted file mode 100644
index c630ed8..0000000
--- a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.ClusterRendererModule.xml
+++ /dev/null
@@ -1,28 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
-<doc>
- <members>
- <assembly>
- <name>UnityEngine.ClusterRendererModule</name>
- </assembly>
- <member name="T:UnityEngine.ClusterNetwork">
- <summary>
- <para>A helper class that contains static method to inquire status of Unity Cluster.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ClusterNetwork.isDisconnected">
- <summary>
- <para>Check whether the current instance is disconnected from the cluster network.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ClusterNetwork.isMasterOfCluster">
- <summary>
- <para>Check whether the current instance is a master node in the cluster network.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ClusterNetwork.nodeIndex">
- <summary>
- <para>To acquire or set the node index of the current machine from the cluster network.</para>
- </summary>
- </member>
- </members>
-</doc>
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.CoreModule.dll b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.CoreModule.dll
deleted file mode 100644
index 3002586..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.CoreModule.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.CoreModule.xml b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.CoreModule.xml
deleted file mode 100644
index 4bcdcdf..0000000
--- a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.CoreModule.xml
+++ /dev/null
@@ -1,35701 +0,0 @@
-<?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-&gt;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.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. &lt;tt&gt;java.lang.String&lt;/tt&gt;).</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. "&lt;tt&gt;java.lang.String&lt;tt&gt;" or "&lt;tt&gt;javalangString&lt;tt&gt;").</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 &lt;tt&gt;jclass&lt;/tt&gt; pointer to the Java class.
-
-Note: Using raw JNI functions requires advanced knowledge of the Android Java Native Interface (JNI). Please take note.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.AndroidJavaObject.GetRawObject">
- <summary>
- <para>Retrieves the raw &lt;tt&gt;jobject&lt;/tt&gt; pointer to the Java object.
-
-Note: Using raw JNI functions requires advanced knowledge of the Android Java Native Interface (JNI). Please take note.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.AndroidJavaObject.GetStatic(System.String)">
- <summary>
- <para>Get the value of a static field in an object type.</para>
- </summary>
- <param name="fieldName">The name of the field (e.g. &lt;i&gt;int counter;&lt;/i&gt; would have fieldName = "counter").</param>
- </member>
- <member name="M:UnityEngine.AndroidJavaObject.Set(System.String,FieldType)">
- <summary>
- <para>Set 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>
- <param name="val">The value to assign to the field. It has to match the field type.</param>
- </member>
- <member name="M:UnityEngine.AndroidJavaObject.SetStatic(System.String,FieldType)">
- <summary>
- <para>Set the value of a static field in an object type.</para>
- </summary>
- <param name="fieldName">The name of the field (e.g. int counter; would have fieldName = "counter").</param>
- <param name="val">The value to assign to the field. It has to match the field type.</param>
- </member>
- <member name="T:UnityEngine.AndroidJavaProxy">
- <summary>
- <para>This class can be used to implement any java interface. Any java vm method invocation matching the interface on the proxy object will automatically be passed to the c# implementation.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.AndroidJavaProxy.equals(UnityEngine.AndroidJavaObject)">
- <summary>
- <para>The equivalent of the java.lang.Object equals() method.</para>
- </summary>
- <param name="obj"></param>
- <returns>
- <para>Returns true when the objects are equal and false if otherwise.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.AndroidJavaProxy.hashCode">
- <summary>
- <para>The equivalent of the java.lang.Object hashCode() method.</para>
- </summary>
- <returns>
- <para>Returns the hash code of the java proxy object.</para>
- </returns>
- </member>
- <member name="F:UnityEngine.AndroidJavaProxy.javaInterface">
- <summary>
- <para>Java interface implemented by the proxy.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.AndroidJavaProxy.toString">
- <summary>
- <para>The equivalent of the java.lang.Object toString() method.</para>
- </summary>
- <returns>
- <para>Returns C# class name + " &lt;c# proxy java object&gt;".</para>
- </returns>
- </member>
- <member name="M:UnityEngine.AndroidJavaProxy.#ctor(System.String)">
- <summary>
- <para></para>
- </summary>
- <param name="javaInterface">Java interface to be implemented by the proxy.</param>
- </member>
- <member name="M:UnityEngine.AndroidJavaProxy.#ctor(UnityEngine.AndroidJavaClass)">
- <summary>
- <para></para>
- </summary>
- <param name="javaInterface">Java interface to be implemented by the proxy.</param>
- </member>
- <member name="M:UnityEngine.AndroidJavaProxy.Invoke(System.String,System.Object[])">
- <summary>
- <para>Called by the java vm whenever a method is invoked on the java proxy interface. You can override this to run special code on method invokation, or you can leave the implementation as is, and leave the default behavior which is to look for c# methods matching the signature of the java method.</para>
- </summary>
- <param name="methodName">Name of the invoked java method.</param>
- <param name="args">Arguments passed from the java vm - converted into AndroidJavaObject, AndroidJavaClass or a primitive.</param>
- <param name="javaArgs">Arguments passed from the java vm - all objects are represented by AndroidJavaObject, int for instance is represented by a java.lang.Integer object.</param>
- </member>
- <member name="M:UnityEngine.AndroidJavaProxy.Invoke(System.String,UnityEngine.AndroidJavaObject[])">
- <summary>
- <para>Called by the java vm whenever a method is invoked on the java proxy interface. You can override this to run special code on method invokation, or you can leave the implementation as is, and leave the default behavior which is to look for c# methods matching the signature of the java method.</para>
- </summary>
- <param name="methodName">Name of the invoked java method.</param>
- <param name="args">Arguments passed from the java vm - converted into AndroidJavaObject, AndroidJavaClass or a primitive.</param>
- <param name="javaArgs">Arguments passed from the java vm - all objects are represented by AndroidJavaObject, int for instance is represented by a java.lang.Integer object.</param>
- </member>
- <member name="T:UnityEngine.AndroidJavaRunnable">
- <summary>
- <para>AndroidJavaRunnable is the Unity representation of a java.lang.Runnable object.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.AndroidJNI">
- <summary>
- <para>'Raw' JNI interface to Android Dalvik (Java) VM from Mono (CS/JS).
-
-Note: Using raw JNI functions requires advanced knowledge of the Android Java Native Interface (JNI). Please take note.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.AndroidJNI.AllocObject(System.IntPtr)">
- <summary>
- <para>Allocates a new Java object without invoking any of the constructors for the object.</para>
- </summary>
- <param name="clazz"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.AttachCurrentThread">
- <summary>
- <para>Attaches the current thread to a Java (Dalvik) VM.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.AndroidJNI.CallBooleanMethod(System.IntPtr,System.IntPtr,UnityEngine.jvalue[])">
- <summary>
- <para>Calls an instance (nonstatic) Java method defined by &lt;tt&gt;methodID&lt;tt&gt;, optionally passing an array of arguments (&lt;tt&gt;args&lt;tt&gt;) to the method.</para>
- </summary>
- <param name="obj"></param>
- <param name="methodID"></param>
- <param name="args"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.CallByteMethod(System.IntPtr,System.IntPtr,UnityEngine.jvalue[])">
- <summary>
- <para>Calls an instance (nonstatic) Java method defined by &lt;tt&gt;methodID&lt;tt&gt;, optionally passing an array of arguments (&lt;tt&gt;args&lt;tt&gt;) to the method.</para>
- </summary>
- <param name="obj"></param>
- <param name="methodID"></param>
- <param name="args"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.CallCharMethod(System.IntPtr,System.IntPtr,UnityEngine.jvalue[])">
- <summary>
- <para>Calls an instance (nonstatic) Java method defined by &lt;tt&gt;methodID&lt;tt&gt;, optionally passing an array of arguments (&lt;tt&gt;args&lt;tt&gt;) to the method.</para>
- </summary>
- <param name="obj"></param>
- <param name="methodID"></param>
- <param name="args"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.CallDoubleMethod(System.IntPtr,System.IntPtr,UnityEngine.jvalue[])">
- <summary>
- <para>Calls an instance (nonstatic) Java method defined by &lt;tt&gt;methodID&lt;tt&gt;, optionally passing an array of arguments (&lt;tt&gt;args&lt;tt&gt;) to the method.</para>
- </summary>
- <param name="obj"></param>
- <param name="methodID"></param>
- <param name="args"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.CallFloatMethod(System.IntPtr,System.IntPtr,UnityEngine.jvalue[])">
- <summary>
- <para>Calls an instance (nonstatic) Java method defined by &lt;tt&gt;methodID&lt;tt&gt;, optionally passing an array of arguments (&lt;tt&gt;args&lt;tt&gt;) to the method.</para>
- </summary>
- <param name="obj"></param>
- <param name="methodID"></param>
- <param name="args"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.CallIntMethod(System.IntPtr,System.IntPtr,UnityEngine.jvalue[])">
- <summary>
- <para>Calls an instance (nonstatic) Java method defined by &lt;tt&gt;methodID&lt;tt&gt;, optionally passing an array of arguments (&lt;tt&gt;args&lt;tt&gt;) to the method.</para>
- </summary>
- <param name="obj"></param>
- <param name="methodID"></param>
- <param name="args"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.CallLongMethod(System.IntPtr,System.IntPtr,UnityEngine.jvalue[])">
- <summary>
- <para>Calls an instance (nonstatic) Java method defined by &lt;tt&gt;methodID&lt;tt&gt;, optionally passing an array of arguments (&lt;tt&gt;args&lt;tt&gt;) to the method.</para>
- </summary>
- <param name="obj"></param>
- <param name="methodID"></param>
- <param name="args"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.CallObjectMethod(System.IntPtr,System.IntPtr,UnityEngine.jvalue[])">
- <summary>
- <para>Calls an instance (nonstatic) Java method defined by &lt;tt&gt;methodID&lt;tt&gt;, optionally passing an array of arguments (&lt;tt&gt;args&lt;tt&gt;) to the method.</para>
- </summary>
- <param name="obj"></param>
- <param name="methodID"></param>
- <param name="args"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.CallShortMethod(System.IntPtr,System.IntPtr,UnityEngine.jvalue[])">
- <summary>
- <para>Calls an instance (nonstatic) Java method defined by &lt;tt&gt;methodID&lt;tt&gt;, optionally passing an array of arguments (&lt;tt&gt;args&lt;tt&gt;) to the method.</para>
- </summary>
- <param name="obj"></param>
- <param name="methodID"></param>
- <param name="args"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.CallStaticBooleanMethod(System.IntPtr,System.IntPtr,UnityEngine.jvalue[])">
- <summary>
- <para>Invokes a static method on a Java object, according to the specified &lt;tt&gt;methodID&lt;tt&gt;, optionally passing an array of arguments (&lt;tt&gt;args&lt;tt&gt;) to the method.</para>
- </summary>
- <param name="clazz"></param>
- <param name="methodID"></param>
- <param name="args"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.CallStaticByteMethod(System.IntPtr,System.IntPtr,UnityEngine.jvalue[])">
- <summary>
- <para>Invokes a static method on a Java object, according to the specified &lt;tt&gt;methodID&lt;tt&gt;, optionally passing an array of arguments (&lt;tt&gt;args&lt;tt&gt;) to the method.</para>
- </summary>
- <param name="clazz"></param>
- <param name="methodID"></param>
- <param name="args"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.CallStaticCharMethod(System.IntPtr,System.IntPtr,UnityEngine.jvalue[])">
- <summary>
- <para>Invokes a static method on a Java object, according to the specified &lt;tt&gt;methodID&lt;tt&gt;, optionally passing an array of arguments (&lt;tt&gt;args&lt;tt&gt;) to the method.</para>
- </summary>
- <param name="clazz"></param>
- <param name="methodID"></param>
- <param name="args"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.CallStaticDoubleMethod(System.IntPtr,System.IntPtr,UnityEngine.jvalue[])">
- <summary>
- <para>Invokes a static method on a Java object, according to the specified &lt;tt&gt;methodID&lt;tt&gt;, optionally passing an array of arguments (&lt;tt&gt;args&lt;tt&gt;) to the method.</para>
- </summary>
- <param name="clazz"></param>
- <param name="methodID"></param>
- <param name="args"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.CallStaticFloatMethod(System.IntPtr,System.IntPtr,UnityEngine.jvalue[])">
- <summary>
- <para>Invokes a static method on a Java object, according to the specified &lt;tt&gt;methodID&lt;tt&gt;, optionally passing an array of arguments (&lt;tt&gt;args&lt;tt&gt;) to the method.</para>
- </summary>
- <param name="clazz"></param>
- <param name="methodID"></param>
- <param name="args"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.CallStaticIntMethod(System.IntPtr,System.IntPtr,UnityEngine.jvalue[])">
- <summary>
- <para>Invokes a static method on a Java object, according to the specified &lt;tt&gt;methodID&lt;tt&gt;, optionally passing an array of arguments (&lt;tt&gt;args&lt;tt&gt;) to the method.</para>
- </summary>
- <param name="clazz"></param>
- <param name="methodID"></param>
- <param name="args"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.CallStaticLongMethod(System.IntPtr,System.IntPtr,UnityEngine.jvalue[])">
- <summary>
- <para>Invokes a static method on a Java object, according to the specified &lt;tt&gt;methodID&lt;tt&gt;, optionally passing an array of arguments (&lt;tt&gt;args&lt;tt&gt;) to the method.</para>
- </summary>
- <param name="clazz"></param>
- <param name="methodID"></param>
- <param name="args"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.CallStaticObjectMethod(System.IntPtr,System.IntPtr,UnityEngine.jvalue[])">
- <summary>
- <para>Invokes a static method on a Java object, according to the specified &lt;tt&gt;methodID&lt;tt&gt;, optionally passing an array of arguments (&lt;tt&gt;args&lt;tt&gt;) to the method.</para>
- </summary>
- <param name="clazz"></param>
- <param name="methodID"></param>
- <param name="args"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.CallStaticShortMethod(System.IntPtr,System.IntPtr,UnityEngine.jvalue[])">
- <summary>
- <para>Invokes a static method on a Java object, according to the specified &lt;tt&gt;methodID&lt;tt&gt;, optionally passing an array of arguments (&lt;tt&gt;args&lt;tt&gt;) to the method.</para>
- </summary>
- <param name="clazz"></param>
- <param name="methodID"></param>
- <param name="args"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.CallStaticStringMethod(System.IntPtr,System.IntPtr,UnityEngine.jvalue[])">
- <summary>
- <para>Invokes a static method on a Java object, according to the specified &lt;tt&gt;methodID&lt;tt&gt;, optionally passing an array of arguments (&lt;tt&gt;args&lt;tt&gt;) to the method.</para>
- </summary>
- <param name="clazz"></param>
- <param name="methodID"></param>
- <param name="args"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.CallStaticVoidMethod(System.IntPtr,System.IntPtr,UnityEngine.jvalue[])">
- <summary>
- <para>Invokes a static method on a Java object, according to the specified &lt;tt&gt;methodID&lt;tt&gt;, optionally passing an array of arguments (&lt;tt&gt;args&lt;tt&gt;) to the method.</para>
- </summary>
- <param name="clazz"></param>
- <param name="methodID"></param>
- <param name="args"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.CallStringMethod(System.IntPtr,System.IntPtr,UnityEngine.jvalue[])">
- <summary>
- <para>Calls an instance (nonstatic) Java method defined by &lt;tt&gt;methodID&lt;tt&gt;, optionally passing an array of arguments (&lt;tt&gt;args&lt;tt&gt;) to the method.</para>
- </summary>
- <param name="obj"></param>
- <param name="methodID"></param>
- <param name="args"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.CallVoidMethod(System.IntPtr,System.IntPtr,UnityEngine.jvalue[])">
- <summary>
- <para>Calls an instance (nonstatic) Java method defined by &lt;tt&gt;methodID&lt;tt&gt;, optionally passing an array of arguments (&lt;tt&gt;args&lt;tt&gt;) to the method.</para>
- </summary>
- <param name="obj"></param>
- <param name="methodID"></param>
- <param name="args"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.DeleteGlobalRef(System.IntPtr)">
- <summary>
- <para>Deletes the global reference pointed to by &lt;tt&gt;obj&lt;/tt&gt;.</para>
- </summary>
- <param name="obj"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.DeleteLocalRef(System.IntPtr)">
- <summary>
- <para>Deletes the local reference pointed to by &lt;tt&gt;obj&lt;/tt&gt;.</para>
- </summary>
- <param name="obj"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.DetachCurrentThread">
- <summary>
- <para>Detaches the current thread from a Java (Dalvik) VM.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.AndroidJNI.EnsureLocalCapacity(System.Int32)">
- <summary>
- <para>Ensures that at least a given number of local references can be created in the current thread.</para>
- </summary>
- <param name="capacity"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.ExceptionClear">
- <summary>
- <para>Clears any exception that is currently being thrown.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.AndroidJNI.ExceptionDescribe">
- <summary>
- <para>Prints an exception and a backtrace of the stack to the &lt;tt&gt;logcat&lt;/tt&gt;</para>
- </summary>
- </member>
- <member name="M:UnityEngine.AndroidJNI.ExceptionOccurred">
- <summary>
- <para>Determines if an exception is being thrown.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.AndroidJNI.FatalError(System.String)">
- <summary>
- <para>Raises a fatal error and does not expect the VM to recover. This function does not return.</para>
- </summary>
- <param name="message"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.FindClass(System.String)">
- <summary>
- <para>This function loads a locally-defined class.</para>
- </summary>
- <param name="name"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.FromBooleanArray(System.IntPtr)">
- <summary>
- <para>Convert a Java array of &lt;tt&gt;boolean&lt;/tt&gt; to a managed array of System.Boolean.</para>
- </summary>
- <param name="array"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.FromByteArray(System.IntPtr)">
- <summary>
- <para>Convert a Java array of &lt;tt&gt;byte&lt;/tt&gt; to a managed array of System.Byte.</para>
- </summary>
- <param name="array"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.FromCharArray(System.IntPtr)">
- <summary>
- <para>Convert a Java array of &lt;tt&gt;char&lt;/tt&gt; to a managed array of System.Char.</para>
- </summary>
- <param name="array"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.FromDoubleArray(System.IntPtr)">
- <summary>
- <para>Convert a Java array of &lt;tt&gt;double&lt;/tt&gt; to a managed array of System.Double.</para>
- </summary>
- <param name="array"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.FromFloatArray(System.IntPtr)">
- <summary>
- <para>Convert a Java array of &lt;tt&gt;float&lt;/tt&gt; to a managed array of System.Single.</para>
- </summary>
- <param name="array"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.FromIntArray(System.IntPtr)">
- <summary>
- <para>Convert a Java array of &lt;tt&gt;int&lt;/tt&gt; to a managed array of System.Int32.</para>
- </summary>
- <param name="array"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.FromLongArray(System.IntPtr)">
- <summary>
- <para>Convert a Java array of &lt;tt&gt;long&lt;/tt&gt; to a managed array of System.Int64.</para>
- </summary>
- <param name="array"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.FromObjectArray(System.IntPtr)">
- <summary>
- <para>Convert a Java array of &lt;tt&gt;java.lang.Object&lt;/tt&gt; to a managed array of System.IntPtr, representing Java objects.</para>
- </summary>
- <param name="array"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.FromReflectedField(System.IntPtr)">
- <summary>
- <para>Converts a &lt;tt&gt;java.lang.reflect.Field&lt;/tt&gt; to a field ID.</para>
- </summary>
- <param name="refField"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.FromReflectedMethod(System.IntPtr)">
- <summary>
- <para>Converts a &lt;tt&gt;java.lang.reflect.Method&lt;tt&gt; or &lt;tt&gt;java.lang.reflect.Constructor&lt;tt&gt; object to a method ID.</para>
- </summary>
- <param name="refMethod"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.FromShortArray(System.IntPtr)">
- <summary>
- <para>Convert a Java array of &lt;tt&gt;short&lt;/tt&gt; to a managed array of System.Int16.</para>
- </summary>
- <param name="array"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.GetArrayLength(System.IntPtr)">
- <summary>
- <para>Returns the number of elements in the array.</para>
- </summary>
- <param name="array"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.GetBooleanArrayElement(System.IntPtr,System.Int32)">
- <summary>
- <para>Returns the value of one element of a primitive array.</para>
- </summary>
- <param name="array"></param>
- <param name="index"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.GetBooleanField(System.IntPtr,System.IntPtr)">
- <summary>
- <para>This function returns the value of an instance (nonstatic) field of an object.</para>
- </summary>
- <param name="obj"></param>
- <param name="fieldID"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.GetByteArrayElement(System.IntPtr,System.Int32)">
- <summary>
- <para>Returns the value of one element of a primitive array.</para>
- </summary>
- <param name="array"></param>
- <param name="index"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.GetByteField(System.IntPtr,System.IntPtr)">
- <summary>
- <para>This function returns the value of an instance (nonstatic) field of an object.</para>
- </summary>
- <param name="obj"></param>
- <param name="fieldID"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.GetCharArrayElement(System.IntPtr,System.Int32)">
- <summary>
- <para>Returns the value of one element of a primitive array.</para>
- </summary>
- <param name="array"></param>
- <param name="index"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.GetCharField(System.IntPtr,System.IntPtr)">
- <summary>
- <para>This function returns the value of an instance (nonstatic) field of an object.</para>
- </summary>
- <param name="obj"></param>
- <param name="fieldID"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.GetDoubleArrayElement(System.IntPtr,System.Int32)">
- <summary>
- <para>Returns the value of one element of a primitive array.</para>
- </summary>
- <param name="array"></param>
- <param name="index"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.GetDoubleField(System.IntPtr,System.IntPtr)">
- <summary>
- <para>This function returns the value of an instance (nonstatic) field of an object.</para>
- </summary>
- <param name="obj"></param>
- <param name="fieldID"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.GetFieldID(System.IntPtr,System.String,System.String)">
- <summary>
- <para>Returns the field ID for an instance (nonstatic) field of a class.</para>
- </summary>
- <param name="clazz"></param>
- <param name="name"></param>
- <param name="sig"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.GetFloatArrayElement(System.IntPtr,System.Int32)">
- <summary>
- <para>Returns the value of one element of a primitive array.</para>
- </summary>
- <param name="array"></param>
- <param name="index"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.GetFloatField(System.IntPtr,System.IntPtr)">
- <summary>
- <para>This function returns the value of an instance (nonstatic) field of an object.</para>
- </summary>
- <param name="obj"></param>
- <param name="fieldID"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.GetIntArrayElement(System.IntPtr,System.Int32)">
- <summary>
- <para>Returns the value of one element of a primitive array.</para>
- </summary>
- <param name="array"></param>
- <param name="index"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.GetIntField(System.IntPtr,System.IntPtr)">
- <summary>
- <para>This function returns the value of an instance (nonstatic) field of an object.</para>
- </summary>
- <param name="obj"></param>
- <param name="fieldID"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.GetLongArrayElement(System.IntPtr,System.Int32)">
- <summary>
- <para>Returns the value of one element of a primitive array.</para>
- </summary>
- <param name="array"></param>
- <param name="index"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.GetLongField(System.IntPtr,System.IntPtr)">
- <summary>
- <para>This function returns the value of an instance (nonstatic) field of an object.</para>
- </summary>
- <param name="obj"></param>
- <param name="fieldID"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.GetMethodID(System.IntPtr,System.String,System.String)">
- <summary>
- <para>Returns the method ID for an instance (nonstatic) method of a class or interface.</para>
- </summary>
- <param name="clazz"></param>
- <param name="name"></param>
- <param name="sig"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.GetObjectArrayElement(System.IntPtr,System.Int32)">
- <summary>
- <para>Returns an element of an &lt;tt&gt;Object&lt;/tt&gt; array.</para>
- </summary>
- <param name="array"></param>
- <param name="index"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.GetObjectClass(System.IntPtr)">
- <summary>
- <para>Returns the class of an object.</para>
- </summary>
- <param name="obj"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.GetObjectField(System.IntPtr,System.IntPtr)">
- <summary>
- <para>This function returns the value of an instance (nonstatic) field of an object.</para>
- </summary>
- <param name="obj"></param>
- <param name="fieldID"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.GetShortArrayElement(System.IntPtr,System.Int32)">
- <summary>
- <para>Returns the value of one element of a primitive array.</para>
- </summary>
- <param name="array"></param>
- <param name="index"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.GetShortField(System.IntPtr,System.IntPtr)">
- <summary>
- <para>This function returns the value of an instance (nonstatic) field of an object.</para>
- </summary>
- <param name="obj"></param>
- <param name="fieldID"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.GetStaticBooleanField(System.IntPtr,System.IntPtr)">
- <summary>
- <para>This function returns the value of a static field of an object.</para>
- </summary>
- <param name="clazz"></param>
- <param name="fieldID"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.GetStaticByteField(System.IntPtr,System.IntPtr)">
- <summary>
- <para>This function returns the value of a static field of an object.</para>
- </summary>
- <param name="clazz"></param>
- <param name="fieldID"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.GetStaticCharField(System.IntPtr,System.IntPtr)">
- <summary>
- <para>This function returns the value of a static field of an object.</para>
- </summary>
- <param name="clazz"></param>
- <param name="fieldID"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.GetStaticDoubleField(System.IntPtr,System.IntPtr)">
- <summary>
- <para>This function returns the value of a static field of an object.</para>
- </summary>
- <param name="clazz"></param>
- <param name="fieldID"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.GetStaticFieldID(System.IntPtr,System.String,System.String)">
- <summary>
- <para>Returns the field ID for a static field of a class.</para>
- </summary>
- <param name="clazz"></param>
- <param name="name"></param>
- <param name="sig"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.GetStaticFloatField(System.IntPtr,System.IntPtr)">
- <summary>
- <para>This function returns the value of a static field of an object.</para>
- </summary>
- <param name="clazz"></param>
- <param name="fieldID"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.GetStaticIntField(System.IntPtr,System.IntPtr)">
- <summary>
- <para>This function returns the value of a static field of an object.</para>
- </summary>
- <param name="clazz"></param>
- <param name="fieldID"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.GetStaticLongField(System.IntPtr,System.IntPtr)">
- <summary>
- <para>This function returns the value of a static field of an object.</para>
- </summary>
- <param name="clazz"></param>
- <param name="fieldID"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.GetStaticMethodID(System.IntPtr,System.String,System.String)">
- <summary>
- <para>Returns the method ID for a static method of a class.</para>
- </summary>
- <param name="clazz"></param>
- <param name="name"></param>
- <param name="sig"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.GetStaticObjectField(System.IntPtr,System.IntPtr)">
- <summary>
- <para>This function returns the value of a static field of an object.</para>
- </summary>
- <param name="clazz"></param>
- <param name="fieldID"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.GetStaticShortField(System.IntPtr,System.IntPtr)">
- <summary>
- <para>This function returns the value of a static field of an object.</para>
- </summary>
- <param name="clazz"></param>
- <param name="fieldID"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.GetStaticStringField(System.IntPtr,System.IntPtr)">
- <summary>
- <para>This function returns the value of a static field of an object.</para>
- </summary>
- <param name="clazz"></param>
- <param name="fieldID"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.GetStringField(System.IntPtr,System.IntPtr)">
- <summary>
- <para>This function returns the value of an instance (nonstatic) field of an object.</para>
- </summary>
- <param name="obj"></param>
- <param name="fieldID"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.GetStringUTFChars(System.IntPtr)">
- <summary>
- <para>Returns a managed string object representing the string in modified UTF-8 encoding.</para>
- </summary>
- <param name="str"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.GetStringUTFLength(System.IntPtr)">
- <summary>
- <para>Returns the length in bytes of the modified UTF-8 representation of a string.</para>
- </summary>
- <param name="str"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.GetSuperclass(System.IntPtr)">
- <summary>
- <para>If &lt;tt&gt;clazz&lt;tt&gt; represents any class other than the class &lt;tt&gt;Object&lt;tt&gt;, then this function returns the object that represents the superclass of the class specified by &lt;tt&gt;clazz&lt;/tt&gt;.</para>
- </summary>
- <param name="clazz"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.GetVersion">
- <summary>
- <para>Returns the version of the native method interface.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.AndroidJNI.IsAssignableFrom(System.IntPtr,System.IntPtr)">
- <summary>
- <para>Determines whether an object of &lt;tt&gt;clazz1&lt;tt&gt; can be safely cast to &lt;tt&gt;clazz2&lt;tt&gt;.</para>
- </summary>
- <param name="clazz1"></param>
- <param name="clazz2"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.IsInstanceOf(System.IntPtr,System.IntPtr)">
- <summary>
- <para>Tests whether an object is an instance of a class.</para>
- </summary>
- <param name="obj"></param>
- <param name="clazz"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.IsSameObject(System.IntPtr,System.IntPtr)">
- <summary>
- <para>Tests whether two references refer to the same Java object.</para>
- </summary>
- <param name="obj1"></param>
- <param name="obj2"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.NewBooleanArray(System.Int32)">
- <summary>
- <para>Construct a new primitive array object.</para>
- </summary>
- <param name="size"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.NewByteArray(System.Int32)">
- <summary>
- <para>Construct a new primitive array object.</para>
- </summary>
- <param name="size"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.NewCharArray(System.Int32)">
- <summary>
- <para>Construct a new primitive array object.</para>
- </summary>
- <param name="size"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.NewDoubleArray(System.Int32)">
- <summary>
- <para>Construct a new primitive array object.</para>
- </summary>
- <param name="size"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.NewFloatArray(System.Int32)">
- <summary>
- <para>Construct a new primitive array object.</para>
- </summary>
- <param name="size"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.NewGlobalRef(System.IntPtr)">
- <summary>
- <para>Creates a new global reference to the object referred to by the &lt;tt&gt;obj&lt;/tt&gt; argument.</para>
- </summary>
- <param name="obj"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.NewIntArray(System.Int32)">
- <summary>
- <para>Construct a new primitive array object.</para>
- </summary>
- <param name="size"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.NewLocalRef(System.IntPtr)">
- <summary>
- <para>Creates a new local reference that refers to the same object as &lt;tt&gt;obj&lt;/tt&gt;.</para>
- </summary>
- <param name="obj"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.NewLongArray(System.Int32)">
- <summary>
- <para>Construct a new primitive array object.</para>
- </summary>
- <param name="size"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.NewObject(System.IntPtr,System.IntPtr,UnityEngine.jvalue[])">
- <summary>
- <para>Constructs a new Java object. The method ID indicates which constructor method to invoke. This ID must be obtained by calling GetMethodID() with &lt;init&gt; as the method name and void (V) as the return type.</para>
- </summary>
- <param name="clazz"></param>
- <param name="methodID"></param>
- <param name="args"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.NewObjectArray(System.Int32,System.IntPtr,System.IntPtr)">
- <summary>
- <para>Constructs a new array holding objects in class &lt;tt&gt;clazz&lt;tt&gt;. All elements are initially set to &lt;tt&gt;obj&lt;tt&gt;.</para>
- </summary>
- <param name="size"></param>
- <param name="clazz"></param>
- <param name="obj"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.NewShortArray(System.Int32)">
- <summary>
- <para>Construct a new primitive array object.</para>
- </summary>
- <param name="size"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.NewStringUTF(System.String)">
- <summary>
- <para>Constructs a new &lt;tt&gt;java.lang.String&lt;/tt&gt; object from an array of characters in modified UTF-8 encoding.</para>
- </summary>
- <param name="bytes"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.PopLocalFrame(System.IntPtr)">
- <summary>
- <para>Pops off the current local reference frame, frees all the local references, and returns a local reference in the previous local reference frame for the given &lt;tt&gt;result&lt;/tt&gt; object.</para>
- </summary>
- <param name="ptr"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.PushLocalFrame(System.Int32)">
- <summary>
- <para>Creates a new local reference frame, in which at least a given number of local references can be created.</para>
- </summary>
- <param name="capacity"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.SetBooleanArrayElement(System.IntPtr,System.Int32,System.Byte)">
- <summary>
- <para>Sets the value of one element in a primitive array.</para>
- </summary>
- <param name="array">The array of native booleans.</param>
- <param name="index">Index of the array element to set.</param>
- <param name="val">The value to set - for 'true' use 1, for 'false' use 0.</param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.SetBooleanField(System.IntPtr,System.IntPtr,System.Boolean)">
- <summary>
- <para>This function sets the value of an instance (nonstatic) field of an object.</para>
- </summary>
- <param name="obj"></param>
- <param name="fieldID"></param>
- <param name="val"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.SetByteArrayElement(System.IntPtr,System.Int32,System.SByte)">
- <summary>
- <para>Sets the value of one element in a primitive array.</para>
- </summary>
- <param name="array"></param>
- <param name="index"></param>
- <param name="val"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.SetByteField(System.IntPtr,System.IntPtr,System.Byte)">
- <summary>
- <para>This function sets the value of an instance (nonstatic) field of an object.</para>
- </summary>
- <param name="obj"></param>
- <param name="fieldID"></param>
- <param name="val"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.SetCharArrayElement(System.IntPtr,System.Int32,System.Char)">
- <summary>
- <para>Sets the value of one element in a primitive array.</para>
- </summary>
- <param name="array"></param>
- <param name="index"></param>
- <param name="val"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.SetCharField(System.IntPtr,System.IntPtr,System.Char)">
- <summary>
- <para>This function sets the value of an instance (nonstatic) field of an object.</para>
- </summary>
- <param name="obj"></param>
- <param name="fieldID"></param>
- <param name="val"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.SetDoubleArrayElement(System.IntPtr,System.Int32,System.Double)">
- <summary>
- <para>Sets the value of one element in a primitive array.</para>
- </summary>
- <param name="array"></param>
- <param name="index"></param>
- <param name="val"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.SetDoubleField(System.IntPtr,System.IntPtr,System.Double)">
- <summary>
- <para>This function sets the value of an instance (nonstatic) field of an object.</para>
- </summary>
- <param name="obj"></param>
- <param name="fieldID"></param>
- <param name="val"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.SetFloatArrayElement(System.IntPtr,System.Int32,System.Single)">
- <summary>
- <para>Sets the value of one element in a primitive array.</para>
- </summary>
- <param name="array"></param>
- <param name="index"></param>
- <param name="val"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.SetFloatField(System.IntPtr,System.IntPtr,System.Single)">
- <summary>
- <para>This function sets the value of an instance (nonstatic) field of an object.</para>
- </summary>
- <param name="obj"></param>
- <param name="fieldID"></param>
- <param name="val"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.SetIntArrayElement(System.IntPtr,System.Int32,System.Int32)">
- <summary>
- <para>Sets the value of one element in a primitive array.</para>
- </summary>
- <param name="array"></param>
- <param name="index"></param>
- <param name="val"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.SetIntField(System.IntPtr,System.IntPtr,System.Int32)">
- <summary>
- <para>This function sets the value of an instance (nonstatic) field of an object.</para>
- </summary>
- <param name="obj"></param>
- <param name="fieldID"></param>
- <param name="val"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.SetLongArrayElement(System.IntPtr,System.Int32,System.Int64)">
- <summary>
- <para>Sets the value of one element in a primitive array.</para>
- </summary>
- <param name="array"></param>
- <param name="index"></param>
- <param name="val"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.SetLongField(System.IntPtr,System.IntPtr,System.Int64)">
- <summary>
- <para>This function sets the value of an instance (nonstatic) field of an object.</para>
- </summary>
- <param name="obj"></param>
- <param name="fieldID"></param>
- <param name="val"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.SetObjectArrayElement(System.IntPtr,System.Int32,System.IntPtr)">
- <summary>
- <para>Sets an element of an &lt;tt&gt;Object&lt;/tt&gt; array.</para>
- </summary>
- <param name="array"></param>
- <param name="index"></param>
- <param name="obj"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.SetObjectField(System.IntPtr,System.IntPtr,System.IntPtr)">
- <summary>
- <para>This function sets the value of an instance (nonstatic) field of an object.</para>
- </summary>
- <param name="obj"></param>
- <param name="fieldID"></param>
- <param name="val"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.SetShortArrayElement(System.IntPtr,System.Int32,System.Int16)">
- <summary>
- <para>Sets the value of one element in a primitive array.</para>
- </summary>
- <param name="array"></param>
- <param name="index"></param>
- <param name="val"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.SetShortField(System.IntPtr,System.IntPtr,System.Int16)">
- <summary>
- <para>This function sets the value of an instance (nonstatic) field of an object.</para>
- </summary>
- <param name="obj"></param>
- <param name="fieldID"></param>
- <param name="val"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.SetStaticBooleanField(System.IntPtr,System.IntPtr,System.Boolean)">
- <summary>
- <para>This function ets the value of a static field of an object.</para>
- </summary>
- <param name="clazz"></param>
- <param name="fieldID"></param>
- <param name="val"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.SetStaticByteField(System.IntPtr,System.IntPtr,System.Byte)">
- <summary>
- <para>This function ets the value of a static field of an object.</para>
- </summary>
- <param name="clazz"></param>
- <param name="fieldID"></param>
- <param name="val"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.SetStaticCharField(System.IntPtr,System.IntPtr,System.Char)">
- <summary>
- <para>This function ets the value of a static field of an object.</para>
- </summary>
- <param name="clazz"></param>
- <param name="fieldID"></param>
- <param name="val"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.SetStaticDoubleField(System.IntPtr,System.IntPtr,System.Double)">
- <summary>
- <para>This function ets the value of a static field of an object.</para>
- </summary>
- <param name="clazz"></param>
- <param name="fieldID"></param>
- <param name="val"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.SetStaticFloatField(System.IntPtr,System.IntPtr,System.Single)">
- <summary>
- <para>This function ets the value of a static field of an object.</para>
- </summary>
- <param name="clazz"></param>
- <param name="fieldID"></param>
- <param name="val"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.SetStaticIntField(System.IntPtr,System.IntPtr,System.Int32)">
- <summary>
- <para>This function ets the value of a static field of an object.</para>
- </summary>
- <param name="clazz"></param>
- <param name="fieldID"></param>
- <param name="val"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.SetStaticLongField(System.IntPtr,System.IntPtr,System.Int64)">
- <summary>
- <para>This function ets the value of a static field of an object.</para>
- </summary>
- <param name="clazz"></param>
- <param name="fieldID"></param>
- <param name="val"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.SetStaticObjectField(System.IntPtr,System.IntPtr,System.IntPtr)">
- <summary>
- <para>This function ets the value of a static field of an object.</para>
- </summary>
- <param name="clazz"></param>
- <param name="fieldID"></param>
- <param name="val"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.SetStaticShortField(System.IntPtr,System.IntPtr,System.Int16)">
- <summary>
- <para>This function ets the value of a static field of an object.</para>
- </summary>
- <param name="clazz"></param>
- <param name="fieldID"></param>
- <param name="val"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.SetStaticStringField(System.IntPtr,System.IntPtr,System.String)">
- <summary>
- <para>This function ets the value of a static field of an object.</para>
- </summary>
- <param name="clazz"></param>
- <param name="fieldID"></param>
- <param name="val"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.SetStringField(System.IntPtr,System.IntPtr,System.String)">
- <summary>
- <para>This function sets the value of an instance (nonstatic) field of an object.</para>
- </summary>
- <param name="obj"></param>
- <param name="fieldID"></param>
- <param name="val"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.Throw(System.IntPtr)">
- <summary>
- <para>Causes a &lt;tt&gt;java.lang.Throwable&lt;/tt&gt; object to be thrown.</para>
- </summary>
- <param name="obj"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.ThrowNew(System.IntPtr,System.String)">
- <summary>
- <para>Constructs an exception object from the specified class with the &lt;tt&gt;message&lt;/tt&gt; specified by message and causes that exception to be thrown.</para>
- </summary>
- <param name="clazz"></param>
- <param name="message"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.ToBooleanArray(System.Boolean[])">
- <summary>
- <para>Convert a managed array of System.Boolean to a Java array of &lt;tt&gt;boolean&lt;/tt&gt;.</para>
- </summary>
- <param name="array"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.ToByteArray(System.Byte[])">
- <summary>
- <para>Convert a managed array of System.Byte to a Java array of &lt;tt&gt;byte&lt;/tt&gt;.</para>
- </summary>
- <param name="array"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.ToCharArray(System.Char[])">
- <summary>
- <para>Convert a managed array of System.Char to a Java array of &lt;tt&gt;char&lt;/tt&gt;.</para>
- </summary>
- <param name="array"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.ToDoubleArray(System.Double[])">
- <summary>
- <para>Convert a managed array of System.Double to a Java array of &lt;tt&gt;double&lt;/tt&gt;.</para>
- </summary>
- <param name="array"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.ToFloatArray(System.Single[])">
- <summary>
- <para>Convert a managed array of System.Single to a Java array of &lt;tt&gt;float&lt;/tt&gt;.</para>
- </summary>
- <param name="array"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.ToIntArray(System.Int32[])">
- <summary>
- <para>Convert a managed array of System.Int32 to a Java array of &lt;tt&gt;int&lt;/tt&gt;.</para>
- </summary>
- <param name="array"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.ToLongArray(System.Int64[])">
- <summary>
- <para>Convert a managed array of System.Int64 to a Java array of &lt;tt&gt;long&lt;/tt&gt;.</para>
- </summary>
- <param name="array"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.ToObjectArray(System.IntPtr[])">
- <summary>
- <para>Convert a managed array of System.IntPtr, representing Java objects, to a Java array of &lt;tt&gt;java.lang.Object&lt;/tt&gt;.</para>
- </summary>
- <param name="array"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.ToReflectedField(System.IntPtr,System.IntPtr,System.Boolean)">
- <summary>
- <para>Converts a field ID derived from cls to a &lt;tt&gt;java.lang.reflect.Field&lt;/tt&gt; object.</para>
- </summary>
- <param name="clazz"></param>
- <param name="fieldID"></param>
- <param name="isStatic"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.ToReflectedMethod(System.IntPtr,System.IntPtr,System.Boolean)">
- <summary>
- <para>Converts a method ID derived from clazz to a &lt;tt&gt;java.lang.reflect.Method&lt;tt&gt; or &lt;tt&gt;java.lang.reflect.Constructor&lt;tt&gt; object.</para>
- </summary>
- <param name="clazz"></param>
- <param name="methodID"></param>
- <param name="isStatic"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNI.ToShortArray(System.Int16[])">
- <summary>
- <para>Convert a managed array of System.Int16 to a Java array of &lt;tt&gt;short&lt;/tt&gt;.</para>
- </summary>
- <param name="array"></param>
- </member>
- <member name="T:UnityEngine.AndroidJNIHelper">
- <summary>
- <para>Helper interface for JNI interaction; signature creation and method lookups.
-
-Note: Using raw JNI functions requires advanced knowledge of the Android Java Native Interface (JNI). Please take note.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AndroidJNIHelper.debug">
- <summary>
- <para>Set debug to true to log calls through the AndroidJNIHelper.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.AndroidJNIHelper.ConvertFromJNIArray(System.IntPtr)">
- <summary>
- <para>Creates a managed array from a Java array.</para>
- </summary>
- <param name="array">Java array object to be converted into a managed array.</param>
- </member>
- <member name="M:UnityEngine.AndroidJNIHelper.ConvertToJNIArray(System.Array)">
- <summary>
- <para>Creates a Java array from a managed array.</para>
- </summary>
- <param name="array">Managed array to be converted into a Java array object.</param>
- </member>
- <member name="M:UnityEngine.AndroidJNIHelper.CreateJavaProxy(UnityEngine.AndroidJavaProxy)">
- <summary>
- <para>Creates a java proxy object which connects to the supplied proxy implementation.</para>
- </summary>
- <param name="proxy">An implementatinon of a java interface in c#.</param>
- </member>
- <member name="M:UnityEngine.AndroidJNIHelper.CreateJavaRunnable(UnityEngine.AndroidJavaRunnable)">
- <summary>
- <para>Creates a UnityJavaRunnable object (implements java.lang.Runnable).</para>
- </summary>
- <param name="runnable">A delegate representing the java.lang.Runnable.</param>
- <param name="jrunnable"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNIHelper.CreateJNIArgArray(System.Object[])">
- <summary>
- <para>Creates the parameter array to be used as argument list when invoking Java code through CallMethod() in AndroidJNI.</para>
- </summary>
- <param name="args">An array of objects that should be converted to Call parameters.</param>
- </member>
- <member name="M:UnityEngine.AndroidJNIHelper.DeleteJNIArgArray(System.Object[],UnityEngine.jvalue[])">
- <summary>
- <para>Deletes any local jni references previously allocated by CreateJNIArgArray().</para>
- </summary>
- <param name="args">The array of arguments used as a parameter to CreateJNIArgArray().</param>
- <param name="jniArgs">The array returned by CreateJNIArgArray().</param>
- </member>
- <member name="M:UnityEngine.AndroidJNIHelper.GetConstructorID(System.IntPtr)">
- <summary>
- <para>Scans a particular Java class for a constructor method matching a signature.</para>
- </summary>
- <param name="javaClass">Raw JNI Java class object (obtained by calling AndroidJNI.FindClass).</param>
- <param name="signature">Constructor method signature (e.g. obtained by calling AndroidJNIHelper.GetSignature).</param>
- </member>
- <member name="M:UnityEngine.AndroidJNIHelper.GetConstructorID(System.IntPtr,System.String)">
- <summary>
- <para>Scans a particular Java class for a constructor method matching a signature.</para>
- </summary>
- <param name="javaClass">Raw JNI Java class object (obtained by calling AndroidJNI.FindClass).</param>
- <param name="signature">Constructor method signature (e.g. obtained by calling AndroidJNIHelper.GetSignature).</param>
- </member>
- <member name="M:UnityEngine.AndroidJNIHelper.GetConstructorID(System.IntPtr,System.Object[])">
- <summary>
- <para>Get a JNI method ID for a constructor based on calling arguments.</para>
- </summary>
- <param name="javaClass">Raw JNI Java class object (obtained by calling AndroidJNI.FindClass).</param>
- <param name="args">Array with parameters to be passed to the constructor when invoked.</param>
- <param name="jclass"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNIHelper.GetFieldID(System.IntPtr,System.String)">
- <summary>
- <para>Scans a particular Java class for a field matching a name and a signature.</para>
- </summary>
- <param name="javaClass">Raw JNI Java class object (obtained by calling AndroidJNI.FindClass).</param>
- <param name="fieldName">Name of the field as declared in Java.</param>
- <param name="signature">Field signature (e.g. obtained by calling AndroidJNIHelper.GetSignature).</param>
- <param name="isStatic">Set to &lt;tt&gt;true&lt;tt&gt; for static fields; &lt;tt&gt;false&lt;tt&gt; for instance (nonstatic) fields.</param>
- </member>
- <member name="M:UnityEngine.AndroidJNIHelper.GetFieldID(System.IntPtr,System.String,System.String)">
- <summary>
- <para>Scans a particular Java class for a field matching a name and a signature.</para>
- </summary>
- <param name="javaClass">Raw JNI Java class object (obtained by calling AndroidJNI.FindClass).</param>
- <param name="fieldName">Name of the field as declared in Java.</param>
- <param name="signature">Field signature (e.g. obtained by calling AndroidJNIHelper.GetSignature).</param>
- <param name="isStatic">Set to &lt;tt&gt;true&lt;tt&gt; for static fields; &lt;tt&gt;false&lt;tt&gt; for instance (nonstatic) fields.</param>
- </member>
- <member name="M:UnityEngine.AndroidJNIHelper.GetFieldID(System.IntPtr,System.String,System.String,System.Boolean)">
- <summary>
- <para>Scans a particular Java class for a field matching a name and a signature.</para>
- </summary>
- <param name="javaClass">Raw JNI Java class object (obtained by calling AndroidJNI.FindClass).</param>
- <param name="fieldName">Name of the field as declared in Java.</param>
- <param name="signature">Field signature (e.g. obtained by calling AndroidJNIHelper.GetSignature).</param>
- <param name="isStatic">Set to &lt;tt&gt;true&lt;tt&gt; for static fields; &lt;tt&gt;false&lt;tt&gt; for instance (nonstatic) fields.</param>
- </member>
- <member name="M:UnityEngine.AndroidJNIHelper.GetFieldID(System.IntPtr,System.String,System.Boolean)">
- <summary>
- <para>Get a JNI field ID based on type detection. Generic parameter represents the field type.</para>
- </summary>
- <param name="javaClass">Raw JNI Java class object (obtained by calling AndroidJNI.FindClass).</param>
- <param name="fieldName">Name of the field as declared in Java.</param>
- <param name="isStatic">Set to &lt;tt&gt;true&lt;tt&gt; for static fields; &lt;tt&gt;false&lt;tt&gt; for instance (nonstatic) fields.</param>
- <param name="jclass"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNIHelper.GetMethodID(System.IntPtr,System.String)">
- <summary>
- <para>Scans a particular Java class for a method matching a name and a signature.</para>
- </summary>
- <param name="javaClass">Raw JNI Java class object (obtained by calling AndroidJNI.FindClass).</param>
- <param name="methodName">Name of the method as declared in Java.</param>
- <param name="signature">Method signature (e.g. obtained by calling AndroidJNIHelper.GetSignature).</param>
- <param name="isStatic">Set to &lt;tt&gt;true&lt;tt&gt; for static methods; &lt;tt&gt;false&lt;tt&gt; for instance (nonstatic) methods.</param>
- </member>
- <member name="M:UnityEngine.AndroidJNIHelper.GetMethodID(System.IntPtr,System.String,System.String)">
- <summary>
- <para>Scans a particular Java class for a method matching a name and a signature.</para>
- </summary>
- <param name="javaClass">Raw JNI Java class object (obtained by calling AndroidJNI.FindClass).</param>
- <param name="methodName">Name of the method as declared in Java.</param>
- <param name="signature">Method signature (e.g. obtained by calling AndroidJNIHelper.GetSignature).</param>
- <param name="isStatic">Set to &lt;tt&gt;true&lt;tt&gt; for static methods; &lt;tt&gt;false&lt;tt&gt; for instance (nonstatic) methods.</param>
- </member>
- <member name="M:UnityEngine.AndroidJNIHelper.GetMethodID(System.IntPtr,System.String,System.String,System.Boolean)">
- <summary>
- <para>Scans a particular Java class for a method matching a name and a signature.</para>
- </summary>
- <param name="javaClass">Raw JNI Java class object (obtained by calling AndroidJNI.FindClass).</param>
- <param name="methodName">Name of the method as declared in Java.</param>
- <param name="signature">Method signature (e.g. obtained by calling AndroidJNIHelper.GetSignature).</param>
- <param name="isStatic">Set to &lt;tt&gt;true&lt;tt&gt; for static methods; &lt;tt&gt;false&lt;tt&gt; for instance (nonstatic) methods.</param>
- </member>
- <member name="M:UnityEngine.AndroidJNIHelper.GetMethodID(System.IntPtr,System.String,System.Object[],System.Boolean)">
- <summary>
- <para>Get a JNI method ID based on calling arguments.</para>
- </summary>
- <param name="javaClass">Raw JNI Java class object (obtained by calling AndroidJNI.FindClass).</param>
- <param name="methodName">Name of the method as declared in Java.</param>
- <param name="args">Array with parameters to be passed to the method when invoked.</param>
- <param name="isStatic">Set to &lt;tt&gt;true&lt;tt&gt; for static methods; &lt;tt&gt;false&lt;tt&gt; for instance (nonstatic) methods.</param>
- <param name="jclass"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNIHelper.GetMethodID(System.IntPtr,System.String,System.Object[],System.Boolean)">
- <summary>
- <para>Get a JNI method ID based on calling arguments.</para>
- </summary>
- <param name="javaClass">Raw JNI Java class object (obtained by calling AndroidJNI.FindClass).</param>
- <param name="methodName">Name of the method as declared in Java.</param>
- <param name="args">Array with parameters to be passed to the method when invoked.</param>
- <param name="isStatic">Set to &lt;tt&gt;true&lt;tt&gt; for static methods; &lt;tt&gt;false&lt;tt&gt; for instance (nonstatic) methods.</param>
- <param name="jclass"></param>
- </member>
- <member name="M:UnityEngine.AndroidJNIHelper.GetSignature(System.Object)">
- <summary>
- <para>Creates the JNI signature string for particular object type.</para>
- </summary>
- <param name="obj">Object for which a signature is to be produced.</param>
- </member>
- <member name="M:UnityEngine.AndroidJNIHelper.GetSignature(System.Object[])">
- <summary>
- <para>Creates the JNI signature string for an object parameter list.</para>
- </summary>
- <param name="args">Array of object for which a signature is to be produced.</param>
- </member>
- <member name="M:UnityEngine.AndroidJNIHelper.GetSignature(System.Object[])">
- <summary>
- <para>Creates the JNI signature string for an object parameter list.</para>
- </summary>
- <param name="args">Array of object for which a signature is to be produced.</param>
- </member>
- <member name="T:UnityEngine.AnimationCurve">
- <summary>
- <para>Store a collection of Keyframes that can be evaluated over time.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AnimationCurve.keys">
- <summary>
- <para>All keys defined in the animation curve.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AnimationCurve.length">
- <summary>
- <para>The number of keys in the curve. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AnimationCurve.postWrapMode">
- <summary>
- <para>The behaviour of the animation after the last keyframe.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AnimationCurve.preWrapMode">
- <summary>
- <para>The behaviour of the animation before the first keyframe.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.AnimationCurve.AddKey(System.Single,System.Single)">
- <summary>
- <para>Add a new key to the curve.</para>
- </summary>
- <param name="time">The time at which to add the key (horizontal axis in the curve graph).</param>
- <param name="value">The value for the key (vertical axis in the curve graph).</param>
- <returns>
- <para>The index of the added key, or -1 if the key could not be added.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.AnimationCurve.AddKey(UnityEngine.Keyframe)">
- <summary>
- <para>Add a new key to the curve.</para>
- </summary>
- <param name="key">The key to add to the curve.</param>
- <returns>
- <para>The index of the added key, or -1 if the key could not be added.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.AnimationCurve.Constant(System.Single,System.Single,System.Single)">
- <summary>
- <para>Creates a constant "curve" starting at timeStart, ending at timeEnd and with the value value.</para>
- </summary>
- <param name="timeStart">The start time for the constant curve.</param>
- <param name="timeEnd">The start time for the constant curve.</param>
- <param name="value">The value for the constant curve.</param>
- <returns>
- <para>The constant curve created from the specified values.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.AnimationCurve.#ctor(UnityEngine.Keyframe[])">
- <summary>
- <para>Creates an animation curve from an arbitrary number of keyframes.</para>
- </summary>
- <param name="keys">An array of Keyframes used to define the curve.</param>
- </member>
- <member name="M:UnityEngine.AnimationCurve.#ctor">
- <summary>
- <para>Creates an empty animation curve.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.AnimationCurve.EaseInOut(System.Single,System.Single,System.Single,System.Single)">
- <summary>
- <para>Creates an ease-in and out curve starting at timeStart, valueStart and ending at timeEnd, valueEnd.</para>
- </summary>
- <param name="timeStart">The start time for the ease curve.</param>
- <param name="valueStart">The start value for the ease curve.</param>
- <param name="timeEnd">The end time for the ease curve.</param>
- <param name="valueEnd">The end value for the ease curve.</param>
- <returns>
- <para>The ease-in and out curve generated from the specified values.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.AnimationCurve.Evaluate(System.Single)">
- <summary>
- <para>Evaluate the curve at time.</para>
- </summary>
- <param name="time">The time within the curve you want to evaluate (the horizontal axis in the curve graph).</param>
- <returns>
- <para>The value of the curve, at the point in time specified.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.AnimationCurve.Linear(System.Single,System.Single,System.Single,System.Single)">
- <summary>
- <para>A straight Line starting at timeStart, valueStart and ending at timeEnd, valueEnd.</para>
- </summary>
- <param name="timeStart">The start time for the linear curve.</param>
- <param name="valueStart">The start value for the linear curve.</param>
- <param name="timeEnd">The end time for the linear curve.</param>
- <param name="valueEnd">The end value for the linear curve.</param>
- <returns>
- <para>The linear curve created from the specified values.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.AnimationCurve.MoveKey(System.Int32,UnityEngine.Keyframe)">
- <summary>
- <para>Removes the keyframe at index and inserts key.</para>
- </summary>
- <param name="index">The index of the key to move.</param>
- <param name="key">The key (with its new time) to insert.</param>
- <returns>
- <para>The index of the keyframe after moving it.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.AnimationCurve.RemoveKey(System.Int32)">
- <summary>
- <para>Removes a key.</para>
- </summary>
- <param name="index">The index of the key to remove.</param>
- </member>
- <member name="M:UnityEngine.AnimationCurve.SmoothTangents(System.Int32,System.Single)">
- <summary>
- <para>Smooth the in and out tangents of the keyframe at index.</para>
- </summary>
- <param name="index">The index of the keyframe to be smoothed.</param>
- <param name="weight">The smoothing weight to apply to the keyframe's tangents.</param>
- </member>
- <member name="P:UnityEngine.AnimationCurve.this">
- <summary>
- <para>Retrieves the key at index. (Read Only)</para>
- </summary>
- </member>
- <member name="T:UnityEngine.AnisotropicFiltering">
- <summary>
- <para>Anisotropic filtering mode.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AnisotropicFiltering.Disable">
- <summary>
- <para>Disable anisotropic filtering for all textures.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AnisotropicFiltering.Enable">
- <summary>
- <para>Enable anisotropic filtering, as set for each texture.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AnisotropicFiltering.ForceEnable">
- <summary>
- <para>Enable anisotropic filtering for all textures.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Application">
- <summary>
- <para>Access to application run-time data.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Application.absoluteURL">
- <summary>
- <para>The URL of the document (what is shown in a browser's address bar) for WebGL (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Application.backgroundLoadingPriority">
- <summary>
- <para>Priority of background loading thread.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Application.buildGUID">
- <summary>
- <para>Returns a GUID for this build (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Application.cloudProjectId">
- <summary>
- <para>A unique cloud project identifier. It is unique for every project (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Application.companyName">
- <summary>
- <para>Return application company name (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Application.dataPath">
- <summary>
- <para>Contains the path to the game data folder (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Application.genuine">
- <summary>
- <para>Returns false if application is altered in any way after it was built.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Application.genuineCheckAvailable">
- <summary>
- <para>Returns true if application integrity can be confirmed.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Application.identifier">
- <summary>
- <para>Returns application identifier at runtime. On Apple platforms this is the 'bundleIdentifier' saved in the info.plist file, on Android it's the 'package' from the AndroidManifest.xml. </para>
- </summary>
- </member>
- <member name="P:UnityEngine.Application.installerName">
- <summary>
- <para>Returns the name of the store or package that installed the application (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Application.installMode">
- <summary>
- <para>Returns application install mode (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Application.internetReachability">
- <summary>
- <para>Returns the type of Internet reachability currently possible on the device.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Application.isBatchMode">
- <summary>
- <para>Returns true when Unity is launched with the -batchmode flag from the command line (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Application.isConsolePlatform">
- <summary>
- <para>Is the current Runtime platform a known console platform.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Application.isEditor">
- <summary>
- <para>Are we running inside the Unity editor? (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Application.isFocused">
- <summary>
- <para>Whether the player currently has focus. Read-only.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Application.isLoadingLevel">
- <summary>
- <para>Is some level being loaded? (Read Only) (Obsolete).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Application.isMobilePlatform">
- <summary>
- <para>Is the current Runtime platform a known mobile platform.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Application.isPlaying">
- <summary>
- <para>Returns true when in any kind of player is active.(Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Application.isShowingSplashScreen">
- <summary>
- <para>Checks whether splash screen is being shown.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Application.levelCount">
- <summary>
- <para>The total number of levels available (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Application.loadedLevel">
- <summary>
- <para>The level index that was last loaded (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Application.loadedLevelName">
- <summary>
- <para>The name of the level that was last loaded (Read Only).</para>
- </summary>
- </member>
- <member name="?:UnityEngine.Application.logMessageReceived(UnityEngine.Application/LogCallback)">
- <summary>
- <para>Event that is fired if a log message is received.</para>
- </summary>
- <param name="value"></param>
- </member>
- <member name="?:UnityEngine.Application.logMessageReceivedThreaded(UnityEngine.Application/LogCallback)">
- <summary>
- <para>Event that is fired if a log message is received.</para>
- </summary>
- <param name="value"></param>
- </member>
- <member name="?:UnityEngine.Application.lowMemory(UnityEngine.Application/LowMemoryCallback)">
- <summary>
- <para>This event occurs when an iOS or Android device notifies of low memory while the app is running in the foreground. You can release non-critical assets from memory (such as, textures or audio clips) in response to this in order to avoid the app being terminated. You can also load smaller versions of such assets. Furthermore, you should serialize any transient data to permanent storage to avoid data loss if the app is terminated.
-
-This event corresponds to the following callbacks on the different platforms:
-
-- iOS: [UIApplicationDelegate applicationDidReceiveMemoryWarning]
-
-- Android: onLowMemory() and onTrimMemory(level == TRIM_MEMORY_RUNNING_CRITICAL)
-
-Here is an example of handling the callback:</para>
- </summary>
- <param name="value"></param>
- </member>
- <member name="?:UnityEngine.Application.onBeforeRender(UnityEngine.Events.UnityAction)">
- <summary>
- <para>Delegate method used to register for "Just Before Render" input updates for VR devices.</para>
- </summary>
- <param name="value"></param>
- </member>
- <member name="P:UnityEngine.Application.persistentDataPath">
- <summary>
- <para>Contains the path to a persistent data directory (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Application.platform">
- <summary>
- <para>Returns the platform the game is running on (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Application.productName">
- <summary>
- <para>Returns application product name (Read Only).</para>
- </summary>
- </member>
- <member name="?:UnityEngine.Application.quitting(System.Action)">
- <summary>
- <para>Unity raises this event when the player application is qutting.</para>
- </summary>
- <param name="value"></param>
- </member>
- <member name="P:UnityEngine.Application.runInBackground">
- <summary>
- <para>Should the player be running when the application is in the background?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Application.sandboxType">
- <summary>
- <para>Returns application running in sandbox (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Application.stackTraceLogType">
- <summary>
- <para>Stack trace logging options. The default value is StackTraceLogType.ScriptOnly.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Application.streamedBytes">
- <summary>
- <para>How many bytes have we downloaded from the main unity web stream (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Application.streamingAssetsPath">
- <summary>
- <para>Contains the path to the StreamingAssets folder (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Application.systemLanguage">
- <summary>
- <para>The language the user's operating system is running in.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Application.targetFrameRate">
- <summary>
- <para>Instructs game to try to render at a specified frame rate.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Application.temporaryCachePath">
- <summary>
- <para>Contains the path to a temporary data / cache directory (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Application.unityVersion">
- <summary>
- <para>The version of the Unity runtime used to play the content.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Application.version">
- <summary>
- <para>Returns application version number (Read Only).</para>
- </summary>
- </member>
- <member name="?:UnityEngine.Application.wantsToQuit(System.Func`1&lt;System.Boolean&gt;)">
- <summary>
- <para>Unity raises this event when the player application wants to quit.</para>
- </summary>
- <param name="value"></param>
- </member>
- <member name="P:UnityEngine.Application.webSecurityEnabled">
- <summary>
- <para>Indicates whether Unity's webplayer security model is enabled.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Application.AdvertisingIdentifierCallback">
- <summary>
- <para>Delegate method for fetching advertising ID.</para>
- </summary>
- <param name="advertisingId">Advertising ID.</param>
- <param name="trackingEnabled">Indicates whether user has chosen to limit ad tracking.</param>
- <param name="errorMsg">Error message.</param>
- </member>
- <member name="M:UnityEngine.Application.CancelQuit">
- <summary>
- <para>Cancels quitting the application. This is useful for showing a splash screen at the end of a game.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Application.CanStreamedLevelBeLoaded(System.Int32)">
- <summary>
- <para>Can the streamed level be loaded?</para>
- </summary>
- <param name="levelIndex"></param>
- </member>
- <member name="M:UnityEngine.Application.CanStreamedLevelBeLoaded(System.String)">
- <summary>
- <para>Can the streamed level be loaded?</para>
- </summary>
- <param name="levelName"></param>
- </member>
- <member name="M:UnityEngine.Application.CaptureScreenshot(System.String)">
- <summary>
- <para>Captures a screenshot at path filename as a PNG file.</para>
- </summary>
- <param name="filename">Pathname to save the screenshot file to.</param>
- <param name="superSize">Factor by which to increase resolution.</param>
- </member>
- <member name="M:UnityEngine.Application.CaptureScreenshot(System.String,System.Int32)">
- <summary>
- <para>Captures a screenshot at path filename as a PNG file.</para>
- </summary>
- <param name="filename">Pathname to save the screenshot file to.</param>
- <param name="superSize">Factor by which to increase resolution.</param>
- </member>
- <member name="M:UnityEngine.Application.ExternalCall(System.String,System.Object[])">
- <summary>
- <para>Calls a function in the web page that contains the WebGL Player.</para>
- </summary>
- <param name="functionName">Name of the function to call.</param>
- <param name="args">Array of arguments passed in the call.</param>
- </member>
- <member name="M:UnityEngine.Application.ExternalEval(System.String)">
- <summary>
- <para>Execution of a script function in the contained web page.</para>
- </summary>
- <param name="script">The Javascript function to call.</param>
- </member>
- <member name="M:UnityEngine.Application.GetBuildTags">
- <summary>
- <para>Returns an array of feature tags in use for this build.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Application.GetStackTraceLogType(UnityEngine.LogType)">
- <summary>
- <para>Get stack trace logging options. The default value is StackTraceLogType.ScriptOnly.</para>
- </summary>
- <param name="logType"></param>
- </member>
- <member name="M:UnityEngine.Application.GetStreamProgressForLevel(System.Int32)">
- <summary>
- <para>How far has the download progressed? [0...1].</para>
- </summary>
- <param name="levelIndex"></param>
- </member>
- <member name="M:UnityEngine.Application.GetStreamProgressForLevel(System.String)">
- <summary>
- <para>How far has the download progressed? [0...1].</para>
- </summary>
- <param name="levelName"></param>
- </member>
- <member name="M:UnityEngine.Application.HasProLicense">
- <summary>
- <para>Is Unity activated with the Pro license?</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Application.HasUserAuthorization(UnityEngine.UserAuthorization)">
- <summary>
- <para>Check if the user has authorized use of the webcam or microphone in the Web Player.</para>
- </summary>
- <param name="mode"></param>
- </member>
- <member name="M:UnityEngine.Application.LoadLevel(System.Int32)">
- <summary>
- <para>Note: This is now obsolete. Use SceneManager.LoadScene instead.</para>
- </summary>
- <param name="index">The level to load.</param>
- <param name="name">The name of the level to load.</param>
- </member>
- <member name="M:UnityEngine.Application.LoadLevel(System.String)">
- <summary>
- <para>Note: This is now obsolete. Use SceneManager.LoadScene instead.</para>
- </summary>
- <param name="index">The level to load.</param>
- <param name="name">The name of the level to load.</param>
- </member>
- <member name="M:UnityEngine.Application.LoadLevelAdditive(System.Int32)">
- <summary>
- <para>Loads a level additively.</para>
- </summary>
- <param name="index"></param>
- <param name="name"></param>
- </member>
- <member name="M:UnityEngine.Application.LoadLevelAdditive(System.String)">
- <summary>
- <para>Loads a level additively.</para>
- </summary>
- <param name="index"></param>
- <param name="name"></param>
- </member>
- <member name="M:UnityEngine.Application.LoadLevelAdditiveAsync(System.Int32)">
- <summary>
- <para>Loads the level additively and asynchronously in the background.</para>
- </summary>
- <param name="index"></param>
- <param name="levelName"></param>
- </member>
- <member name="M:UnityEngine.Application.LoadLevelAdditiveAsync(System.String)">
- <summary>
- <para>Loads the level additively and asynchronously in the background.</para>
- </summary>
- <param name="index"></param>
- <param name="levelName"></param>
- </member>
- <member name="M:UnityEngine.Application.LoadLevelAsync(System.Int32)">
- <summary>
- <para>Loads the level asynchronously in the background.</para>
- </summary>
- <param name="index"></param>
- <param name="levelName"></param>
- </member>
- <member name="M:UnityEngine.Application.LoadLevelAsync(System.String)">
- <summary>
- <para>Loads the level asynchronously in the background.</para>
- </summary>
- <param name="index"></param>
- <param name="levelName"></param>
- </member>
- <member name="T:UnityEngine.Application.LogCallback">
- <summary>
- <para>Use this delegate type with Application.logMessageReceived or Application.logMessageReceivedThreaded to monitor what gets logged.</para>
- </summary>
- <param name="condition"></param>
- <param name="stackTrace"></param>
- <param name="type"></param>
- </member>
- <member name="T:UnityEngine.Application.LowMemoryCallback">
- <summary>
- <para>This is the delegate function when a mobile device notifies of low memory.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Application.OpenURL(System.String)">
- <summary>
- <para>Opens the url in a browser.</para>
- </summary>
- <param name="url"></param>
- </member>
- <member name="M:UnityEngine.Application.Quit">
- <summary>
- <para>Quits the player application.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Application.RequestAdvertisingIdentifierAsync(UnityEngine.Application/AdvertisingIdentifierCallback)">
- <summary>
- <para>Request advertising ID for iOS, Android and Windows Store.</para>
- </summary>
- <param name="delegateMethod">Delegate method.</param>
- <returns>
- <para>Returns true if successful, or false for platforms which do not support Advertising Identifiers. In this case, the delegate method is not invoked.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Application.RequestUserAuthorization(UnityEngine.UserAuthorization)">
- <summary>
- <para>Request authorization to use the webcam or microphone in the Web Player.</para>
- </summary>
- <param name="mode"></param>
- </member>
- <member name="M:UnityEngine.Application.SetBuildTags(System.String[])">
- <summary>
- <para>Set an array of feature tags for this build.</para>
- </summary>
- <param name="buildTags"></param>
- </member>
- <member name="M:UnityEngine.Application.SetStackTraceLogType(UnityEngine.LogType,UnityEngine.StackTraceLogType)">
- <summary>
- <para>Set stack trace logging options. The default value is StackTraceLogType.ScriptOnly.</para>
- </summary>
- <param name="logType"></param>
- <param name="stackTraceType"></param>
- </member>
- <member name="M:UnityEngine.Application.Unload">
- <summary>
- <para>Unloads the Unity runtime.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Application.UnloadLevel(System.Int32)">
- <summary>
- <para>Unloads all GameObject associated with the given scene. Note that assets are currently not unloaded, in order to free up asset memory call Resources.UnloadAllUnusedAssets.</para>
- </summary>
- <param name="index">Index of the scene in the PlayerSettings to unload.</param>
- <param name="scenePath">Name of the scene to Unload.</param>
- <returns>
- <para>Return true if the scene is unloaded.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Application.UnloadLevel(System.String)">
- <summary>
- <para>Unloads all GameObject associated with the given scene. Note that assets are currently not unloaded, in order to free up asset memory call Resources.UnloadAllUnusedAssets.</para>
- </summary>
- <param name="index">Index of the scene in the PlayerSettings to unload.</param>
- <param name="scenePath">Name of the scene to Unload.</param>
- <returns>
- <para>Return true if the scene is unloaded.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.ApplicationInstallMode">
- <summary>
- <para>Application installation mode (Read Only).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ApplicationInstallMode.Adhoc">
- <summary>
- <para>Application installed via ad hoc distribution.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ApplicationInstallMode.DeveloperBuild">
- <summary>
- <para>Application installed via developer build.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ApplicationInstallMode.Editor">
- <summary>
- <para>Application running in editor.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ApplicationInstallMode.Enterprise">
- <summary>
- <para>Application installed via enterprise distribution.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ApplicationInstallMode.Store">
- <summary>
- <para>Application installed via online store.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ApplicationInstallMode.Unknown">
- <summary>
- <para>Application install mode unknown.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ApplicationSandboxType">
- <summary>
- <para>Application sandbox type.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ApplicationSandboxType.NotSandboxed">
- <summary>
- <para>Application not running in a sandbox.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ApplicationSandboxType.SandboxBroken">
- <summary>
- <para>Application is running in broken sandbox.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ApplicationSandboxType.Sandboxed">
- <summary>
- <para>Application is running in a sandbox.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ApplicationSandboxType.Unknown">
- <summary>
- <para>Application sandbox type is unknown.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.AssemblyIsEditorAssembly">
- <summary>
- <para>Assembly level attribute. Any classes in an assembly with this attribute will be considered to be Editor Classes.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.AssemblyIsEditorAssembly.#ctor">
- <summary>
- <para>Constructor.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Assertions.Assert">
- <summary>
- <para>The Assert class contains assertion methods for setting invariants in the code.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Assertions.Assert.raiseExceptions">
- <summary>
- <para>Whether Unity should throw an exception on a failure.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Assertions.Assert.AreApproximatelyEqual(System.Single,System.Single)">
- <summary>
- <para>Asserts that the values are approximately equal. An absolute error check is used for approximate equality check (|a-b| &lt; tolerance). Default tolerance is 0.00001f.
-
-Note: Every time you call the method with tolerance specified, a new instance of Assertions.Comparers.FloatComparer is created. For performance reasons you might want to instance your own comparer and pass it to the AreEqual method. If the tolerance is not specifies, a default comparer is used and the issue does not occur.</para>
- </summary>
- <param name="tolerance">Tolerance of approximation.</param>
- <param name="expected"></param>
- <param name="actual"></param>
- <param name="message"></param>
- </member>
- <member name="M:UnityEngine.Assertions.Assert.AreApproximatelyEqual(System.Single,System.Single,System.String)">
- <summary>
- <para>Asserts that the values are approximately equal. An absolute error check is used for approximate equality check (|a-b| &lt; tolerance). Default tolerance is 0.00001f.
-
-Note: Every time you call the method with tolerance specified, a new instance of Assertions.Comparers.FloatComparer is created. For performance reasons you might want to instance your own comparer and pass it to the AreEqual method. If the tolerance is not specifies, a default comparer is used and the issue does not occur.</para>
- </summary>
- <param name="tolerance">Tolerance of approximation.</param>
- <param name="expected"></param>
- <param name="actual"></param>
- <param name="message"></param>
- </member>
- <member name="M:UnityEngine.Assertions.Assert.AreApproximatelyEqual(System.Single,System.Single,System.Single)">
- <summary>
- <para>Asserts that the values are approximately equal. An absolute error check is used for approximate equality check (|a-b| &lt; tolerance). Default tolerance is 0.00001f.
-
-Note: Every time you call the method with tolerance specified, a new instance of Assertions.Comparers.FloatComparer is created. For performance reasons you might want to instance your own comparer and pass it to the AreEqual method. If the tolerance is not specifies, a default comparer is used and the issue does not occur.</para>
- </summary>
- <param name="tolerance">Tolerance of approximation.</param>
- <param name="expected"></param>
- <param name="actual"></param>
- <param name="message"></param>
- </member>
- <member name="M:UnityEngine.Assertions.Assert.AreApproximatelyEqual(System.Single,System.Single,System.Single,System.String)">
- <summary>
- <para>Asserts that the values are approximately equal. An absolute error check is used for approximate equality check (|a-b| &lt; tolerance). Default tolerance is 0.00001f.
-
-Note: Every time you call the method with tolerance specified, a new instance of Assertions.Comparers.FloatComparer is created. For performance reasons you might want to instance your own comparer and pass it to the AreEqual method. If the tolerance is not specifies, a default comparer is used and the issue does not occur.</para>
- </summary>
- <param name="tolerance">Tolerance of approximation.</param>
- <param name="expected"></param>
- <param name="actual"></param>
- <param name="message"></param>
- </member>
- <member name="M:UnityEngine.Assertions.Assert.AreEqual(T,T)">
- <summary>
- <para>Asserts that the values are equal. If no comparer is specified, EqualityComparer&lt;T&gt;.Default is used.</para>
- </summary>
- <param name="expected"></param>
- <param name="actual"></param>
- <param name="message"></param>
- <param name="comparer"></param>
- </member>
- <member name="M:UnityEngine.Assertions.Assert.AreEqual(T,T,System.String)">
- <summary>
- <para>Asserts that the values are equal. If no comparer is specified, EqualityComparer&lt;T&gt;.Default is used.</para>
- </summary>
- <param name="expected"></param>
- <param name="actual"></param>
- <param name="message"></param>
- <param name="comparer"></param>
- </member>
- <member name="M:UnityEngine.Assertions.Assert.AreEqual(T,T,System.String,System.Collections.Generic.IEqualityComparer`1&lt;T&gt;)">
- <summary>
- <para>Asserts that the values are equal. If no comparer is specified, EqualityComparer&lt;T&gt;.Default is used.</para>
- </summary>
- <param name="expected"></param>
- <param name="actual"></param>
- <param name="message"></param>
- <param name="comparer"></param>
- </member>
- <member name="M:UnityEngine.Assertions.Assert.AreNotApproximatelyEqual(System.Single,System.Single)">
- <summary>
- <para>Asserts that the values are approximately not equal. An absolute error check is used for approximate equality check (|a-b| &lt; tolerance). Default tolerance is 0.00001f.</para>
- </summary>
- <param name="tolerance">Tolerance of approximation.</param>
- <param name="expected"></param>
- <param name="actual"></param>
- <param name="message"></param>
- </member>
- <member name="M:UnityEngine.Assertions.Assert.AreNotApproximatelyEqual(System.Single,System.Single,System.String)">
- <summary>
- <para>Asserts that the values are approximately not equal. An absolute error check is used for approximate equality check (|a-b| &lt; tolerance). Default tolerance is 0.00001f.</para>
- </summary>
- <param name="tolerance">Tolerance of approximation.</param>
- <param name="expected"></param>
- <param name="actual"></param>
- <param name="message"></param>
- </member>
- <member name="M:UnityEngine.Assertions.Assert.AreNotApproximatelyEqual(System.Single,System.Single,System.Single)">
- <summary>
- <para>Asserts that the values are approximately not equal. An absolute error check is used for approximate equality check (|a-b| &lt; tolerance). Default tolerance is 0.00001f.</para>
- </summary>
- <param name="tolerance">Tolerance of approximation.</param>
- <param name="expected"></param>
- <param name="actual"></param>
- <param name="message"></param>
- </member>
- <member name="M:UnityEngine.Assertions.Assert.AreNotApproximatelyEqual(System.Single,System.Single,System.Single,System.String)">
- <summary>
- <para>Asserts that the values are approximately not equal. An absolute error check is used for approximate equality check (|a-b| &lt; tolerance). Default tolerance is 0.00001f.</para>
- </summary>
- <param name="tolerance">Tolerance of approximation.</param>
- <param name="expected"></param>
- <param name="actual"></param>
- <param name="message"></param>
- </member>
- <member name="M:UnityEngine.Assertions.Assert.AreNotEqual(T,T)">
- <summary>
- <para>Asserts that the values are not equal.</para>
- </summary>
- <param name="expected"></param>
- <param name="actual"></param>
- <param name="message"></param>
- <param name="comparer"></param>
- </member>
- <member name="M:UnityEngine.Assertions.Assert.AreNotEqual(T,T,System.String)">
- <summary>
- <para>Asserts that the values are not equal.</para>
- </summary>
- <param name="expected"></param>
- <param name="actual"></param>
- <param name="message"></param>
- <param name="comparer"></param>
- </member>
- <member name="M:UnityEngine.Assertions.Assert.AreNotEqual(T,T,System.String,System.Collections.Generic.IEqualityComparer`1&lt;T&gt;)">
- <summary>
- <para>Asserts that the values are not equal.</para>
- </summary>
- <param name="expected"></param>
- <param name="actual"></param>
- <param name="message"></param>
- <param name="comparer"></param>
- </member>
- <member name="M:UnityEngine.Assertions.Assert.IsFalse(System.Boolean)">
- <summary>
- <para>Asserts that the condition is false.</para>
- </summary>
- <param name="condition"></param>
- <param name="message"></param>
- </member>
- <member name="M:UnityEngine.Assertions.Assert.IsFalse(System.Boolean,System.String)">
- <summary>
- <para>Asserts that the condition is false.</para>
- </summary>
- <param name="condition"></param>
- <param name="message"></param>
- </member>
- <member name="M:UnityEngine.Assertions.Assert.IsNotNull(T)">
- <summary>
- <para>Asserts that the value is not null.</para>
- </summary>
- <param name="value"></param>
- <param name="message"></param>
- </member>
- <member name="M:UnityEngine.Assertions.Assert.IsNotNull(T,System.String)">
- <summary>
- <para>Asserts that the value is not null.</para>
- </summary>
- <param name="value"></param>
- <param name="message"></param>
- </member>
- <member name="M:UnityEngine.Assertions.Assert.IsNull(T)">
- <summary>
- <para>Asserts that the value is null.</para>
- </summary>
- <param name="value"></param>
- <param name="message"></param>
- </member>
- <member name="M:UnityEngine.Assertions.Assert.IsNull(T,System.String)">
- <summary>
- <para>Asserts that the value is null.</para>
- </summary>
- <param name="value"></param>
- <param name="message"></param>
- </member>
- <member name="M:UnityEngine.Assertions.Assert.IsTrue(System.Boolean)">
- <summary>
- <para>Asserts that the condition is true.</para>
- </summary>
- <param name="condition"></param>
- <param name="message"></param>
- </member>
- <member name="M:UnityEngine.Assertions.Assert.IsTrue(System.Boolean,System.String)">
- <summary>
- <para>Asserts that the condition is true.</para>
- </summary>
- <param name="condition"></param>
- <param name="message"></param>
- </member>
- <member name="T:UnityEngine.Assertions.AssertionException">
- <summary>
- <para>An exception that is thrown on a failure. Assertions.Assert._raiseExceptions needs to be set to true.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Assertions.Comparers.FloatComparer">
- <summary>
- <para>A float comparer used by Assertions.Assert performing approximate comparison.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Assertions.Comparers.FloatComparer.kEpsilon">
- <summary>
- <para>Default epsilon used by the comparer.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Assertions.Comparers.FloatComparer.s_ComparerWithDefaultTolerance">
- <summary>
- <para>Default instance of a comparer class with deafult error epsilon and absolute error check.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Assertions.Comparers.FloatComparer.AreEqual(System.Single,System.Single,System.Single)">
- <summary>
- <para>Performs equality check with absolute error check.</para>
- </summary>
- <param name="expected">Expected value.</param>
- <param name="actual">Actual value.</param>
- <param name="error">Comparison error.</param>
- <returns>
- <para>Result of the comparison.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Assertions.Comparers.FloatComparer.AreEqualRelative(System.Single,System.Single,System.Single)">
- <summary>
- <para>Performs equality check with relative error check.</para>
- </summary>
- <param name="expected">Expected value.</param>
- <param name="actual">Actual value.</param>
- <param name="error">Comparison error.</param>
- <returns>
- <para>Result of the comparison.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Assertions.Comparers.FloatComparer.#ctor">
- <summary>
- <para>Creates an instance of the comparer.</para>
- </summary>
- <param name="relative">Should a relative check be used when comparing values? By default, an absolute check will be used.</param>
- <param name="error">Allowed comparison error. By default, the FloatComparer.kEpsilon is used.</param>
- </member>
- <member name="M:UnityEngine.Assertions.Comparers.FloatComparer.#ctor(System.Boolean)">
- <summary>
- <para>Creates an instance of the comparer.</para>
- </summary>
- <param name="relative">Should a relative check be used when comparing values? By default, an absolute check will be used.</param>
- <param name="error">Allowed comparison error. By default, the FloatComparer.kEpsilon is used.</param>
- </member>
- <member name="M:UnityEngine.Assertions.Comparers.FloatComparer.#ctor(System.Single)">
- <summary>
- <para>Creates an instance of the comparer.</para>
- </summary>
- <param name="relative">Should a relative check be used when comparing values? By default, an absolute check will be used.</param>
- <param name="error">Allowed comparison error. By default, the FloatComparer.kEpsilon is used.</param>
- </member>
- <member name="M:UnityEngine.Assertions.Comparers.FloatComparer.#ctor(System.Single,System.Boolean)">
- <summary>
- <para>Creates an instance of the comparer.</para>
- </summary>
- <param name="relative">Should a relative check be used when comparing values? By default, an absolute check will be used.</param>
- <param name="error">Allowed comparison error. By default, the FloatComparer.kEpsilon is used.</param>
- </member>
- <member name="T:UnityEngine.Assertions.Must.MustExtensions">
- <summary>
- <para>An extension class that serves as a wrapper for the Assert class.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Assertions.Must.MustExtensions.MustBeApproximatelyEqual(System.Single,System.Single)">
- <summary>
- <para>An extension method for Assertions.Assert.AreApproximatelyEqual.</para>
- </summary>
- <param name="actual"></param>
- <param name="expected"></param>
- <param name="message"></param>
- <param name="tolerance"></param>
- </member>
- <member name="M:UnityEngine.Assertions.Must.MustExtensions.MustBeApproximatelyEqual(System.Single,System.Single,System.String)">
- <summary>
- <para>An extension method for Assertions.Assert.AreApproximatelyEqual.</para>
- </summary>
- <param name="actual"></param>
- <param name="expected"></param>
- <param name="message"></param>
- <param name="tolerance"></param>
- </member>
- <member name="M:UnityEngine.Assertions.Must.MustExtensions.MustBeApproximatelyEqual(System.Single,System.Single,System.Single)">
- <summary>
- <para>An extension method for Assertions.Assert.AreApproximatelyEqual.</para>
- </summary>
- <param name="actual"></param>
- <param name="expected"></param>
- <param name="message"></param>
- <param name="tolerance"></param>
- </member>
- <member name="M:UnityEngine.Assertions.Must.MustExtensions.MustBeApproximatelyEqual(System.Single,System.Single,System.Single,System.String)">
- <summary>
- <para>An extension method for Assertions.Assert.AreApproximatelyEqual.</para>
- </summary>
- <param name="actual"></param>
- <param name="expected"></param>
- <param name="message"></param>
- <param name="tolerance"></param>
- </member>
- <member name="M:UnityEngine.Assertions.Must.MustExtensions.MustBeEqual(T,T)">
- <summary>
- <para>An extension method for Assertions.Assert.AreEqual.</para>
- </summary>
- <param name="actual"></param>
- <param name="expected"></param>
- <param name="message"></param>
- </member>
- <member name="M:UnityEngine.Assertions.Must.MustExtensions.MustBeEqual(T,T,System.String)">
- <summary>
- <para>An extension method for Assertions.Assert.AreEqual.</para>
- </summary>
- <param name="actual"></param>
- <param name="expected"></param>
- <param name="message"></param>
- </member>
- <member name="M:UnityEngine.Assertions.Must.MustExtensions.MustBeFalse(System.Boolean)">
- <summary>
- <para>An extension method for Assertions.Assert.IsFalse.</para>
- </summary>
- <param name="value"></param>
- <param name="message"></param>
- </member>
- <member name="M:UnityEngine.Assertions.Must.MustExtensions.MustBeFalse(System.Boolean,System.String)">
- <summary>
- <para>An extension method for Assertions.Assert.IsFalse.</para>
- </summary>
- <param name="value"></param>
- <param name="message"></param>
- </member>
- <member name="M:UnityEngine.Assertions.Must.MustExtensions.MustBeNull(T)">
- <summary>
- <para>An extension method for Assertions.Assert.IsNull.</para>
- </summary>
- <param name="expected"></param>
- <param name="message"></param>
- </member>
- <member name="M:UnityEngine.Assertions.Must.MustExtensions.MustBeNull(T,System.String)">
- <summary>
- <para>An extension method for Assertions.Assert.IsNull.</para>
- </summary>
- <param name="expected"></param>
- <param name="message"></param>
- </member>
- <member name="M:UnityEngine.Assertions.Must.MustExtensions.MustBeTrue(System.Boolean)">
- <summary>
- <para>An extension method for Assertions.Assert.IsTrue.</para>
- </summary>
- <param name="value"></param>
- <param name="message"></param>
- </member>
- <member name="M:UnityEngine.Assertions.Must.MustExtensions.MustBeTrue(System.Boolean,System.String)">
- <summary>
- <para>An extension method for Assertions.Assert.IsTrue.</para>
- </summary>
- <param name="value"></param>
- <param name="message"></param>
- </member>
- <member name="M:UnityEngine.Assertions.Must.MustExtensions.MustNotBeApproximatelyEqual(System.Single,System.Single)">
- <summary>
- <para>An extension method for Assertions.Assert.AreNotApproximatelyEqual.</para>
- </summary>
- <param name="actual"></param>
- <param name="expected"></param>
- <param name="message"></param>
- <param name="tolerance"></param>
- </member>
- <member name="M:UnityEngine.Assertions.Must.MustExtensions.MustNotBeApproximatelyEqual(System.Single,System.Single,System.String)">
- <summary>
- <para>An extension method for Assertions.Assert.AreNotApproximatelyEqual.</para>
- </summary>
- <param name="actual"></param>
- <param name="expected"></param>
- <param name="message"></param>
- <param name="tolerance"></param>
- </member>
- <member name="M:UnityEngine.Assertions.Must.MustExtensions.MustNotBeApproximatelyEqual(System.Single,System.Single,System.Single)">
- <summary>
- <para>An extension method for Assertions.Assert.AreNotApproximatelyEqual.</para>
- </summary>
- <param name="actual"></param>
- <param name="expected"></param>
- <param name="message"></param>
- <param name="tolerance"></param>
- </member>
- <member name="M:UnityEngine.Assertions.Must.MustExtensions.MustNotBeApproximatelyEqual(System.Single,System.Single,System.Single,System.String)">
- <summary>
- <para>An extension method for Assertions.Assert.AreNotApproximatelyEqual.</para>
- </summary>
- <param name="actual"></param>
- <param name="expected"></param>
- <param name="message"></param>
- <param name="tolerance"></param>
- </member>
- <member name="M:UnityEngine.Assertions.Must.MustExtensions.MustNotBeEqual(T,T)">
- <summary>
- <para>An extension method for Assertions.Assert.AreNotEqual.</para>
- </summary>
- <param name="actual"></param>
- <param name="expected"></param>
- <param name="message"></param>
- </member>
- <member name="M:UnityEngine.Assertions.Must.MustExtensions.MustNotBeEqual(T,T,System.String)">
- <summary>
- <para>An extension method for Assertions.Assert.AreNotEqual.</para>
- </summary>
- <param name="actual"></param>
- <param name="expected"></param>
- <param name="message"></param>
- </member>
- <member name="M:UnityEngine.Assertions.Must.MustExtensions.MustNotBeNull(T)">
- <summary>
- <para>An extension method for Assertions.Assert.AreNotNull.</para>
- </summary>
- <param name="expected"></param>
- <param name="message"></param>
- </member>
- <member name="M:UnityEngine.Assertions.Must.MustExtensions.MustNotBeNull(T,System.String)">
- <summary>
- <para>An extension method for Assertions.Assert.AreNotNull.</para>
- </summary>
- <param name="expected"></param>
- <param name="message"></param>
- </member>
- <member name="T:UnityEngine.AsyncOperation">
- <summary>
- <para>Asynchronous operation coroutine.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AsyncOperation.allowSceneActivation">
- <summary>
- <para>Allow scenes to be activated as soon as it is ready.</para>
- </summary>
- </member>
- <member name="?:UnityEngine.AsyncOperation.completed(System.Action`1&lt;UnityEngine.AsyncOperation&gt;)">
- <summary>
- <para>Event that is invoked upon operation completion. An event handler that is registered in the same frame as the call that creates it will be invoked next frame, even if the operation is able to complete synchronously. If a handler is registered after the operation has completed and has already invoked the complete event, the handler will be called synchronously.</para>
- </summary>
- <param name="value">Action&lt;AsyncOperation&gt; handler - function signature for completion event handler.</param>
- </member>
- <member name="P:UnityEngine.AsyncOperation.isDone">
- <summary>
- <para>Has the operation finished? (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AsyncOperation.priority">
- <summary>
- <para>Priority lets you tweak in which order async operation calls will be performed.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AsyncOperation.progress">
- <summary>
- <para>What's the operation's progress. (Read Only)</para>
- </summary>
- </member>
- <member name="T:UnityEngine.AudioType">
- <summary>
- <para>Type of the imported(native) data.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioType.ACC">
- <summary>
- <para>Acc - not supported.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioType.AIFF">
- <summary>
- <para>Aiff.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioType.AUDIOQUEUE">
- <summary>
- <para>iPhone hardware decoder, supports AAC, ALAC and MP3. Extracodecdata is a pointer to an FMOD_AUDIOQUEUE_EXTRACODECDATA structure.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioType.IT">
- <summary>
- <para>Impulse tracker.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioType.MOD">
- <summary>
- <para>Protracker / Fasttracker MOD.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioType.MPEG">
- <summary>
- <para>MP2/MP3 MPEG.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioType.OGGVORBIS">
- <summary>
- <para>Ogg vorbis.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioType.S3M">
- <summary>
- <para>ScreamTracker 3.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioType.UNKNOWN">
- <summary>
- <para>3rd party / unknown plugin format.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioType.VAG">
- <summary>
- <para>VAG.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioType.WAV">
- <summary>
- <para>Microsoft WAV.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioType.XM">
- <summary>
- <para>FastTracker 2 XM.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AudioType.XMA">
- <summary>
- <para>Xbox360 XMA.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.BatteryStatus">
- <summary>
- <para>Enumeration for SystemInfo.batteryStatus which represents the current status of the device's battery.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.BatteryStatus.Charging">
- <summary>
- <para>Device is plugged in and charging.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.BatteryStatus.Discharging">
- <summary>
- <para>Device is unplugged and discharging.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.BatteryStatus.Full">
- <summary>
- <para>Device is plugged in and the battery is full.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.BatteryStatus.NotCharging">
- <summary>
- <para>Device is plugged in, but is not charging.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.BatteryStatus.Unknown">
- <summary>
- <para>The device's battery status cannot be determined. If battery status is not available on your target platform, SystemInfo.batteryStatus will return this value.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.BeforeRenderOrderAttribute">
- <summary>
- <para>Use this BeforeRenderOrderAttribute when you need to specify a custom callback order for Application.onBeforeRender.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.BeforeRenderOrderAttribute.order">
- <summary>
- <para>The order, lowest to highest, that the Application.onBeforeRender event recievers will be called in.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.BeforeRenderOrderAttribute.#ctor(System.Int32)">
- <summary>
- <para>When applied to methods, specifies the order called during Application.onBeforeRender events.</para>
- </summary>
- <param name="order">The sorting order, sorted lowest to highest.</param>
- </member>
- <member name="T:UnityEngine.Behaviour">
- <summary>
- <para>Behaviours are Components that can be enabled or disabled.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Behaviour.enabled">
- <summary>
- <para>Enabled Behaviours are Updated, disabled Behaviours are not.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Behaviour.isActiveAndEnabled">
- <summary>
- <para>Has the Behaviour had enabled called.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.BillboardAsset">
- <summary>
- <para>BillboardAsset describes how a billboard is rendered.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.BillboardAsset.bottom">
- <summary>
- <para>Height of the billboard that is below ground.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.BillboardAsset.height">
- <summary>
- <para>Height of the billboard.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.BillboardAsset.imageCount">
- <summary>
- <para>Number of pre-rendered images that can be switched when the billboard is viewed from different angles.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.BillboardAsset.indexCount">
- <summary>
- <para>Number of indices in the billboard mesh.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.BillboardAsset.material">
- <summary>
- <para>The material used for rendering.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.BillboardAsset.vertexCount">
- <summary>
- <para>Number of vertices in the billboard mesh.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.BillboardAsset.width">
- <summary>
- <para>Width of the billboard.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.BillboardAsset.#ctor">
- <summary>
- <para>Constructs a new BillboardAsset.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.BillboardAsset.GetImageTexCoords">
- <summary>
- <para>Get the array of billboard image texture coordinate data.</para>
- </summary>
- <param name="imageTexCoords">The list that receives the array.</param>
- </member>
- <member name="M:UnityEngine.BillboardAsset.GetImageTexCoords(System.Collections.Generic.List`1&lt;UnityEngine.Vector4&gt;)">
- <summary>
- <para>Get the array of billboard image texture coordinate data.</para>
- </summary>
- <param name="imageTexCoords">The list that receives the array.</param>
- </member>
- <member name="M:UnityEngine.BillboardAsset.GetIndices">
- <summary>
- <para>Get the indices of the billboard mesh.</para>
- </summary>
- <param name="indices">The list that receives the array.</param>
- </member>
- <member name="M:UnityEngine.BillboardAsset.GetIndices(System.Collections.Generic.List`1&lt;System.UInt16&gt;)">
- <summary>
- <para>Get the indices of the billboard mesh.</para>
- </summary>
- <param name="indices">The list that receives the array.</param>
- </member>
- <member name="M:UnityEngine.BillboardAsset.GetVertices">
- <summary>
- <para>Get the vertices of the billboard mesh.</para>
- </summary>
- <param name="vertices">The list that receives the array.</param>
- </member>
- <member name="M:UnityEngine.BillboardAsset.GetVertices(System.Collections.Generic.List`1&lt;UnityEngine.Vector2&gt;)">
- <summary>
- <para>Get the vertices of the billboard mesh.</para>
- </summary>
- <param name="vertices">The list that receives the array.</param>
- </member>
- <member name="M:UnityEngine.BillboardAsset.SetImageTexCoords(UnityEngine.Vector4[])">
- <summary>
- <para>Set the array of billboard image texture coordinate data.</para>
- </summary>
- <param name="imageTexCoords">The array of data to set.</param>
- </member>
- <member name="M:UnityEngine.BillboardAsset.SetImageTexCoords(System.Collections.Generic.List`1&lt;UnityEngine.Vector4&gt;)">
- <summary>
- <para>Set the array of billboard image texture coordinate data.</para>
- </summary>
- <param name="imageTexCoords">The array of data to set.</param>
- </member>
- <member name="M:UnityEngine.BillboardAsset.SetIndices(System.UInt16[])">
- <summary>
- <para>Set the indices of the billboard mesh.</para>
- </summary>
- <param name="indices">The array of data to set.</param>
- </member>
- <member name="M:UnityEngine.BillboardAsset.SetIndices(System.Collections.Generic.List`1&lt;System.UInt16&gt;)">
- <summary>
- <para>Set the indices of the billboard mesh.</para>
- </summary>
- <param name="indices">The array of data to set.</param>
- </member>
- <member name="M:UnityEngine.BillboardAsset.SetVertices(UnityEngine.Vector2[])">
- <summary>
- <para>Set the vertices of the billboard mesh.</para>
- </summary>
- <param name="vertices">The array of data to set.</param>
- </member>
- <member name="M:UnityEngine.BillboardAsset.SetVertices(System.Collections.Generic.List`1&lt;UnityEngine.Vector2&gt;)">
- <summary>
- <para>Set the vertices of the billboard mesh.</para>
- </summary>
- <param name="vertices">The array of data to set.</param>
- </member>
- <member name="T:UnityEngine.BillboardRenderer">
- <summary>
- <para>Renders a billboard from a BillboardAsset.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.BillboardRenderer.billboard">
- <summary>
- <para>The BillboardAsset to render.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.BillboardRenderer.#ctor">
- <summary>
- <para>Constructor.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.BlendWeights">
- <summary>
- <para>Blend weights.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.BlendWeights.FourBones">
- <summary>
- <para>Four bones affect each vertex.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.BlendWeights.OneBone">
- <summary>
- <para>One bone affects each vertex.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.BlendWeights.TwoBones">
- <summary>
- <para>Two bones affect each vertex.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.BoneWeight">
- <summary>
- <para>Skinning bone weights of a vertex in the mesh.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.BoneWeight.boneIndex0">
- <summary>
- <para>Index of first bone.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.BoneWeight.boneIndex1">
- <summary>
- <para>Index of second bone.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.BoneWeight.boneIndex2">
- <summary>
- <para>Index of third bone.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.BoneWeight.boneIndex3">
- <summary>
- <para>Index of fourth bone.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.BoneWeight.weight0">
- <summary>
- <para>Skinning weight for first bone.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.BoneWeight.weight1">
- <summary>
- <para>Skinning weight for second bone.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.BoneWeight.weight2">
- <summary>
- <para>Skinning weight for third bone.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.BoneWeight.weight3">
- <summary>
- <para>Skinning weight for fourth bone.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.BoundingSphere">
- <summary>
- <para>Describes a single bounding sphere for use by a CullingGroup.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.BoundingSphere.position">
- <summary>
- <para>The position of the center of the BoundingSphere.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.BoundingSphere.radius">
- <summary>
- <para>The radius of the BoundingSphere.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.BoundingSphere.#ctor(UnityEngine.Vector3,System.Single)">
- <summary>
- <para>Initializes a BoundingSphere.</para>
- </summary>
- <param name="pos">The center of the sphere.</param>
- <param name="rad">The radius of the sphere.</param>
- <param name="packedSphere">A four-component vector containing the position (packed into the XYZ components) and radius (packed into the W component).</param>
- </member>
- <member name="M:UnityEngine.BoundingSphere.#ctor(UnityEngine.Vector4)">
- <summary>
- <para>Initializes a BoundingSphere.</para>
- </summary>
- <param name="pos">The center of the sphere.</param>
- <param name="rad">The radius of the sphere.</param>
- <param name="packedSphere">A four-component vector containing the position (packed into the XYZ components) and radius (packed into the W component).</param>
- </member>
- <member name="T:UnityEngine.Bounds">
- <summary>
- <para>Represents an axis aligned bounding box.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Bounds.center">
- <summary>
- <para>The center of the bounding box.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Bounds.extents">
- <summary>
- <para>The extents of the Bounding Box. This is always half of the size of the Bounds.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Bounds.max">
- <summary>
- <para>The maximal point of the box. This is always equal to center+extents.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Bounds.min">
- <summary>
- <para>The minimal point of the box. This is always equal to center-extents.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Bounds.size">
- <summary>
- <para>The total size of the box. This is always twice as large as the extents.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Bounds.ClosestPoint(UnityEngine.Vector3)">
- <summary>
- <para>The closest point on the bounding box.</para>
- </summary>
- <param name="point">Arbitrary point.</param>
- <returns>
- <para>The point on the bounding box or inside the bounding box.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Bounds.Contains(UnityEngine.Vector3)">
- <summary>
- <para>Is point contained in the bounding box?</para>
- </summary>
- <param name="point"></param>
- </member>
- <member name="M:UnityEngine.Bounds.#ctor(UnityEngine.Vector3,UnityEngine.Vector3)">
- <summary>
- <para>Creates a new Bounds.</para>
- </summary>
- <param name="center">The location of the origin of the Bounds.</param>
- <param name="size">The dimensions of the Bounds.</param>
- </member>
- <member name="M:UnityEngine.Bounds.Encapsulate(UnityEngine.Vector3)">
- <summary>
- <para>Grows the Bounds to include the point.</para>
- </summary>
- <param name="point"></param>
- </member>
- <member name="M:UnityEngine.Bounds.Encapsulate(UnityEngine.Bounds)">
- <summary>
- <para>Grow the bounds to encapsulate the bounds.</para>
- </summary>
- <param name="bounds"></param>
- </member>
- <member name="M:UnityEngine.Bounds.Expand(System.Single)">
- <summary>
- <para>Expand the bounds by increasing its size by amount along each side.</para>
- </summary>
- <param name="amount"></param>
- </member>
- <member name="M:UnityEngine.Bounds.Expand(UnityEngine.Vector3)">
- <summary>
- <para>Expand the bounds by increasing its size by amount along each side.</para>
- </summary>
- <param name="amount"></param>
- </member>
- <member name="M:UnityEngine.Bounds.IntersectRay(UnityEngine.Ray)">
- <summary>
- <para>Does ray intersect this bounding box?</para>
- </summary>
- <param name="ray"></param>
- </member>
- <member name="M:UnityEngine.Bounds.IntersectRay(UnityEngine.Ray,System.Single&amp;)">
- <summary>
- <para>Does ray intersect this bounding box?</para>
- </summary>
- <param name="ray"></param>
- <param name="distance"></param>
- </member>
- <member name="M:UnityEngine.Bounds.Intersects(UnityEngine.Bounds)">
- <summary>
- <para>Does another bounding box intersect with this bounding box?</para>
- </summary>
- <param name="bounds"></param>
- </member>
- <member name="M:UnityEngine.Bounds.SetMinMax(UnityEngine.Vector3,UnityEngine.Vector3)">
- <summary>
- <para>Sets the bounds to the min and max value of the box.</para>
- </summary>
- <param name="min"></param>
- <param name="max"></param>
- </member>
- <member name="M:UnityEngine.Bounds.SqrDistance(UnityEngine.Vector3)">
- <summary>
- <para>The smallest squared distance between the point and this bounding box.</para>
- </summary>
- <param name="point"></param>
- </member>
- <member name="M:UnityEngine.Bounds.ToString">
- <summary>
- <para>Returns a nicely formatted string for the bounds.</para>
- </summary>
- <param name="format"></param>
- </member>
- <member name="M:UnityEngine.Bounds.ToString(System.String)">
- <summary>
- <para>Returns a nicely formatted string for the bounds.</para>
- </summary>
- <param name="format"></param>
- </member>
- <member name="T:UnityEngine.BoundsInt">
- <summary>
- <para>Represents an axis aligned bounding box with all values as integers.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.BoundsInt.allPositionsWithin">
- <summary>
- <para>A BoundsInt.PositionCollection that contains all positions within the BoundsInt.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.BoundsInt.center">
- <summary>
- <para>The center of the bounding box.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.BoundsInt.max">
- <summary>
- <para>The maximal point of the box.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.BoundsInt.min">
- <summary>
- <para>The minimal point of the box.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.BoundsInt.position">
- <summary>
- <para>The position of the bounding box.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.BoundsInt.size">
- <summary>
- <para>The total size of the box.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.BoundsInt.x">
- <summary>
- <para>X value of the minimal point of the box.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.BoundsInt.xMax">
- <summary>
- <para>The maximal x point of the box.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.BoundsInt.xMin">
- <summary>
- <para>The minimal x point of the box.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.BoundsInt.y">
- <summary>
- <para>Y value of the minimal point of the box.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.BoundsInt.yMax">
- <summary>
- <para>The maximal y point of the box.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.BoundsInt.yMin">
- <summary>
- <para>The minimal y point of the box.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.BoundsInt.z">
- <summary>
- <para>Z value of the minimal point of the box.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.BoundsInt.zMax">
- <summary>
- <para>The maximal z point of the box.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.BoundsInt.zMin">
- <summary>
- <para>The minimal z point of the box.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.BoundsInt.ClampToBounds(UnityEngine.BoundsInt)">
- <summary>
- <para>Clamps the position and size of this bounding box to the given bounds.</para>
- </summary>
- <param name="bounds">Bounds to clamp to.</param>
- </member>
- <member name="M:UnityEngine.BoundsInt.Contains(UnityEngine.Vector3Int)">
- <summary>
- <para>Is point contained in the bounding box?</para>
- </summary>
- <param name="position">Point to check.</param>
- <param name="inclusive">Whether the max limits are included in the check.</param>
- <returns>
- <para>Is point contained in the bounding box?</para>
- </returns>
- </member>
- <member name="M:UnityEngine.BoundsInt.Contains">
- <summary>
- <para>Is point contained in the bounding box?</para>
- </summary>
- <param name="position">Point to check.</param>
- <param name="inclusive">Whether the max limits are included in the check.</param>
- <returns>
- <para>Is point contained in the bounding box?</para>
- </returns>
- </member>
- <member name="T:UnityEngine.BoundsInt.PositionEnumerator">
- <summary>
- <para>An iterator that allows you to iterate over all positions within the BoundsInt.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.BoundsInt.PositionEnumerator.Current">
- <summary>
- <para>Current position of the enumerator.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.BoundsInt.PositionEnumerator.GetEnumerator">
- <summary>
- <para>Returns this as an iterator that allows you to iterate over all positions within the BoundsInt.</para>
- </summary>
- <returns>
- <para>This BoundsInt.PositionEnumerator.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.BoundsInt.PositionEnumerator.MoveNext">
- <summary>
- <para>Moves the enumerator to the next position.</para>
- </summary>
- <returns>
- <para>Whether the enumerator has successfully moved to the next position.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.BoundsInt.PositionEnumerator.Reset">
- <summary>
- <para>Resets this enumerator to its starting state.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.BoundsInt.SetMinMax(UnityEngine.Vector3Int,UnityEngine.Vector3Int)">
- <summary>
- <para>Sets the bounds to the min and max value of the box.</para>
- </summary>
- <param name="minPosition"></param>
- <param name="maxPosition"></param>
- </member>
- <member name="M:UnityEngine.BoundsInt.ToString">
- <summary>
- <para>Returns a nicely formatted string for the bounds.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Cache">
- <summary>
- <para>Data structure for cache. Please refer to See Also:Caching.AddCache for more information.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Cache.expirationDelay">
- <summary>
- <para>The number of seconds that an AssetBundle may remain unused in the cache before it is automatically deleted.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Cache.index">
- <summary>
- <para>Returns the index of the cache in the cache list.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Cache.maximumAvailableStorageSpace">
- <summary>
- <para>Allows you to specify the total number of bytes that can be allocated for the cache.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Cache.path">
- <summary>
- <para>Returns the path of the cache.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Cache.readOnly">
- <summary>
- <para>Returns true if the cache is readonly.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Cache.ready">
- <summary>
- <para>Returns true if the cache is ready.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Cache.spaceFree">
- <summary>
- <para>Returns the number of currently unused bytes in the cache.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Cache.spaceOccupied">
- <summary>
- <para>Returns the used disk space in bytes.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Cache.valid">
- <summary>
- <para>Returns true if the cache is valid.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Cache.ClearCache">
- <summary>
- <para>Removes all cached content in the cache that has been cached by the current application.</para>
- </summary>
- <param name="expiration">The number of seconds that AssetBundles may remain unused in the cache.</param>
- <returns>
- <para>Returns True when cache clearing succeeded.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Cache.ClearCache(System.Int32)">
- <summary>
- <para>Removes all cached content in the cache that has been cached by the current application.</para>
- </summary>
- <param name="expiration">The number of seconds that AssetBundles may remain unused in the cache.</param>
- <returns>
- <para>Returns True when cache clearing succeeded.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.CachedAssetBundle">
- <summary>
- <para>Data structure for downloading AssetBundles to a customized cache path. See Also:UnityWebRequestAssetBundle.GetAssetBundle for more information.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CachedAssetBundle.hash">
- <summary>
- <para>Hash128 which is used as the version of the AssetBundle.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CachedAssetBundle.name">
- <summary>
- <para>AssetBundle name which is used as the customized cache path.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Caching">
- <summary>
- <para>The Caching class lets you manage cached AssetBundles, downloaded using UnityWebRequestAssetBundle.GetAssetBundle().</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Caching.cacheCount">
- <summary>
- <para>Returns the cache count in the cache list.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Caching.compressionEnabled">
- <summary>
- <para>Controls compression of cache data. Enabled by default.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Caching.currentCacheForWriting">
- <summary>
- <para>Gets or sets the current cache in which AssetBundles should be cached.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Caching.defaultCache">
- <summary>
- <para>Returns the default cache which is added by Unity internally.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Caching.ready">
- <summary>
- <para>Returns true if Caching system is ready for use.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Caching.AddCache(System.String)">
- <summary>
- <para>Add a cache with the given path.</para>
- </summary>
- <param name="cachePath">Path to the cache folder.</param>
- </member>
- <member name="M:UnityEngine.Caching.ClearAllCachedVersions(System.String)">
- <summary>
- <para>Removes all the cached versions of the given AssetBundle from the cache.</para>
- </summary>
- <param name="assetBundleName">The AssetBundle name.</param>
- <returns>
- <para>Returns true when cache clearing succeeded.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Caching.ClearCache">
- <summary>
- <para>Removes all AssetBundle content that has been cached by the current application.</para>
- </summary>
- <param name="expiration">The number of seconds that AssetBundles may remain unused in the cache.</param>
- <returns>
- <para>True when cache clearing succeeded, false if cache was in use.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Caching.ClearCache(System.Int32)">
- <summary>
- <para>Removes all AssetBundle content that has been cached by the current application.</para>
- </summary>
- <param name="expiration">The number of seconds that AssetBundles may remain unused in the cache.</param>
- <returns>
- <para>True when cache clearing succeeded, false if cache was in use.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Caching.ClearCachedVersion(System.String,UnityEngine.Hash128)">
- <summary>
- <para>Removes the given version of the AssetBundle.</para>
- </summary>
- <param name="assetBundleName">The AssetBundle name.</param>
- <param name="hash">Version needs to be cleaned.</param>
- <returns>
- <para>Returns true when cache clearing succeeded. Can return false if any cached bundle is in use.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Caching.ClearOtherCachedVersions(System.String,UnityEngine.Hash128)">
- <summary>
- <para>Removes all the cached versions of the AssetBundle from the cache, except for the specified version.</para>
- </summary>
- <param name="assetBundleName">The AssetBundle name.</param>
- <param name="hash">Version needs to be kept.</param>
- <returns>
- <para>Returns true when cache clearing succeeded.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Caching.GetAllCachePaths(System.Collections.Generic.List`1&lt;System.String&gt;)">
- <summary>
- <para>Returns all paths of the cache in the cache list.</para>
- </summary>
- <param name="cachePaths">List of all the cache paths.</param>
- </member>
- <member name="M:UnityEngine.Caching.GetCacheAt(System.Int32)">
- <summary>
- <para>Returns the Cache at the given position in the cache list.</para>
- </summary>
- <param name="cacheIndex">Index of the cache to get.</param>
- <returns>
- <para>A reference to the Cache at the index specified.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Caching.GetCacheByPath(System.String)">
- <summary>
- <para>Returns the Cache that has the given cache path.</para>
- </summary>
- <param name="cachePath">The cache path.</param>
- <returns>
- <para>A reference to the Cache with the given path.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Caching.GetCachedVersions(System.String,System.Collections.Generic.List`1&lt;UnityEngine.Hash128&gt;)">
- <summary>
- <para>Returns all cached versions of the given AssetBundle.</para>
- </summary>
- <param name="assetBundleName">The AssetBundle name.</param>
- <param name="outCachedVersions">List of all the cached version.</param>
- </member>
- <member name="M:UnityEngine.Caching.IsVersionCached(System.String,System.Int32)">
- <summary>
- <para>Checks if an AssetBundle is cached.</para>
- </summary>
- <param name="string">Url The filename of the AssetBundle. Domain and path information are stripped from this string automatically.</param>
- <param name="int">Version The version number of the AssetBundle to check for. Negative values are not allowed.</param>
- <param name="url"></param>
- <param name="version"></param>
- <returns>
- <para>True if an AssetBundle matching the url and version parameters has previously been loaded using UnityWebRequestAssetBundle.GetAssetBundle() and is currently stored in the cache. Returns false if the AssetBundle is not in cache, either because it has been flushed from the cache or was never loaded using the Caching API.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Caching.MarkAsUsed(System.String,System.Int32)">
- <summary>
- <para>Bumps the timestamp of a cached file to be the current time.</para>
- </summary>
- <param name="url"></param>
- <param name="version"></param>
- </member>
- <member name="M:UnityEngine.Caching.MoveCacheAfter(UnityEngine.Cache,UnityEngine.Cache)">
- <summary>
- <para>Moves the source Cache after the destination Cache in the cache list.</para>
- </summary>
- <param name="src">The Cache to move.</param>
- <param name="dst">The Cache which should come before the source Cache in the cache list.</param>
- </member>
- <member name="M:UnityEngine.Caching.MoveCacheBefore(UnityEngine.Cache,UnityEngine.Cache)">
- <summary>
- <para>Moves the source Cache before the destination Cache in the cache list.</para>
- </summary>
- <param name="src">The Cache to move.</param>
- <param name="dst">The Cache which should come after the source Cache in the cache list.</param>
- </member>
- <member name="M:UnityEngine.Caching.RemoveCache(UnityEngine.Cache)">
- <summary>
- <para>Removes the Cache from cache list.</para>
- </summary>
- <param name="cache">The Cache to be removed.</param>
- <returns>
- <para>Returns true if the Cache is removed.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.Camera">
- <summary>
- <para>A Camera is a device through which the player views the world.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Camera.activeTexture">
- <summary>
- <para>Gets the temporary RenderTexture target for this Camera.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Camera.actualRenderingPath">
- <summary>
- <para>The rendering path that is currently being used (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Camera.allCameras">
- <summary>
- <para>Returns all enabled cameras in the scene.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Camera.allCamerasCount">
- <summary>
- <para>The number of cameras in the current scene.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Camera.allowDynamicResolution">
- <summary>
- <para>Dynamic Resolution Scaling.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Camera.allowHDR">
- <summary>
- <para>High dynamic range rendering.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Camera.allowMSAA">
- <summary>
- <para>MSAA rendering.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Camera.areVRStereoViewMatricesWithinSingleCullTolerance">
- <summary>
- <para>Determines whether the stereo view matrices are suitable to allow for a single pass cull.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Camera.aspect">
- <summary>
- <para>The aspect ratio (width divided by height).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Camera.backgroundColor">
- <summary>
- <para>The color with which the screen will be cleared.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Camera.cameraToWorldMatrix">
- <summary>
- <para>Matrix that transforms from camera space to world space (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Camera.cameraType">
- <summary>
- <para>Identifies what kind of camera this is.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Camera.clearFlags">
- <summary>
- <para>How the camera clears the background.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Camera.clearStencilAfterLightingPass">
- <summary>
- <para>Should the camera clear the stencil buffer after the deferred light pass?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Camera.commandBufferCount">
- <summary>
- <para>Number of command buffers set up on this camera (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Camera.cullingMask">
- <summary>
- <para>This is used to render parts of the scene selectively.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Camera.cullingMatrix">
- <summary>
- <para>Sets a custom matrix for the camera to use for all culling queries.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Camera.current">
- <summary>
- <para>The camera we are currently rendering with, for low-level render control only (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Camera.depth">
- <summary>
- <para>Camera's depth in the camera rendering order.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Camera.depthTextureMode">
- <summary>
- <para>How and if camera generates a depth texture.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Camera.eventMask">
- <summary>
- <para>Mask to select which layers can trigger events on the camera.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Camera.farClipPlane">
- <summary>
- <para>The far clipping plane distance.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Camera.fieldOfView">
- <summary>
- <para>The field of view of the camera in degrees.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Camera.focalLength">
- <summary>
- <para>The camera focal length, expressed in millimeters. To use this property, enable UsePhysicalProperties.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Camera.forceIntoRenderTexture">
- <summary>
- <para>Should camera rendering be forced into a RenderTexture.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Camera.layerCullDistances">
- <summary>
- <para>Per-layer culling distances.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Camera.layerCullSpherical">
- <summary>
- <para>How to perform per-layer culling for a Camera.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Camera.lensShift">
- <summary>
- <para>The lens offset of the camera. The lens shift is relative to the sensor size. For example, a lens shift of 0.5 offsets the sensor by half its horizontal size.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Camera.main">
- <summary>
- <para>The first enabled camera tagged "MainCamera" (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Camera.nearClipPlane">
- <summary>
- <para>The near clipping plane distance.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Camera.nonJitteredProjectionMatrix">
- <summary>
- <para>Get or set the raw projection matrix with no camera offset (no jittering).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Camera.onPostRender">
- <summary>
- <para>Event that is fired after any camera finishes rendering.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Camera.onPreCull">
- <summary>
- <para>Event that is fired before any camera starts culling.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Camera.onPreRender">
- <summary>
- <para>Event that is fired before any camera starts rendering.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Camera.opaqueSortMode">
- <summary>
- <para>Opaque object sorting mode.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Camera.orthographic">
- <summary>
- <para>Is the camera orthographic (true) or perspective (false)?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Camera.orthographicSize">
- <summary>
- <para>Camera's half-size when in orthographic mode.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Camera.pixelHeight">
- <summary>
- <para>How tall is the camera in pixels (not accounting for dynamic resolution scaling) (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Camera.pixelRect">
- <summary>
- <para>Where on the screen is the camera rendered in pixel coordinates.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Camera.pixelWidth">
- <summary>
- <para>How wide is the camera in pixels (not accounting for dynamic resolution scaling) (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Camera.previousViewProjectionMatrix">
- <summary>
- <para>Get the view projection matrix used on the last frame.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Camera.projectionMatrix">
- <summary>
- <para>Set a custom projection matrix.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Camera.rect">
- <summary>
- <para>Where on the screen is the camera rendered in normalized coordinates.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Camera.renderingPath">
- <summary>
- <para>The rendering path that should be used, if possible.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Camera.scaledPixelHeight">
- <summary>
- <para>How tall is the camera in pixels (accounting for dynamic resolution scaling) (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Camera.scaledPixelWidth">
- <summary>
- <para>How wide is the camera in pixels (accounting for dynamic resolution scaling) (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Camera.scene">
- <summary>
- <para>If not null, the camera will only render the contents of the specified scene.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Camera.sensorSize">
- <summary>
- <para>The size of the camera sensor, expressed in millimeters.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Camera.stereoActiveEye">
- <summary>
- <para>Returns the eye that is currently rendering.
-If called when stereo is not enabled it will return Camera.MonoOrStereoscopicEye.Mono.
-
-If called during a camera rendering callback such as OnRenderImage it will return the currently rendering eye.
-
-If called outside of a rendering callback and stereo is enabled, it will return the default eye which is Camera.MonoOrStereoscopicEye.Left.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Camera.stereoConvergence">
- <summary>
- <para>Distance to a point where virtual eyes converge.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Camera.stereoEnabled">
- <summary>
- <para>Stereoscopic rendering.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Camera.stereoSeparation">
- <summary>
- <para>The distance between the virtual eyes. Use this to query or set the current eye separation. Note that most VR devices provide this value, in which case setting the value will have no effect.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Camera.stereoTargetEye">
- <summary>
- <para>Defines which eye of a VR display the Camera renders into.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Camera.targetDisplay">
- <summary>
- <para>Set the target display for this Camera.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Camera.targetTexture">
- <summary>
- <para>Destination render texture.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Camera.transparencySortAxis">
- <summary>
- <para>An axis that describes the direction along which the distances of objects are measured for the purpose of sorting.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Camera.transparencySortMode">
- <summary>
- <para>Transparent object sorting mode.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Camera.useJitteredProjectionMatrixForTransparentRendering">
- <summary>
- <para>Should the jittered matrix be used for transparency rendering?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Camera.useOcclusionCulling">
- <summary>
- <para>Whether or not the Camera will use occlusion culling during rendering.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Camera.usePhysicalProperties">
- <summary>
- <para>Enable [UsePhysicalProperties] to use physical camera properties to compute the field of view and the frustum.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Camera.velocity">
- <summary>
- <para>Get the world-space speed of the camera (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Camera.worldToCameraMatrix">
- <summary>
- <para>Matrix that transforms from world to camera space.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Camera.AddCommandBuffer(UnityEngine.Rendering.CameraEvent,UnityEngine.Rendering.CommandBuffer)">
- <summary>
- <para>Add a command buffer to be executed at a specified place.</para>
- </summary>
- <param name="evt">When to execute the command buffer during rendering.</param>
- <param name="buffer">The buffer to execute.</param>
- </member>
- <member name="M:UnityEngine.Camera.AddCommandBufferAsync(UnityEngine.Rendering.CameraEvent,UnityEngine.Rendering.CommandBuffer,UnityEngine.Rendering.ComputeQueueType)">
- <summary>
- <para>Adds a command buffer to the GPU's async compute queues and executes that command buffer when graphics processing reaches a given point.</para>
- </summary>
- <param name="evt">The point during the graphics processing at which this command buffer should commence on the GPU.</param>
- <param name="buffer">The buffer to execute.</param>
- <param name="queueType">The desired async compute queue type to execute the buffer on.</param>
- </member>
- <member name="M:UnityEngine.Camera.CalculateFrustumCorners(UnityEngine.Rect,System.Single,UnityEngine.Camera/MonoOrStereoscopicEye,UnityEngine.Vector3[])">
- <summary>
- <para>Given viewport coordinates, calculates the view space vectors pointing to the four frustum corners at the specified camera depth.</para>
- </summary>
- <param name="viewport">Normalized viewport coordinates to use for the frustum calculation.</param>
- <param name="z">Z-depth from the camera origin at which the corners will be calculated.</param>
- <param name="eye">Camera eye projection matrix to use.</param>
- <param name="outCorners">Output array for the frustum corner vectors. Cannot be null and length must be &gt;= 4.</param>
- </member>
- <member name="M:UnityEngine.Camera.CalculateObliqueMatrix(UnityEngine.Vector4)">
- <summary>
- <para>Calculates and returns oblique near-plane projection matrix.</para>
- </summary>
- <param name="clipPlane">Vector4 that describes a clip plane.</param>
- <returns>
- <para>Oblique near-plane projection matrix.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.Camera.CameraCallback">
- <summary>
- <para>Delegate type for camera callbacks.</para>
- </summary>
- <param name="cam"></param>
- </member>
- <member name="M:UnityEngine.Camera.CopyFrom(UnityEngine.Camera)">
- <summary>
- <para>Makes this camera's settings match other camera.</para>
- </summary>
- <param name="other">Copy camera settings to the other camera.</param>
- </member>
- <member name="M:UnityEngine.Camera.CopyStereoDeviceProjectionMatrixToNonJittered(UnityEngine.Camera/StereoscopicEye)">
- <summary>
- <para>Sets the non-jittered projection matrix, sourced from the VR SDK.</para>
- </summary>
- <param name="eye">Specifies the stereoscopic eye whose non-jittered projection matrix will be sourced from the VR SDK.</param>
- </member>
- <member name="M:UnityEngine.Camera.FocalLengthToFOV(System.Single,System.Single)">
- <summary>
- <para>Converts focal length to field of view.</para>
- </summary>
- <param name="focalLength">Focal length in millimeters.</param>
- <param name="sensorSize">Sensor size in millimeters. Use sensor height to get vertical field of view. Use sensor width to get horizontal field of view.</param>
- <returns>
- <para>Field of view in degrees.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Camera.FOVToFocalLength(System.Single,System.Single)">
- <summary>
- <para>Converts field of view to focal length. Use either sensor height and vertical field of view, or sensor width and horizontal field of view.</para>
- </summary>
- <param name="fov">Field of view in degrees.</param>
- <param name="sensorSize">Sensor size in millimeters.</param>
- <returns>
- <para>Focal length in millimeters.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Camera.GetAllCameras(UnityEngine.Camera[])">
- <summary>
- <para>Fills an array of Camera with the current cameras in the scene, without allocating a new array.</para>
- </summary>
- <param name="cameras">An array to be filled up with cameras currently in the scene.</param>
- </member>
- <member name="M:UnityEngine.Camera.GetCommandBuffers(UnityEngine.Rendering.CameraEvent)">
- <summary>
- <para>Get command buffers to be executed at a specified place.</para>
- </summary>
- <param name="evt">When to execute the command buffer during rendering.</param>
- <returns>
- <para>Array of command buffers.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Camera.GetStereoNonJitteredProjectionMatrix(UnityEngine.Camera/StereoscopicEye)">
- <summary>
- <para>Gets the non-jittered projection matrix of a specific left or right stereoscopic eye.</para>
- </summary>
- <param name="eye">Specifies the stereoscopic eye whose non-jittered projection matrix needs to be returned.</param>
- <returns>
- <para>The non-jittered projection matrix of the specified stereoscopic eye.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Camera.GetStereoProjectionMatrix(UnityEngine.Camera/StereoscopicEye)">
- <summary>
- <para>Gets the projection matrix of a specific left or right stereoscopic eye.</para>
- </summary>
- <param name="eye">Specifies the stereoscopic eye whose projection matrix needs to be returned.</param>
- <returns>
- <para>The projection matrix of the specified stereoscopic eye.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Camera.GetStereoViewMatrix(UnityEngine.Camera/StereoscopicEye)">
- <summary>
- <para>Gets the left or right view matrix of a specific stereoscopic eye.</para>
- </summary>
- <param name="eye">Specifies the stereoscopic eye whose view matrix needs to be returned.</param>
- <returns>
- <para>The view matrix of the specified stereoscopic eye.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.Camera.MonoOrStereoscopicEye">
- <summary>
- <para>A Camera eye corresponding to the left or right human eye for stereoscopic rendering, or neither for non-stereoscopic rendering.
-
-A single Camera can render both left and right views in a single frame. Therefore, this enum describes which eye the Camera is currently rendering when returned by Camera.stereoActiveEye during a rendering callback (such as Camera.OnRenderImage), or which eye to act on when passed into a function.
-
-The default value is Camera.MonoOrStereoscopicEye.Left, so Camera.MonoOrStereoscopicEye.Left may be returned by some methods or properties when called outside of rendering if stereoscopic rendering is enabled.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Camera.MonoOrStereoscopicEye.Left">
- <summary>
- <para>Camera eye corresponding to stereoscopic rendering of the left eye.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Camera.MonoOrStereoscopicEye.Mono">
- <summary>
- <para>Camera eye corresponding to non-stereoscopic rendering.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Camera.MonoOrStereoscopicEye.Right">
- <summary>
- <para>Camera eye corresponding to stereoscopic rendering of the right eye.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Camera.RemoveAllCommandBuffers">
- <summary>
- <para>Remove all command buffers set on this camera.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Camera.RemoveCommandBuffer(UnityEngine.Rendering.CameraEvent,UnityEngine.Rendering.CommandBuffer)">
- <summary>
- <para>Remove command buffer from execution at a specified place.</para>
- </summary>
- <param name="evt">When to execute the command buffer during rendering.</param>
- <param name="buffer">The buffer to execute.</param>
- </member>
- <member name="M:UnityEngine.Camera.RemoveCommandBuffers(UnityEngine.Rendering.CameraEvent)">
- <summary>
- <para>Remove command buffers from execution at a specified place.</para>
- </summary>
- <param name="evt">When to execute the command buffer during rendering.</param>
- </member>
- <member name="M:UnityEngine.Camera.Render">
- <summary>
- <para>Render the camera manually.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Camera.RenderToCubemap(UnityEngine.Cubemap,System.Int32)">
- <summary>
- <para>Render into a static cubemap from this camera.</para>
- </summary>
- <param name="cubemap">The cube map to render to.</param>
- <param name="faceMask">A bitmask which determines which of the six faces are rendered to.</param>
- <returns>
- <para>False if rendering fails, else true.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Camera.RenderToCubemap(UnityEngine.RenderTexture,System.Int32)">
- <summary>
- <para>Render into a cubemap from this camera.</para>
- </summary>
- <param name="faceMask">A bitfield indicating which cubemap faces should be rendered into.</param>
- <param name="cubemap">The texture to render to.</param>
- <returns>
- <para>False if rendering fails, else true.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Camera.RenderToCubemap(UnityEngine.RenderTexture,System.Int32,UnityEngine.Camera/MonoOrStereoscopicEye)">
- <summary>
- <para>Render one side of a stereoscopic 360-degree image into a cubemap from this camera.</para>
- </summary>
- <param name="cubemap">The texture to render to.</param>
- <param name="faceMask">A bitfield indicating which cubemap faces should be rendered into. Set to the integer value 63 to render all faces.</param>
- <param name="stereoEye">A Camera eye corresponding to the left or right eye for stereoscopic rendering, or neither for non-stereoscopic rendering.</param>
- <returns>
- <para>False if rendering fails, else true.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Camera.RenderWithShader(UnityEngine.Shader,System.String)">
- <summary>
- <para>Render the camera with shader replacement.</para>
- </summary>
- <param name="shader"></param>
- <param name="replacementTag"></param>
- </member>
- <member name="M:UnityEngine.Camera.Reset">
- <summary>
- <para>Revert all camera parameters to default.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Camera.ResetAspect">
- <summary>
- <para>Revert the aspect ratio to the screen's aspect ratio.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Camera.ResetCullingMatrix">
- <summary>
- <para>Make culling queries reflect the camera's built in parameters.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Camera.ResetProjectionMatrix">
- <summary>
- <para>Make the projection reflect normal camera's parameters.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Camera.ResetReplacementShader">
- <summary>
- <para>Remove shader replacement from camera.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Camera.ResetStereoProjectionMatrices">
- <summary>
- <para>Reset the camera to using the Unity computed projection matrices for all stereoscopic eyes.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Camera.ResetStereoViewMatrices">
- <summary>
- <para>Reset the camera to using the Unity computed view matrices for all stereoscopic eyes.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Camera.ResetTransparencySortSettings">
- <summary>
- <para>Resets this Camera's transparency sort settings to the default. Default transparency settings are taken from GraphicsSettings instead of directly from this Camera.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Camera.ResetWorldToCameraMatrix">
- <summary>
- <para>Make the rendering position reflect the camera's position in the scene.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Camera.ScreenPointToRay(UnityEngine.Vector3)">
- <summary>
- <para>Returns a ray going from camera through a screen point.</para>
- </summary>
- <param name="eye">Optional argument that can be used to specify which eye transform to use. Default is Mono.</param>
- <param name="pos"></param>
- </member>
- <member name="M:UnityEngine.Camera.ScreenPointToRay(UnityEngine.Vector3,UnityEngine.Camera/MonoOrStereoscopicEye)">
- <summary>
- <para>Returns a ray going from camera through a screen point.</para>
- </summary>
- <param name="eye">Optional argument that can be used to specify which eye transform to use. Default is Mono.</param>
- <param name="pos"></param>
- </member>
- <member name="M:UnityEngine.Camera.ScreenToViewportPoint(UnityEngine.Vector3)">
- <summary>
- <para>Transforms position from screen space into viewport space.</para>
- </summary>
- <param name="position"></param>
- </member>
- <member name="M:UnityEngine.Camera.ScreenToWorldPoint(UnityEngine.Vector3)">
- <summary>
- <para>Transforms position from screen space into world space.</para>
- </summary>
- <param name="position"></param>
- </member>
- <member name="M:UnityEngine.Camera.SetReplacementShader(UnityEngine.Shader,System.String)">
- <summary>
- <para>Make the camera render with shader replacement.</para>
- </summary>
- <param name="shader"></param>
- <param name="replacementTag"></param>
- </member>
- <member name="M:UnityEngine.Camera.SetStereoProjectionMatrix(UnityEngine.Camera/StereoscopicEye,UnityEngine.Matrix4x4)">
- <summary>
- <para>Sets a custom projection matrix for a specific stereoscopic eye.</para>
- </summary>
- <param name="eye">Specifies the stereoscopic eye whose projection matrix needs to be set.</param>
- <param name="matrix">The matrix to be set.</param>
- </member>
- <member name="M:UnityEngine.Camera.SetStereoViewMatrix(UnityEngine.Camera/StereoscopicEye,UnityEngine.Matrix4x4)">
- <summary>
- <para>Sets a custom view matrix for a specific stereoscopic eye.</para>
- </summary>
- <param name="eye">Specifies the stereoscopic view matrix to set.</param>
- <param name="matrix">The matrix to be set.</param>
- </member>
- <member name="M:UnityEngine.Camera.SetTargetBuffers(UnityEngine.RenderBuffer,UnityEngine.RenderBuffer)">
- <summary>
- <para>Sets the Camera to render to the chosen buffers of one or more RenderTextures.</para>
- </summary>
- <param name="colorBuffer">The RenderBuffer(s) to which color information will be rendered.</param>
- <param name="depthBuffer">The RenderBuffer to which depth information will be rendered.</param>
- </member>
- <member name="M:UnityEngine.Camera.SetTargetBuffers(UnityEngine.RenderBuffer[],UnityEngine.RenderBuffer)">
- <summary>
- <para>Sets the Camera to render to the chosen buffers of one or more RenderTextures.</para>
- </summary>
- <param name="colorBuffer">The RenderBuffer(s) to which color information will be rendered.</param>
- <param name="depthBuffer">The RenderBuffer to which depth information will be rendered.</param>
- </member>
- <member name="T:UnityEngine.Camera.StereoscopicEye">
- <summary>
- <para>Enum used to specify either the left or the right eye of a stereoscopic camera.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Camera.StereoscopicEye.Left">
- <summary>
- <para>Specifies the target to be the left eye.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Camera.StereoscopicEye.Right">
- <summary>
- <para>Specifies the target to be the right eye.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Camera.ViewportPointToRay(UnityEngine.Vector3)">
- <summary>
- <para>Returns a ray going from camera through a viewport point.</para>
- </summary>
- <param name="eye">Optional argument that can be used to specify which eye transform to use. Default is Mono.</param>
- <param name="pos"></param>
- </member>
- <member name="M:UnityEngine.Camera.ViewportPointToRay(UnityEngine.Vector3,UnityEngine.Camera/MonoOrStereoscopicEye)">
- <summary>
- <para>Returns a ray going from camera through a viewport point.</para>
- </summary>
- <param name="eye">Optional argument that can be used to specify which eye transform to use. Default is Mono.</param>
- <param name="pos"></param>
- </member>
- <member name="M:UnityEngine.Camera.ViewportToScreenPoint(UnityEngine.Vector3)">
- <summary>
- <para>Transforms position from viewport space into screen space.</para>
- </summary>
- <param name="position"></param>
- </member>
- <member name="M:UnityEngine.Camera.ViewportToWorldPoint(UnityEngine.Vector3)">
- <summary>
- <para>Transforms position from viewport space into world space.</para>
- </summary>
- <param name="position">The 3d vector in Viewport space.</param>
- <returns>
- <para>The 3d vector in World space.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Camera.WorldToScreenPoint(UnityEngine.Vector3)">
- <summary>
- <para>Transforms position from world space into screen space.</para>
- </summary>
- <param name="eye">Optional argument that can be used to specify which eye transform to use. Default is Mono.</param>
- <param name="position"></param>
- </member>
- <member name="M:UnityEngine.Camera.WorldToScreenPoint(UnityEngine.Vector3,UnityEngine.Camera/MonoOrStereoscopicEye)">
- <summary>
- <para>Transforms position from world space into screen space.</para>
- </summary>
- <param name="eye">Optional argument that can be used to specify which eye transform to use. Default is Mono.</param>
- <param name="position"></param>
- </member>
- <member name="M:UnityEngine.Camera.WorldToViewportPoint(UnityEngine.Vector3)">
- <summary>
- <para>Transforms position from world space into viewport space.</para>
- </summary>
- <param name="eye">Optional argument that can be used to specify which eye transform to use. Default is Mono.</param>
- <param name="position"></param>
- </member>
- <member name="M:UnityEngine.Camera.WorldToViewportPoint(UnityEngine.Vector3,UnityEngine.Camera/MonoOrStereoscopicEye)">
- <summary>
- <para>Transforms position from world space into viewport space.</para>
- </summary>
- <param name="eye">Optional argument that can be used to specify which eye transform to use. Default is Mono.</param>
- <param name="position"></param>
- </member>
- <member name="T:UnityEngine.CameraClearFlags">
- <summary>
- <para>Values for Camera.clearFlags, determining what to clear when rendering a Camera.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.CameraClearFlags.Depth">
- <summary>
- <para>Clear only the depth buffer.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.CameraClearFlags.Nothing">
- <summary>
- <para>Don't clear anything.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.CameraClearFlags.Skybox">
- <summary>
- <para>Clear with the skybox.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.CameraClearFlags.SolidColor">
- <summary>
- <para>Clear with a background color.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.CameraType">
- <summary>
- <para>Describes different types of camera.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.CameraType.Game">
- <summary>
- <para>Used to indicate a regular in-game camera.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.CameraType.Preview">
- <summary>
- <para>Used to indicate a camera that is used for rendering previews in the Editor.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.CameraType.Reflection">
- <summary>
- <para>Used to indicate a camera that is used for rendering reflection probes.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.CameraType.SceneView">
- <summary>
- <para>Used to indicate that a camera is used for rendering the Scene View in the Editor.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.CameraType.VR">
- <summary>
- <para>Used to indicate that a camera is used for rendering VR (in edit mode) in the Editor.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Color">
- <summary>
- <para>Representation of RGBA colors.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Color.a">
- <summary>
- <para>Alpha component of the color (0 is transparent, 1 is opaque).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Color.b">
- <summary>
- <para>Blue component of the color.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Color.black">
- <summary>
- <para>Solid black. RGBA is (0, 0, 0, 1).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Color.blue">
- <summary>
- <para>Solid blue. RGBA is (0, 0, 1, 1).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Color.clear">
- <summary>
- <para>Completely transparent. RGBA is (0, 0, 0, 0).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Color.cyan">
- <summary>
- <para>Cyan. RGBA is (0, 1, 1, 1).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Color.g">
- <summary>
- <para>Green component of the color.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Color.gamma">
- <summary>
- <para>A version of the color that has had the gamma curve applied.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Color.gray">
- <summary>
- <para>Gray. RGBA is (0.5, 0.5, 0.5, 1).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Color.grayscale">
- <summary>
- <para>The grayscale value of the color. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Color.green">
- <summary>
- <para>Solid green. RGBA is (0, 1, 0, 1).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Color.grey">
- <summary>
- <para>English spelling for gray. RGBA is the same (0.5, 0.5, 0.5, 1).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Color.linear">
- <summary>
- <para>A linear value of an sRGB color.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Color.magenta">
- <summary>
- <para>Magenta. RGBA is (1, 0, 1, 1).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Color.maxColorComponent">
- <summary>
- <para>Returns the maximum color component value: Max(r,g,b).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Color.r">
- <summary>
- <para>Red component of the color.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Color.red">
- <summary>
- <para>Solid red. RGBA is (1, 0, 0, 1).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Color.white">
- <summary>
- <para>Solid white. RGBA is (1, 1, 1, 1).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Color.yellow">
- <summary>
- <para>Yellow. RGBA is (1, 0.92, 0.016, 1), but the color is nice to look at!</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Color.#ctor(System.Single,System.Single,System.Single,System.Single)">
- <summary>
- <para>Constructs a new Color with given r,g,b,a components.</para>
- </summary>
- <param name="r">Red component.</param>
- <param name="g">Green component.</param>
- <param name="b">Blue component.</param>
- <param name="a">Alpha component.</param>
- </member>
- <member name="M:UnityEngine.Color.#ctor(System.Single,System.Single,System.Single)">
- <summary>
- <para>Constructs a new Color with given r,g,b components and sets a to 1.</para>
- </summary>
- <param name="r">Red component.</param>
- <param name="g">Green component.</param>
- <param name="b">Blue component.</param>
- </member>
- <member name="M:UnityEngine.Color.HSVToRGB(System.Single,System.Single,System.Single)">
- <summary>
- <para>Creates an RGB colour from HSV input.</para>
- </summary>
- <param name="H">Hue [0..1].</param>
- <param name="S">Saturation [0..1].</param>
- <param name="V">Value [0..1].</param>
- <param name="hdr">Output HDR colours. If true, the returned colour will not be clamped to [0..1].</param>
- <returns>
- <para>An opaque colour with HSV matching the input.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Color.HSVToRGB(System.Single,System.Single,System.Single,System.Boolean)">
- <summary>
- <para>Creates an RGB colour from HSV input.</para>
- </summary>
- <param name="H">Hue [0..1].</param>
- <param name="S">Saturation [0..1].</param>
- <param name="V">Value [0..1].</param>
- <param name="hdr">Output HDR colours. If true, the returned colour will not be clamped to [0..1].</param>
- <returns>
- <para>An opaque colour with HSV matching the input.</para>
- </returns>
- </member>
- <member name="?:UnityEngine.Color.implop_Color(Vector4)(UnityEngine.Vector4)">
- <summary>
- <para>Colors can be implicitly converted to and from Vector4.</para>
- </summary>
- <param name="v"></param>
- </member>
- <member name="?:UnityEngine.Color.implop_Vector4(Color)(UnityEngine.Color)">
- <summary>
- <para>Colors can be implicitly converted to and from Vector4.</para>
- </summary>
- <param name="c"></param>
- </member>
- <member name="M:UnityEngine.Color.Lerp(UnityEngine.Color,UnityEngine.Color,System.Single)">
- <summary>
- <para>Linearly interpolates between colors a and b by t.</para>
- </summary>
- <param name="a">Color a</param>
- <param name="b">Color b</param>
- <param name="t">Float for combining a and b</param>
- </member>
- <member name="M:UnityEngine.Color.LerpUnclamped(UnityEngine.Color,UnityEngine.Color,System.Single)">
- <summary>
- <para>Linearly interpolates between colors a and b by t.</para>
- </summary>
- <param name="a"></param>
- <param name="b"></param>
- <param name="t"></param>
- </member>
- <member name="?:UnityEngine.Color.op_Divide(UnityEngine.Color,System.Single)">
- <summary>
- <para>Divides color a by the float b. Each color component is scaled separately.</para>
- </summary>
- <param name="a"></param>
- <param name="b"></param>
- </member>
- <member name="?:UnityEngine.Color.op_Minus(UnityEngine.Color,UnityEngine.Color)">
- <summary>
- <para>Subtracts color b from color a. Each component is subtracted separately.</para>
- </summary>
- <param name="a"></param>
- <param name="b"></param>
- </member>
- <member name="?:UnityEngine.Color.op_Multiply(UnityEngine.Color,UnityEngine.Color)">
- <summary>
- <para>Multiplies two colors together. Each component is multiplied separately.</para>
- </summary>
- <param name="a"></param>
- <param name="b"></param>
- </member>
- <member name="?:UnityEngine.Color.op_Multiply(UnityEngine.Color,System.Single)">
- <summary>
- <para>Multiplies color a by the float b. Each color component is scaled separately.</para>
- </summary>
- <param name="a"></param>
- <param name="b"></param>
- </member>
- <member name="?:UnityEngine.Color.op_Multiply(System.Single,UnityEngine.Color)">
- <summary>
- <para>Multiplies color a by the float b. Each color component is scaled separately.</para>
- </summary>
- <param name="b"></param>
- <param name="a"></param>
- </member>
- <member name="?:UnityEngine.Color.op_Plus(UnityEngine.Color,UnityEngine.Color)">
- <summary>
- <para>Adds two colors together. Each component is added separately.</para>
- </summary>
- <param name="a"></param>
- <param name="b"></param>
- </member>
- <member name="M:UnityEngine.Color.RGBToHSV(UnityEngine.Color,System.Single&amp;,System.Single&amp;,System.Single&amp;)">
- <summary>
- <para>Calculates the hue, saturation and value of an RGB input color.</para>
- </summary>
- <param name="rgbColor">An input color.</param>
- <param name="H">Output variable for hue.</param>
- <param name="S">Output variable for saturation.</param>
- <param name="V">Output variable for value.</param>
- </member>
- <member name="P:UnityEngine.Color.this">
- <summary>
- <para>Access the r, g, b,a components using [0], [1], [2], [3] respectively.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Color.ToString">
- <summary>
- <para>Returns a nicely formatted string of this color.</para>
- </summary>
- <param name="format"></param>
- </member>
- <member name="M:UnityEngine.Color.ToString(System.String)">
- <summary>
- <para>Returns a nicely formatted string of this color.</para>
- </summary>
- <param name="format"></param>
- </member>
- <member name="T:UnityEngine.Color32">
- <summary>
- <para>Representation of RGBA colors in 32 bit format.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Color32.a">
- <summary>
- <para>Alpha component of the color.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Color32.b">
- <summary>
- <para>Blue component of the color.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Color32.g">
- <summary>
- <para>Green component of the color.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Color32.r">
- <summary>
- <para>Red component of the color.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Color32.#ctor(System.Byte,System.Byte,System.Byte,System.Byte)">
- <summary>
- <para>Constructs a new Color32 with given r, g, b, a components.</para>
- </summary>
- <param name="r"></param>
- <param name="g"></param>
- <param name="b"></param>
- <param name="a"></param>
- </member>
- <member name="?:UnityEngine.Color32.implop_Color(Color32)(UnityEngine.Color32)">
- <summary>
- <para>Color32 can be implicitly converted to and from Color.</para>
- </summary>
- <param name="c"></param>
- </member>
- <member name="?:UnityEngine.Color32.implop_Color32(Color)(UnityEngine.Color)">
- <summary>
- <para>Color32 can be implicitly converted to and from Color.</para>
- </summary>
- <param name="c"></param>
- </member>
- <member name="M:UnityEngine.Color32.Lerp(UnityEngine.Color32,UnityEngine.Color32,System.Single)">
- <summary>
- <para>Linearly interpolates between colors a and b by t.</para>
- </summary>
- <param name="a"></param>
- <param name="b"></param>
- <param name="t"></param>
- </member>
- <member name="M:UnityEngine.Color32.LerpUnclamped(UnityEngine.Color32,UnityEngine.Color32,System.Single)">
- <summary>
- <para>Linearly interpolates between colors a and b by t.</para>
- </summary>
- <param name="a"></param>
- <param name="b"></param>
- <param name="t"></param>
- </member>
- <member name="M:UnityEngine.Color32.ToString">
- <summary>
- <para>Returns a nicely formatted string of this color.</para>
- </summary>
- <param name="format"></param>
- </member>
- <member name="M:UnityEngine.Color32.ToString(System.String)">
- <summary>
- <para>Returns a nicely formatted string of this color.</para>
- </summary>
- <param name="format"></param>
- </member>
- <member name="T:UnityEngine.ColorGamut">
- <summary>
- <para>Represents a color gamut.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ColorGamut.sRGB">
- <summary>
- <para>sRGB color gamut.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ColorGamut.DisplayP3">
- <summary>
- <para>Display-P3 color gamut.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ColorGamut.DolbyHDR">
- <summary>
- <para>DolbyHDR high dynamic range color gamut.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ColorGamut.HDR10">
- <summary>
- <para>HDR10 high dynamic range color gamut.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ColorGamut.Rec2020">
- <summary>
- <para>Rec. 2020 color gamut.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ColorGamut.Rec709">
- <summary>
- <para>Rec. 709 color gamut.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ColorSpace">
- <summary>
- <para>Color space for player settings.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ColorSpace.Gamma">
- <summary>
- <para>Gamma color space.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ColorSpace.Linear">
- <summary>
- <para>Linear color space.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ColorSpace.Uninitialized">
- <summary>
- <para>Uninitialized color space.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ColorUsageAttribute">
- <summary>
- <para>Attribute used to configure the usage of the ColorField and Color Picker for a color.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ColorUsageAttribute.hdr">
- <summary>
- <para>If set to true the Color is treated as a HDR color.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ColorUsageAttribute.maxBrightness">
- <summary>
- <para>Maximum allowed HDR color component value when using the HDR Color Picker.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ColorUsageAttribute.maxExposureValue">
- <summary>
- <para>Maximum exposure value allowed in the HDR Color Picker.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ColorUsageAttribute.minBrightness">
- <summary>
- <para>Minimum allowed HDR color component value when using the Color Picker.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ColorUsageAttribute.minExposureValue">
- <summary>
- <para>Minimum exposure value allowed in the HDR Color Picker.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ColorUsageAttribute.showAlpha">
- <summary>
- <para>If false then the alpha bar is hidden in the ColorField and the alpha value is not shown in the Color Picker.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.ColorUsageAttribute.#ctor(System.Boolean)">
- <summary>
- <para>Attribute for Color fields. Used for configuring the GUI for the color.</para>
- </summary>
- <param name="showAlpha">If false then the alpha channel info is hidden both in the ColorField and in the Color Picker.</param>
- <param name="hdr">Set to true if the color should be treated as a HDR color (default value: false).</param>
- <param name="minBrightness">Minimum allowed HDR color component value when using the HDR Color Picker (default value: 0).</param>
- <param name="maxBrightness">Maximum allowed HDR color component value when using the HDR Color Picker (default value: 8).</param>
- <param name="minExposureValue">Minimum exposure value allowed in the HDR Color Picker (default value: 1/8 = 0.125).</param>
- <param name="maxExposureValue">Maximum exposure value allowed in the HDR Color Picker (default value: 3).</param>
- </member>
- <member name="M:UnityEngine.ColorUsageAttribute.#ctor(System.Boolean,System.Boolean)">
- <summary>
- <para>Attribute for Color fields. Used for configuring the GUI for the color.</para>
- </summary>
- <param name="showAlpha">If false then the alpha channel info is hidden both in the ColorField and in the Color Picker.</param>
- <param name="hdr">Set to true if the color should be treated as a HDR color (default value: false).</param>
- <param name="minBrightness">Minimum allowed HDR color component value when using the HDR Color Picker (default value: 0).</param>
- <param name="maxBrightness">Maximum allowed HDR color component value when using the HDR Color Picker (default value: 8).</param>
- <param name="minExposureValue">Minimum exposure value allowed in the HDR Color Picker (default value: 1/8 = 0.125).</param>
- <param name="maxExposureValue">Maximum exposure value allowed in the HDR Color Picker (default value: 3).</param>
- </member>
- <member name="M:UnityEngine.ColorUsageAttribute.#ctor(System.Boolean,System.Boolean,System.Single,System.Single,System.Single,System.Single)">
- <summary>
- <para>Attribute for Color fields. Used for configuring the GUI for the color.</para>
- </summary>
- <param name="showAlpha">If false then the alpha channel info is hidden both in the ColorField and in the Color Picker.</param>
- <param name="hdr">Set to true if the color should be treated as a HDR color (default value: false).</param>
- <param name="minBrightness">Minimum allowed HDR color component value when using the HDR Color Picker (default value: 0).</param>
- <param name="maxBrightness">Maximum allowed HDR color component value when using the HDR Color Picker (default value: 8).</param>
- <param name="minExposureValue">Minimum exposure value allowed in the HDR Color Picker (default value: 1/8 = 0.125).</param>
- <param name="maxExposureValue">Maximum exposure value allowed in the HDR Color Picker (default value: 3).</param>
- </member>
- <member name="T:UnityEngine.ColorUtility">
- <summary>
- <para>A collection of common color functions.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.ColorUtility.ToHtmlStringRGB(UnityEngine.Color)">
- <summary>
- <para>Returns the color as a hexadecimal string in the format "RRGGBB".</para>
- </summary>
- <param name="color">The color to be converted.</param>
- <returns>
- <para>Hexadecimal string representing the color.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.ColorUtility.ToHtmlStringRGBA(UnityEngine.Color)">
- <summary>
- <para>Returns the color as a hexadecimal string in the format "RRGGBBAA".</para>
- </summary>
- <param name="color">The color to be converted.</param>
- <returns>
- <para>Hexadecimal string representing the color.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.ColorUtility.TryParseHtmlString(System.String,UnityEngine.Color&amp;)">
- <summary>
- <para>Attempts to convert a html color string.</para>
- </summary>
- <param name="htmlString">Case insensitive html string to be converted into a color.</param>
- <param name="color">The converted color.</param>
- <returns>
- <para>True if the string was successfully converted else false.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.CombineInstance">
- <summary>
- <para>Struct used to describe meshes to be combined using Mesh.CombineMeshes.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CombineInstance.lightmapScaleOffset">
- <summary>
- <para>The baked lightmap UV scale and offset applied to the Mesh.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CombineInstance.mesh">
- <summary>
- <para>Mesh to combine.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CombineInstance.realtimeLightmapScaleOffset">
- <summary>
- <para>The realtime lightmap UV scale and offset applied to the Mesh.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CombineInstance.subMeshIndex">
- <summary>
- <para>Sub-Mesh index of the Mesh.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CombineInstance.transform">
- <summary>
- <para>Matrix to transform the Mesh with before combining.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Compass">
- <summary>
- <para>Interface into compass functionality.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Compass.enabled">
- <summary>
- <para>Used to enable or disable compass. Note, that if you want Input.compass.trueHeading property to contain a valid value, you must also enable location updates by calling Input.location.Start().</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Compass.headingAccuracy">
- <summary>
- <para>Accuracy of heading reading in degrees.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Compass.magneticHeading">
- <summary>
- <para>The heading in degrees relative to the magnetic North Pole. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Compass.rawVector">
- <summary>
- <para>The raw geomagnetic data measured in microteslas. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Compass.timestamp">
- <summary>
- <para>Timestamp (in seconds since 1970) when the heading was last time updated. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Compass.trueHeading">
- <summary>
- <para>The heading in degrees relative to the geographic North Pole. (Read Only)</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Component">
- <summary>
- <para>Base class for everything attached to GameObjects.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Component.gameObject">
- <summary>
- <para>The game object this component is attached to. A component is always attached to a game object.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Component.tag">
- <summary>
- <para>The tag of this game object.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Component.transform">
- <summary>
- <para>The Transform attached to this GameObject.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Component.BroadcastMessage(System.String)">
- <summary>
- <para>Calls the method named methodName on every MonoBehaviour in this game object or any of its children.</para>
- </summary>
- <param name="methodName">Name of the method to call.</param>
- <param name="parameter">Optional parameter to pass to the method (can be any value).</param>
- <param name="options">Should an error be raised if the method does not exist for a given target object?</param>
- </member>
- <member name="M:UnityEngine.Component.BroadcastMessage(System.String,System.Object)">
- <summary>
- <para>Calls the method named methodName on every MonoBehaviour in this game object or any of its children.</para>
- </summary>
- <param name="methodName">Name of the method to call.</param>
- <param name="parameter">Optional parameter to pass to the method (can be any value).</param>
- <param name="options">Should an error be raised if the method does not exist for a given target object?</param>
- </member>
- <member name="M:UnityEngine.Component.BroadcastMessage(System.String,System.Object,UnityEngine.SendMessageOptions)">
- <summary>
- <para>Calls the method named methodName on every MonoBehaviour in this game object or any of its children.</para>
- </summary>
- <param name="methodName">Name of the method to call.</param>
- <param name="parameter">Optional parameter to pass to the method (can be any value).</param>
- <param name="options">Should an error be raised if the method does not exist for a given target object?</param>
- </member>
- <member name="M:UnityEngine.Component.BroadcastMessage(System.String,UnityEngine.SendMessageOptions)">
- <summary>
- <para>Calls the method named methodName on every MonoBehaviour in this game object or any of its children.</para>
- </summary>
- <param name="methodName">Name of the method to call.</param>
- <param name="parameter">Optional parameter to pass to the method (can be any value).</param>
- <param name="options">Should an error be raised if the method does not exist for a given target object?</param>
- </member>
- <member name="M:UnityEngine.Component.CompareTag(System.String)">
- <summary>
- <para>Is this game object tagged with tag ?</para>
- </summary>
- <param name="tag">The tag to compare.</param>
- </member>
- <member name="M:UnityEngine.Component.GetComponent(System.Type)">
- <summary>
- <para>Returns the component of Type type if the game object has one attached, null if it doesn't.</para>
- </summary>
- <param name="type">The type of Component to retrieve.</param>
- </member>
- <member name="M:UnityEngine.Component.GetComponent">
- <summary>
- <para>Generic version. See the page for more details.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Component.GetComponent(System.String)">
- <summary>
- <para>Returns the component with name type if the game object has one attached, null if it doesn't.</para>
- </summary>
- <param name="type"></param>
- </member>
- <member name="M:UnityEngine.Component.GetComponentInChildren(System.Type)">
- <summary>
- <para>Returns the component of Type type in the GameObject or any of its children using depth first search.</para>
- </summary>
- <param name="t">The type of Component to retrieve.</param>
- <returns>
- <para>A component of the matching type, if found.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Component.GetComponentInChildren()">
- <summary>
- <para>Generic version. See the page for more details.</para>
- </summary>
- <param name="includeInactive"></param>
- <returns>
- <para>A component of the matching type, if found.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Component.GetComponentInParent(System.Type)">
- <summary>
- <para>Returns the component of Type type in the GameObject or any of its parents.</para>
- </summary>
- <param name="t">The type of Component to retrieve.</param>
- <returns>
- <para>A component of the matching type, if found.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Component.GetComponentInParent">
- <summary>
- <para>Generic version. See the page for more details.</para>
- </summary>
- <returns>
- <para>A component of the matching type, if found.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Component.GetComponents(System.Type)">
- <summary>
- <para>Returns all components of Type type in the GameObject.</para>
- </summary>
- <param name="type">The type of Component to retrieve.</param>
- </member>
- <member name="M:UnityEngine.Component.GetComponents">
- <summary>
- <para>Generic version. See the page for more details.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Component.GetComponentsInChildren">
- <summary>
- <para>Returns all components of Type type in the GameObject or any of its children.</para>
- </summary>
- <param name="t">The type of Component to retrieve.</param>
- <param name="includeInactive">Should Components on inactive GameObjects be included in the found set? includeInactive decides which children of the GameObject will be searched. The GameObject that you call GetComponentsInChildren on is always searched regardless.</param>
- </member>
- <member name="M:UnityEngine.Component.GetComponentsInChildren(System.Type,System.Boolean)">
- <summary>
- <para>Returns all components of Type type in the GameObject or any of its children.</para>
- </summary>
- <param name="t">The type of Component to retrieve.</param>
- <param name="includeInactive">Should Components on inactive GameObjects be included in the found set? includeInactive decides which children of the GameObject will be searched. The GameObject that you call GetComponentsInChildren on is always searched regardless.</param>
- </member>
- <member name="M:UnityEngine.Component.GetComponentsInChildren(System.Boolean)">
- <summary>
- <para>Generic version. See the page for more details.</para>
- </summary>
- <param name="includeInactive">Should Components on inactive GameObjects be included in the found set? includeInactive decides which children of the GameObject will be searched. The GameObject that you call GetComponentsInChildren on is always searched regardless.</param>
- <returns>
- <para>A list of all found components matching the specified type.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Component.GetComponentsInChildren">
- <summary>
- <para>Generic version. See the page for more details.</para>
- </summary>
- <returns>
- <para>A list of all found components matching the specified type.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Component.GetComponentsInParent(System.Type,System.Boolean)">
- <summary>
- <para>Returns all components of Type type in the GameObject or any of its parents.</para>
- </summary>
- <param name="t">The type of Component to retrieve.</param>
- <param name="includeInactive">Should inactive Components be included in the found set?</param>
- </member>
- <member name="M:UnityEngine.Component.GetComponentsInParent(System.Boolean)">
- <summary>
- <para>Generic version. See the page for more details.</para>
- </summary>
- <param name="includeInactive">Should inactive Components be included in the found set?</param>
- </member>
- <member name="M:UnityEngine.Component.GetComponentsInParent">
- <summary>
- <para>Generic version. See the page for more details.</para>
- </summary>
- <param name="includeInactive">Should inactive Components be included in the found set?</param>
- </member>
- <member name="M:UnityEngine.Component.SendMessage(System.String)">
- <summary>
- <para>Calls the method named methodName on every MonoBehaviour in this game object.</para>
- </summary>
- <param name="methodName">Name of the method to call.</param>
- <param name="value">Optional parameter for the method.</param>
- <param name="options">Should an error be raised if the target object doesn't implement the method for the message?</param>
- </member>
- <member name="M:UnityEngine.Component.SendMessage(System.String,System.Object)">
- <summary>
- <para>Calls the method named methodName on every MonoBehaviour in this game object.</para>
- </summary>
- <param name="methodName">Name of the method to call.</param>
- <param name="value">Optional parameter for the method.</param>
- <param name="options">Should an error be raised if the target object doesn't implement the method for the message?</param>
- </member>
- <member name="M:UnityEngine.Component.SendMessage(System.String,System.Object,UnityEngine.SendMessageOptions)">
- <summary>
- <para>Calls the method named methodName on every MonoBehaviour in this game object.</para>
- </summary>
- <param name="methodName">Name of the method to call.</param>
- <param name="value">Optional parameter for the method.</param>
- <param name="options">Should an error be raised if the target object doesn't implement the method for the message?</param>
- </member>
- <member name="M:UnityEngine.Component.SendMessage(System.String,UnityEngine.SendMessageOptions)">
- <summary>
- <para>Calls the method named methodName on every MonoBehaviour in this game object.</para>
- </summary>
- <param name="methodName">Name of the method to call.</param>
- <param name="value">Optional parameter for the method.</param>
- <param name="options">Should an error be raised if the target object doesn't implement the method for the message?</param>
- </member>
- <member name="M:UnityEngine.Component.SendMessageUpwards(System.String)">
- <summary>
- <para>Calls the method named methodName on every MonoBehaviour in this game object and on every ancestor of the behaviour.</para>
- </summary>
- <param name="methodName">Name of method to call.</param>
- <param name="value">Optional parameter value for the method.</param>
- <param name="options">Should an error be raised if the method does not exist on the target object?</param>
- </member>
- <member name="M:UnityEngine.Component.SendMessageUpwards(System.String,System.Object)">
- <summary>
- <para>Calls the method named methodName on every MonoBehaviour in this game object and on every ancestor of the behaviour.</para>
- </summary>
- <param name="methodName">Name of method to call.</param>
- <param name="value">Optional parameter value for the method.</param>
- <param name="options">Should an error be raised if the method does not exist on the target object?</param>
- </member>
- <member name="M:UnityEngine.Component.SendMessageUpwards(System.String,UnityEngine.SendMessageOptions)">
- <summary>
- <para>Calls the method named methodName on every MonoBehaviour in this game object and on every ancestor of the behaviour.</para>
- </summary>
- <param name="methodName">Name of method to call.</param>
- <param name="value">Optional parameter value for the method.</param>
- <param name="options">Should an error be raised if the method does not exist on the target object?</param>
- </member>
- <member name="M:UnityEngine.Component.SendMessageUpwards(System.String,System.Object,UnityEngine.SendMessageOptions)">
- <summary>
- <para>Calls the method named methodName on every MonoBehaviour in this game object and on every ancestor of the behaviour.</para>
- </summary>
- <param name="methodName">Name of method to call.</param>
- <param name="value">Optional parameter value for the method.</param>
- <param name="options">Should an error be raised if the method does not exist on the target object?</param>
- </member>
- <member name="T:UnityEngine.ComputeBuffer">
- <summary>
- <para>GPU data buffer, mostly for use with compute shaders.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ComputeBuffer.count">
- <summary>
- <para>Number of elements in the buffer (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ComputeBuffer.stride">
- <summary>
- <para>Size of one element in the buffer (Read Only).</para>
- </summary>
- </member>
- <member name="M:UnityEngine.ComputeBuffer.CopyCount(UnityEngine.ComputeBuffer,UnityEngine.ComputeBuffer,System.Int32)">
- <summary>
- <para>Copy counter value of append/consume buffer into another buffer.</para>
- </summary>
- <param name="src">Append/consume buffer to copy the counter from.</param>
- <param name="dst">A buffer to copy the counter to.</param>
- <param name="dstOffsetBytes">Target byte offset in dst.</param>
- </member>
- <member name="M:UnityEngine.ComputeBuffer.#ctor(System.Int32,System.Int32)">
- <summary>
- <para>Create a Compute Buffer.</para>
- </summary>
- <param name="count">Number of elements in the buffer.</param>
- <param name="stride">Size of one element in the buffer. Has to match size of buffer type in the shader. See for cross-platform compatibility information.</param>
- <param name="type">Type of the buffer, default is ComputeBufferType.Default (structured buffer).</param>
- </member>
- <member name="M:UnityEngine.ComputeBuffer.#ctor(System.Int32,System.Int32,UnityEngine.ComputeBufferType)">
- <summary>
- <para>Create a Compute Buffer.</para>
- </summary>
- <param name="count">Number of elements in the buffer.</param>
- <param name="stride">Size of one element in the buffer. Has to match size of buffer type in the shader. See for cross-platform compatibility information.</param>
- <param name="type">Type of the buffer, default is ComputeBufferType.Default (structured buffer).</param>
- </member>
- <member name="M:UnityEngine.ComputeBuffer.GetData(System.Array)">
- <summary>
- <para>Read data values from the buffer into an array. The array can only use &lt;a href="https:docs.microsoft.comen-usdotnetframeworkinteropblittable-and-non-blittable-types"&gt;blittable&lt;a&gt; types.</para>
- </summary>
- <param name="data">An array to receive the data.</param>
- </member>
- <member name="M:UnityEngine.ComputeBuffer.GetData(System.Array,System.Int32,System.Int32,System.Int32)">
- <summary>
- <para>Partial read of data values from the buffer into an array.</para>
- </summary>
- <param name="data">An array to receive the data.</param>
- <param name="managedBufferStartIndex">The first element index in data where retrieved elements are copied.</param>
- <param name="computeBufferStartIndex">The first element index of the compute buffer from which elements are read.</param>
- <param name="count">The number of elements to retrieve.</param>
- </member>
- <member name="M:UnityEngine.ComputeBuffer.GetNativeBufferPtr">
- <summary>
- <para>Retrieve a native (underlying graphics API) pointer to the buffer.</para>
- </summary>
- <returns>
- <para>Pointer to the underlying graphics API buffer.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.ComputeBuffer.IsValid">
- <summary>
- <para>Returns true if this compute buffer is valid and false otherwise.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.ComputeBuffer.Release">
- <summary>
- <para>Release a Compute Buffer.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.ComputeBuffer.SetCounterValue(System.UInt32)">
- <summary>
- <para>Sets counter value of append/consume buffer.</para>
- </summary>
- <param name="counterValue">Value of the append/consume counter.</param>
- </member>
- <member name="M:UnityEngine.ComputeBuffer.SetData(System.Array)">
- <summary>
- <para>Set the buffer with values from an array.</para>
- </summary>
- <param name="data">Array of values to fill the buffer.</param>
- </member>
- <member name="M:UnityEngine.ComputeBuffer.SetData(System.Array,System.Int32,System.Int32,System.Int32)">
- <summary>
- <para>Partial copy of data values from an array into the buffer.</para>
- </summary>
- <param name="data">Array of values to fill the buffer.</param>
- <param name="managedBufferStartIndex">The first element index in data to copy to the compute buffer.</param>
- <param name="computeBufferStartIndex">The first element index in compute buffer to receive the data.</param>
- <param name="count">The number of elements to copy.</param>
- </member>
- <member name="T:UnityEngine.ComputeBufferType">
- <summary>
- <para>ComputeBuffer type.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ComputeBufferType.Append">
- <summary>
- <para>Append-consume ComputeBuffer type.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ComputeBufferType.Counter">
- <summary>
- <para>ComputeBuffer with a counter.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ComputeBufferType.Default">
- <summary>
- <para>Default ComputeBuffer type (structured buffer).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ComputeBufferType.IndirectArguments">
- <summary>
- <para>ComputeBuffer used for Graphics.DrawProceduralIndirect, ComputeShader.DispatchIndirect or Graphics.DrawMeshInstancedIndirect arguments.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ComputeBufferType.Raw">
- <summary>
- <para>Raw ComputeBuffer type (byte address buffer).</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ComputeShader">
- <summary>
- <para>Compute Shader asset.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.ComputeShader.Dispatch(System.Int32,System.Int32,System.Int32,System.Int32)">
- <summary>
- <para>Execute a compute shader.</para>
- </summary>
- <param name="kernelIndex">Which kernel to execute. A single compute shader asset can have multiple kernel entry points.</param>
- <param name="threadGroupsX">Number of work groups in the X dimension.</param>
- <param name="threadGroupsY">Number of work groups in the Y dimension.</param>
- <param name="threadGroupsZ">Number of work groups in the Z dimension.</param>
- </member>
- <member name="M:UnityEngine.ComputeShader.DispatchIndirect(System.Int32,UnityEngine.ComputeBuffer,System.UInt32)">
- <summary>
- <para>Execute a compute shader.</para>
- </summary>
- <param name="kernelIndex">Which kernel to execute. A single compute shader asset can have multiple kernel entry points.</param>
- <param name="argsBuffer">Buffer with dispatch arguments.</param>
- <param name="argsOffset">The byte offset into the buffer, where the draw arguments start.</param>
- </member>
- <member name="M:UnityEngine.ComputeShader.FindKernel(System.String)">
- <summary>
- <para>Find ComputeShader kernel index.</para>
- </summary>
- <param name="name">Name of kernel function.</param>
- <returns>
- <para>The Kernel index, or logs a "FindKernel failed" error message if the kernel is not found.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.ComputeShader.GetKernelThreadGroupSizes(System.Int32,System.UInt32&amp;,System.UInt32&amp;,System.UInt32&amp;)">
- <summary>
- <para>Get kernel thread group sizes.</para>
- </summary>
- <param name="kernelIndex">Which kernel to query. A single compute shader asset can have multiple kernel entry points.</param>
- <param name="x">Thread group size in the X dimension.</param>
- <param name="y">Thread group size in the Y dimension.</param>
- <param name="z">Thread group size in the Z dimension.</param>
- </member>
- <member name="M:UnityEngine.ComputeShader.HasKernel(System.String)">
- <summary>
- <para>Checks whether a shader contains a given kernel.</para>
- </summary>
- <param name="name">The name of the kernel to look for.</param>
- <returns>
- <para>True if the kernel is found, false otherwise.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.ComputeShader.SetBool(System.String,System.Boolean)">
- <summary>
- <para>Set a bool parameter.</para>
- </summary>
- <param name="name">Variable name in shader code.</param>
- <param name="nameID">Property name ID, use Shader.PropertyToID to get it.</param>
- <param name="val">Value to set.</param>
- </member>
- <member name="M:UnityEngine.ComputeShader.SetBool(System.Int32,System.Boolean)">
- <summary>
- <para>Set a bool parameter.</para>
- </summary>
- <param name="name">Variable name in shader code.</param>
- <param name="nameID">Property name ID, use Shader.PropertyToID to get it.</param>
- <param name="val">Value to set.</param>
- </member>
- <member name="M:UnityEngine.ComputeShader.SetBuffer(System.Int32,System.String,UnityEngine.ComputeBuffer)">
- <summary>
- <para>Sets an input or output compute buffer.</para>
- </summary>
- <param name="kernelIndex">For which kernel the buffer is being set. See FindKernel.</param>
- <param name="nameID">Property name ID, use Shader.PropertyToID to get it.</param>
- <param name="name">Name of the buffer variable in shader code.</param>
- <param name="buffer">Buffer to set.</param>
- </member>
- <member name="M:UnityEngine.ComputeShader.SetBuffer(System.Int32,System.Int32,UnityEngine.ComputeBuffer)">
- <summary>
- <para>Sets an input or output compute buffer.</para>
- </summary>
- <param name="kernelIndex">For which kernel the buffer is being set. See FindKernel.</param>
- <param name="nameID">Property name ID, use Shader.PropertyToID to get it.</param>
- <param name="name">Name of the buffer variable in shader code.</param>
- <param name="buffer">Buffer to set.</param>
- </member>
- <member name="M:UnityEngine.ComputeShader.SetFloat(System.String,System.Single)">
- <summary>
- <para>Set a float parameter.</para>
- </summary>
- <param name="name">Variable name in shader code.</param>
- <param name="nameID">Property name ID, use Shader.PropertyToID to get it.</param>
- <param name="val">Value to set.</param>
- </member>
- <member name="M:UnityEngine.ComputeShader.SetFloat(System.Int32,System.Single)">
- <summary>
- <para>Set a float parameter.</para>
- </summary>
- <param name="name">Variable name in shader code.</param>
- <param name="nameID">Property name ID, use Shader.PropertyToID to get it.</param>
- <param name="val">Value to set.</param>
- </member>
- <member name="M:UnityEngine.ComputeShader.SetFloats(System.String,System.Single[])">
- <summary>
- <para>Set multiple consecutive float parameters at once.</para>
- </summary>
- <param name="name">Array variable name in the shader code.</param>
- <param name="nameID">Property name ID, use Shader.PropertyToID to get it.</param>
- <param name="values">Value array to set.</param>
- </member>
- <member name="M:UnityEngine.ComputeShader.SetFloats(System.Int32,System.Single[])">
- <summary>
- <para>Set multiple consecutive float parameters at once.</para>
- </summary>
- <param name="name">Array variable name in the shader code.</param>
- <param name="nameID">Property name ID, use Shader.PropertyToID to get it.</param>
- <param name="values">Value array to set.</param>
- </member>
- <member name="M:UnityEngine.ComputeShader.SetInt(System.String,System.Int32)">
- <summary>
- <para>Set an integer parameter.</para>
- </summary>
- <param name="name">Variable name in shader code.</param>
- <param name="nameID">Property name ID, use Shader.PropertyToID to get it.</param>
- <param name="val">Value to set.</param>
- </member>
- <member name="M:UnityEngine.ComputeShader.SetInt(System.Int32,System.Int32)">
- <summary>
- <para>Set an integer parameter.</para>
- </summary>
- <param name="name">Variable name in shader code.</param>
- <param name="nameID">Property name ID, use Shader.PropertyToID to get it.</param>
- <param name="val">Value to set.</param>
- </member>
- <member name="M:UnityEngine.ComputeShader.SetInts(System.String,System.Int32[])">
- <summary>
- <para>Set multiple consecutive integer parameters at once.</para>
- </summary>
- <param name="name">Array variable name in the shader code.</param>
- <param name="nameID">Property name ID, use Shader.PropertyToID to get it.</param>
- <param name="values">Value array to set.</param>
- </member>
- <member name="M:UnityEngine.ComputeShader.SetInts(System.Int32,System.Int32[])">
- <summary>
- <para>Set multiple consecutive integer parameters at once.</para>
- </summary>
- <param name="name">Array variable name in the shader code.</param>
- <param name="nameID">Property name ID, use Shader.PropertyToID to get it.</param>
- <param name="values">Value array to set.</param>
- </member>
- <member name="M:UnityEngine.ComputeShader.SetMatrix(System.String,UnityEngine.Matrix4x4)">
- <summary>
- <para>Set a Matrix parameter.</para>
- </summary>
- <param name="name">Variable name in shader code.</param>
- <param name="nameID">Property name ID, use Shader.PropertyToID to get it.</param>
- <param name="val">Value to set.</param>
- </member>
- <member name="M:UnityEngine.ComputeShader.SetMatrix(System.Int32,UnityEngine.Matrix4x4)">
- <summary>
- <para>Set a Matrix parameter.</para>
- </summary>
- <param name="name">Variable name in shader code.</param>
- <param name="nameID">Property name ID, use Shader.PropertyToID to get it.</param>
- <param name="val">Value to set.</param>
- </member>
- <member name="M:UnityEngine.ComputeShader.SetMatrixArray(System.String,UnityEngine.Matrix4x4[])">
- <summary>
- <para>Set a Matrix array parameter.</para>
- </summary>
- <param name="name">Variable name in shader code.</param>
- <param name="nameID">Property name ID, use Shader.PropertyToID to get it.</param>
- <param name="values">Value to set.</param>
- </member>
- <member name="M:UnityEngine.ComputeShader.SetMatrixArray(System.Int32,UnityEngine.Matrix4x4[])">
- <summary>
- <para>Set a Matrix array parameter.</para>
- </summary>
- <param name="name">Variable name in shader code.</param>
- <param name="nameID">Property name ID, use Shader.PropertyToID to get it.</param>
- <param name="values">Value to set.</param>
- </member>
- <member name="M:UnityEngine.ComputeShader.SetTexture(System.Int32,System.String,UnityEngine.Texture)">
- <summary>
- <para>Set a texture parameter.</para>
- </summary>
- <param name="kernelIndex">For which kernel the texture is being set. See FindKernel.</param>
- <param name="nameID">Property name ID, use Shader.PropertyToID to get it.</param>
- <param name="name">Name of the buffer variable in shader code.</param>
- <param name="texture">Texture to set.</param>
- </member>
- <member name="M:UnityEngine.ComputeShader.SetTexture(System.Int32,System.Int32,UnityEngine.Texture)">
- <summary>
- <para>Set a texture parameter.</para>
- </summary>
- <param name="kernelIndex">For which kernel the texture is being set. See FindKernel.</param>
- <param name="nameID">Property name ID, use Shader.PropertyToID to get it.</param>
- <param name="name">Name of the buffer variable in shader code.</param>
- <param name="texture">Texture to set.</param>
- </member>
- <member name="M:UnityEngine.ComputeShader.SetTextureFromGlobal(System.Int32,System.String,System.String)">
- <summary>
- <para>Set a texture parameter from a global texture property.</para>
- </summary>
- <param name="kernelIndex">For which kernel the texture is being set. See FindKernel.</param>
- <param name="nameID">Property name ID, use Shader.PropertyToID to get it.</param>
- <param name="name">Name of the buffer variable in shader code.</param>
- <param name="globalTextureName">Global texture property to assign to shader.</param>
- <param name="globalTextureNameID">Property name ID, use Shader.PropertyToID to get it.</param>
- </member>
- <member name="M:UnityEngine.ComputeShader.SetTextureFromGlobal(System.Int32,System.Int32,System.Int32)">
- <summary>
- <para>Set a texture parameter from a global texture property.</para>
- </summary>
- <param name="kernelIndex">For which kernel the texture is being set. See FindKernel.</param>
- <param name="nameID">Property name ID, use Shader.PropertyToID to get it.</param>
- <param name="name">Name of the buffer variable in shader code.</param>
- <param name="globalTextureName">Global texture property to assign to shader.</param>
- <param name="globalTextureNameID">Property name ID, use Shader.PropertyToID to get it.</param>
- </member>
- <member name="M:UnityEngine.ComputeShader.SetVector(System.String,UnityEngine.Vector4)">
- <summary>
- <para>Set a vector parameter.</para>
- </summary>
- <param name="name">Variable name in shader code.</param>
- <param name="nameID">Property name ID, use Shader.PropertyToID to get it.</param>
- <param name="val">Value to set.</param>
- </member>
- <member name="M:UnityEngine.ComputeShader.SetVector(System.Int32,UnityEngine.Vector4)">
- <summary>
- <para>Set a vector parameter.</para>
- </summary>
- <param name="name">Variable name in shader code.</param>
- <param name="nameID">Property name ID, use Shader.PropertyToID to get it.</param>
- <param name="val">Value to set.</param>
- </member>
- <member name="M:UnityEngine.ComputeShader.SetVectorArray(System.String,UnityEngine.Vector4[])">
- <summary>
- <para>Set a vector array parameter.</para>
- </summary>
- <param name="name">Variable name in shader code.</param>
- <param name="nameID">Property name ID, use Shader.PropertyToID to get it.</param>
- <param name="values">Value to set.</param>
- </member>
- <member name="M:UnityEngine.ComputeShader.SetVectorArray(System.Int32,UnityEngine.Vector4[])">
- <summary>
- <para>Set a vector array parameter.</para>
- </summary>
- <param name="name">Variable name in shader code.</param>
- <param name="nameID">Property name ID, use Shader.PropertyToID to get it.</param>
- <param name="values">Value to set.</param>
- </member>
- <member name="T:UnityEngine.ContextMenu">
- <summary>
- <para>The ContextMenu attribute allows you to add commands to the context menu.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.ContextMenu.#ctor(System.String)">
- <summary>
- <para>Adds the function to the context menu of the component.</para>
- </summary>
- <param name="itemName">The name of the context menu item.</param>
- <param name="isValidateFunction">Whether this is a validate function (defaults to false).</param>
- <param name="priority">Priority used to override the ordering of the menu items (defaults to 1000000). The lower the number the earlier in the menu it will appear.</param>
- </member>
- <member name="M:UnityEngine.ContextMenu.#ctor(System.String,System.Boolean)">
- <summary>
- <para>Adds the function to the context menu of the component.</para>
- </summary>
- <param name="itemName">The name of the context menu item.</param>
- <param name="isValidateFunction">Whether this is a validate function (defaults to false).</param>
- <param name="priority">Priority used to override the ordering of the menu items (defaults to 1000000). The lower the number the earlier in the menu it will appear.</param>
- </member>
- <member name="M:UnityEngine.ContextMenu.#ctor(System.String,System.Boolean,System.Int32)">
- <summary>
- <para>Adds the function to the context menu of the component.</para>
- </summary>
- <param name="itemName">The name of the context menu item.</param>
- <param name="isValidateFunction">Whether this is a validate function (defaults to false).</param>
- <param name="priority">Priority used to override the ordering of the menu items (defaults to 1000000). The lower the number the earlier in the menu it will appear.</param>
- </member>
- <member name="T:UnityEngine.ContextMenuItemAttribute">
- <summary>
- <para>Use this attribute to add a context menu to a field that calls a named method.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ContextMenuItemAttribute.function">
- <summary>
- <para>The name of the function that should be called.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ContextMenuItemAttribute.name">
- <summary>
- <para>The name of the context menu item.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.ContextMenuItemAttribute.#ctor(System.String,System.String)">
- <summary>
- <para>Use this attribute to add a context menu to a field that calls a named method.</para>
- </summary>
- <param name="name">The name of the context menu item.</param>
- <param name="function">The name of the function that should be called.</param>
- </member>
- <member name="T:UnityEngine.Coroutine">
- <summary>
- <para>MonoBehaviour.StartCoroutine returns a Coroutine. Instances of this class are only used to reference these coroutines, and do not hold any exposed properties or functions.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.CrashReport">
- <summary>
- <para>Holds data for a single application crash event and provides access to all gathered crash reports.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CrashReport.lastReport">
- <summary>
- <para>Returns last crash report, or null if no reports are available.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CrashReport.reports">
- <summary>
- <para>Returns all currently available reports in a new array.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.CrashReport.text">
- <summary>
- <para>Crash report data as formatted text.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.CrashReport.time">
- <summary>
- <para>Time, when the crash occured.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.CrashReport.Remove">
- <summary>
- <para>Remove report from available reports list.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.CrashReport.RemoveAll">
- <summary>
- <para>Remove all reports from available reports list.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.CreateAssetMenuAttribute">
- <summary>
- <para>Mark a ScriptableObject-derived type to be automatically listed in the Assets/Create submenu, so that instances of the type can be easily created and stored in the project as ".asset" files.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CreateAssetMenuAttribute.fileName">
- <summary>
- <para>The default file name used by newly created instances of this type.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CreateAssetMenuAttribute.menuName">
- <summary>
- <para>The display name for this type shown in the Assets/Create menu.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CreateAssetMenuAttribute.order">
- <summary>
- <para>The position of the menu item within the Assets/Create menu.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Cubemap">
- <summary>
- <para>Class for handling cube maps, Use this to create or modify existing.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Cubemap.format">
- <summary>
- <para>The format of the pixel data in the texture (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Cubemap.mipmapCount">
- <summary>
- <para>How many mipmap levels are in this texture (Read Only).</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Cubemap.Apply(System.Boolean,System.Boolean)">
- <summary>
- <para>Actually apply all previous SetPixel and SetPixels changes.</para>
- </summary>
- <param name="updateMipmaps">When set to true, mipmap levels are recalculated.</param>
- <param name="makeNoLongerReadable">When set to true, system memory copy of a texture is released.</param>
- </member>
- <member name="M:UnityEngine.Cubemap.CreateExternalTexture(System.Int32,UnityEngine.TextureFormat,System.Boolean,System.IntPtr)">
- <summary>
- <para>Creates a Unity cubemap out of externally created native cubemap object.</para>
- </summary>
- <param name="size">The width and height of each face of the cubemap should be the same.</param>
- <param name="format">Format of underlying cubemap object.</param>
- <param name="mipmap">Does the cubemap have mipmaps?</param>
- <param name="nativeTex">Native cubemap texture object.</param>
- <param name="width"></param>
- </member>
- <member name="M:UnityEngine.Cubemap.#ctor(System.Int32,UnityEngine.TextureFormat,System.Boolean)">
- <summary>
- <para>Create a new empty cubemap texture.</para>
- </summary>
- <param name="size">Width/height of a cube face in pixels.</param>
- <param name="format">Pixel data format to be used for the Cubemap.</param>
- <param name="mipmap">Should mipmaps be created?</param>
- <param name="width"></param>
- <param name="textureFormat"></param>
- <param name="mipChain"></param>
- </member>
- <member name="M:UnityEngine.Cubemap.GetPixel(UnityEngine.CubemapFace,System.Int32,System.Int32)">
- <summary>
- <para>Returns pixel color at coordinates (face, x, y).</para>
- </summary>
- <param name="face"></param>
- <param name="x"></param>
- <param name="y"></param>
- </member>
- <member name="M:UnityEngine.Cubemap.GetPixels(UnityEngine.CubemapFace,System.Int32)">
- <summary>
- <para>Returns pixel colors of a cubemap face.</para>
- </summary>
- <param name="face">The face from which pixel data is taken.</param>
- <param name="miplevel">Mipmap level for the chosen face.</param>
- </member>
- <member name="M:UnityEngine.Cubemap.SetPixel(UnityEngine.CubemapFace,System.Int32,System.Int32,UnityEngine.Color)">
- <summary>
- <para>Sets pixel color at coordinates (face, x, y).</para>
- </summary>
- <param name="face"></param>
- <param name="x"></param>
- <param name="y"></param>
- <param name="color"></param>
- </member>
- <member name="M:UnityEngine.Cubemap.SetPixels(UnityEngine.Color[],UnityEngine.CubemapFace,System.Int32)">
- <summary>
- <para>Sets pixel colors of a cubemap face.</para>
- </summary>
- <param name="colors">Pixel data for the Cubemap face.</param>
- <param name="face">The face to which the new data should be applied.</param>
- <param name="miplevel">The mipmap level for the face.</param>
- </member>
- <member name="M:UnityEngine.Cubemap.SmoothEdges(System.Int32)">
- <summary>
- <para>Performs smoothing of near edge regions.</para>
- </summary>
- <param name="smoothRegionWidthInPixels">Pixel distance at edges over which to apply smoothing.</param>
- </member>
- <member name="T:UnityEngine.CubemapArray">
- <summary>
- <para>Class for handling Cubemap arrays.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CubemapArray.cubemapCount">
- <summary>
- <para>Number of cubemaps in the array (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CubemapArray.format">
- <summary>
- <para>Texture format (Read Only).</para>
- </summary>
- </member>
- <member name="M:UnityEngine.CubemapArray.Apply(System.Boolean,System.Boolean)">
- <summary>
- <para>Actually apply all previous SetPixels changes.</para>
- </summary>
- <param name="updateMipmaps">When set to true, mipmap levels are recalculated.</param>
- <param name="makeNoLongerReadable">When set to true, system memory copy of a texture is released.</param>
- </member>
- <member name="M:UnityEngine.CubemapArray.#ctor(System.Int32,System.Int32,UnityEngine.TextureFormat,System.Boolean)">
- <summary>
- <para>Create a new cubemap array.</para>
- </summary>
- <param name="faceSize">Cubemap face size in pixels.</param>
- <param name="cubemapCount">Number of elements in the cubemap array.</param>
- <param name="format">Format of the pixel data.</param>
- <param name="mipmap">Should mipmaps be created?</param>
- <param name="linear">Does the texture contain non-color data (i.e. don't do any color space conversions when sampling)? Default is false.</param>
- <param name="width"></param>
- <param name="textureFormat"></param>
- <param name="mipChain"></param>
- </member>
- <member name="M:UnityEngine.CubemapArray.#ctor(System.Int32,System.Int32,UnityEngine.TextureFormat,System.Boolean,System.Boolean)">
- <summary>
- <para>Create a new cubemap array.</para>
- </summary>
- <param name="faceSize">Cubemap face size in pixels.</param>
- <param name="cubemapCount">Number of elements in the cubemap array.</param>
- <param name="format">Format of the pixel data.</param>
- <param name="mipmap">Should mipmaps be created?</param>
- <param name="linear">Does the texture contain non-color data (i.e. don't do any color space conversions when sampling)? Default is false.</param>
- <param name="width"></param>
- <param name="textureFormat"></param>
- <param name="mipChain"></param>
- </member>
- <member name="M:UnityEngine.CubemapArray.GetPixels(UnityEngine.CubemapFace,System.Int32,System.Int32)">
- <summary>
- <para>Returns pixel colors of a single array slice/face.</para>
- </summary>
- <param name="face">Cubemap face to read pixels from.</param>
- <param name="arrayElement">Array slice to read pixels from.</param>
- <param name="miplevel">Mipmap level to read pixels from.</param>
- <returns>
- <para>Array of pixel colors.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.CubemapArray.GetPixels32(UnityEngine.CubemapFace,System.Int32,System.Int32)">
- <summary>
- <para>Returns pixel colors of a single array slice/face.</para>
- </summary>
- <param name="face">Cubemap face to read pixels from.</param>
- <param name="arrayElement">Array slice to read pixels from.</param>
- <param name="miplevel">Mipmap level to read pixels from.</param>
- <returns>
- <para>Array of pixel colors in low precision (8 bits/channel) format.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.CubemapArray.SetPixels(UnityEngine.Color[],UnityEngine.CubemapFace,System.Int32,System.Int32)">
- <summary>
- <para>Set pixel colors for a single array slice/face.</para>
- </summary>
- <param name="colors">An array of pixel colors.</param>
- <param name="face">Cubemap face to set pixels for.</param>
- <param name="arrayElement">Array element index to set pixels for.</param>
- <param name="miplevel">Mipmap level to set pixels for.</param>
- </member>
- <member name="M:UnityEngine.CubemapArray.SetPixels32(UnityEngine.Color32[],UnityEngine.CubemapFace,System.Int32,System.Int32)">
- <summary>
- <para>Set pixel colors for a single array slice/face.</para>
- </summary>
- <param name="colors">An array of pixel colors in low precision (8 bits/channel) format.</param>
- <param name="face">Cubemap face to set pixels for.</param>
- <param name="arrayElement">Array element index to set pixels for.</param>
- <param name="miplevel">Mipmap level to set pixels for.</param>
- </member>
- <member name="T:UnityEngine.CubemapFace">
- <summary>
- <para>Cubemap face.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.CubemapFace.NegativeX">
- <summary>
- <para>Left facing side (-x).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.CubemapFace.NegativeY">
- <summary>
- <para>Downward facing side (-y).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.CubemapFace.NegativeZ">
- <summary>
- <para>Backward facing side (-z).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.CubemapFace.PositiveX">
- <summary>
- <para>Right facing side (+x).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.CubemapFace.PositiveY">
- <summary>
- <para>Upwards facing side (+y).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.CubemapFace.PositiveZ">
- <summary>
- <para>Forward facing side (+z).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.CubemapFace.Unknown">
- <summary>
- <para>Cubemap face is unknown or unspecified.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.CullingGroup">
- <summary>
- <para>Describes a set of bounding spheres that should have their visibility and distances maintained.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CullingGroup.enabled">
- <summary>
- <para>Pauses culling group execution.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CullingGroup.onStateChanged">
- <summary>
- <para>Sets the callback that will be called when a sphere's visibility and/or distance state has changed.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CullingGroup.targetCamera">
- <summary>
- <para>Locks the CullingGroup to a specific camera.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.CullingGroup.#ctor">
- <summary>
- <para>Create a CullingGroup.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.CullingGroup.Dispose">
- <summary>
- <para>Clean up all memory used by the CullingGroup immediately.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.CullingGroup.EraseSwapBack(System.Int32)">
- <summary>
- <para>Erase a given bounding sphere by moving the final sphere on top of it.</para>
- </summary>
- <param name="index">The index of the entry to erase.</param>
- </member>
- <member name="M:UnityEngine.CullingGroup.EraseSwapBack(System.Int32,T[],System.Int32&amp;)">
- <summary>
- <para>Erase a given entry in an arbitrary array by copying the final entry on top of it, then decrementing the number of entries used by one.</para>
- </summary>
- <param name="index">The index of the entry to erase.</param>
- <param name="myArray">An array of entries.</param>
- <param name="size">The number of entries in the array that are actually used.</param>
- </member>
- <member name="M:UnityEngine.CullingGroup.GetDistance(System.Int32)">
- <summary>
- <para>Get the current distance band index of a given sphere.</para>
- </summary>
- <param name="index">The index of the sphere.</param>
- <returns>
- <para>The sphere's current distance band index.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.CullingGroup.IsVisible(System.Int32)">
- <summary>
- <para>Returns true if the bounding sphere at index is currently visible from any of the contributing cameras.</para>
- </summary>
- <param name="index">The index of the bounding sphere.</param>
- <returns>
- <para>True if the sphere is visible; false if it is invisible.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.CullingGroup.QueryIndices(System.Boolean,System.Int32[],System.Int32)">
- <summary>
- <para>Retrieve the indices of spheres that have particular visibility and/or distance states.</para>
- </summary>
- <param name="visible">True if only visible spheres should be retrieved; false if only invisible spheres should be retrieved.</param>
- <param name="distanceIndex">The distance band that retrieved spheres must be in.</param>
- <param name="result">An array that will be filled with the retrieved sphere indices.</param>
- <param name="firstIndex">The index of the sphere to begin searching at.</param>
- <returns>
- <para>The number of sphere indices found and written into the result array.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.CullingGroup.QueryIndices(System.Int32,System.Int32[],System.Int32)">
- <summary>
- <para>Retrieve the indices of spheres that have particular visibility and/or distance states.</para>
- </summary>
- <param name="visible">True if only visible spheres should be retrieved; false if only invisible spheres should be retrieved.</param>
- <param name="distanceIndex">The distance band that retrieved spheres must be in.</param>
- <param name="result">An array that will be filled with the retrieved sphere indices.</param>
- <param name="firstIndex">The index of the sphere to begin searching at.</param>
- <returns>
- <para>The number of sphere indices found and written into the result array.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.CullingGroup.QueryIndices(System.Boolean,System.Int32,System.Int32[],System.Int32)">
- <summary>
- <para>Retrieve the indices of spheres that have particular visibility and/or distance states.</para>
- </summary>
- <param name="visible">True if only visible spheres should be retrieved; false if only invisible spheres should be retrieved.</param>
- <param name="distanceIndex">The distance band that retrieved spheres must be in.</param>
- <param name="result">An array that will be filled with the retrieved sphere indices.</param>
- <param name="firstIndex">The index of the sphere to begin searching at.</param>
- <returns>
- <para>The number of sphere indices found and written into the result array.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.CullingGroup.SetBoundingDistances(System.Single[])">
- <summary>
- <para>Set bounding distances for 'distance bands' the group should compute, as well as options for how spheres falling into each distance band should be treated.</para>
- </summary>
- <param name="distances">An array of bounding distances. The distances should be sorted in increasing order.</param>
- <param name="distanceBehaviours">An array of CullingDistanceBehaviour settings. The array should be the same length as the array provided to the distances parameter. It can also be omitted or passed as null, in which case all distances will be given CullingDistanceBehaviour.Normal behaviour.</param>
- </member>
- <member name="M:UnityEngine.CullingGroup.SetBoundingSphereCount(System.Int32)">
- <summary>
- <para>Sets the number of bounding spheres in the bounding spheres array that are actually being used.</para>
- </summary>
- <param name="count">The number of bounding spheres being used.</param>
- </member>
- <member name="M:UnityEngine.CullingGroup.SetBoundingSpheres(UnityEngine.BoundingSphere[])">
- <summary>
- <para>Sets the array of bounding sphere definitions that the CullingGroup should compute culling for.</para>
- </summary>
- <param name="array">The BoundingSpheres to cull.</param>
- </member>
- <member name="M:UnityEngine.CullingGroup.SetDistanceReferencePoint(UnityEngine.Vector3)">
- <summary>
- <para>Set the reference point from which distance bands are measured.</para>
- </summary>
- <param name="point">A fixed point to measure the distance from.</param>
- <param name="transform">A transform to measure the distance from. The transform's position will be automatically tracked.</param>
- </member>
- <member name="M:UnityEngine.CullingGroup.SetDistanceReferencePoint(UnityEngine.Transform)">
- <summary>
- <para>Set the reference point from which distance bands are measured.</para>
- </summary>
- <param name="point">A fixed point to measure the distance from.</param>
- <param name="transform">A transform to measure the distance from. The transform's position will be automatically tracked.</param>
- </member>
- <member name="T:UnityEngine.CullingGroup.StateChanged">
- <summary>
- <para>This delegate is used for recieving a callback when a sphere's distance or visibility state has changed.</para>
- </summary>
- <param name="sphere">A CullingGroupEvent that provides information about the sphere that has changed.</param>
- </member>
- <member name="T:UnityEngine.CullingGroupEvent">
- <summary>
- <para>Provides information about the current and previous states of one sphere in a CullingGroup.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CullingGroupEvent.currentDistance">
- <summary>
- <para>The current distance band index of the sphere, after the most recent culling pass.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CullingGroupEvent.hasBecomeInvisible">
- <summary>
- <para>Did this sphere change from being visible to being invisible in the most recent culling pass?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CullingGroupEvent.hasBecomeVisible">
- <summary>
- <para>Did this sphere change from being invisible to being visible in the most recent culling pass?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CullingGroupEvent.index">
- <summary>
- <para>The index of the sphere that has changed.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CullingGroupEvent.isVisible">
- <summary>
- <para>Was the sphere considered visible by the most recent culling pass?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CullingGroupEvent.previousDistance">
- <summary>
- <para>The distance band index of the sphere before the most recent culling pass.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CullingGroupEvent.wasVisible">
- <summary>
- <para>Was the sphere visible before the most recent culling pass?</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Cursor">
- <summary>
- <para>Cursor API for setting the cursor (mouse pointer).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Cursor.lockState">
- <summary>
- <para>Determines whether the hardware pointer is locked to the center of the view, constrained to the window, or not constrained at all.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Cursor.visible">
- <summary>
- <para>Determines whether the hardware pointer is visible or not.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Cursor.SetCursor">
- <summary>
- <para>Sets the mouse cursor to the given texture.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Cursor.SetCursor(UnityEngine.Texture2D,UnityEngine.Vector2,UnityEngine.CursorMode)">
- <summary>
- <para>Specify a custom cursor that you wish to use as a cursor.</para>
- </summary>
- <param name="texture">The texture to use for the cursor or null to set the default cursor. Note that a texture needs to be imported with "Read/Write enabled" in the texture importer (or using the "Cursor" defaults), in order to be used as a cursor.</param>
- <param name="hotspot">The offset from the top left of the texture to use as the target point (must be within the bounds of the cursor).</param>
- <param name="cursorMode">Allow this cursor to render as a hardware cursor on supported platforms, or force software cursor.</param>
- </member>
- <member name="T:UnityEngine.CursorLockMode">
- <summary>
- <para>How the cursor should behave.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.CursorLockMode.Confined">
- <summary>
- <para>Confine cursor to the game window.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.CursorLockMode.Locked">
- <summary>
- <para>Lock cursor to the center of the game window.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.CursorLockMode.None">
- <summary>
- <para>Cursor behavior is unmodified.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.CursorMode">
- <summary>
- <para>Determines whether the mouse cursor is rendered using software rendering or, on supported platforms, hardware rendering.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.CursorMode.Auto">
- <summary>
- <para>Use hardware cursors on supported platforms.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.CursorMode.ForceSoftware">
- <summary>
- <para>Force the use of software cursors.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.CustomRenderTexture">
- <summary>
- <para>Custom Render Textures are an extension to Render Textures, enabling you to render directly to the Texture using a Shader.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CustomRenderTexture.cubemapFaceMask">
- <summary>
- <para>Bitfield that allows to enable or disable update on each of the cubemap faces. Order from least significant bit is +X, -X, +Y, -Y, +Z, -Z.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CustomRenderTexture.doubleBuffered">
- <summary>
- <para>If true, the Custom Render Texture is double buffered so that you can access it during its own update. otherwise the Custom Render Texture will be not be double buffered.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CustomRenderTexture.initializationColor">
- <summary>
- <para>Color with which the Custom Render Texture is initialized. This parameter will be ignored if an initializationMaterial is set.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CustomRenderTexture.initializationMaterial">
- <summary>
- <para>Material with which the Custom Render Texture is initialized. Initialization texture and color are ignored if this parameter is set.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CustomRenderTexture.initializationMode">
- <summary>
- <para>Specify how the texture should be initialized.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CustomRenderTexture.initializationSource">
- <summary>
- <para>Specify if the texture should be initialized with a Texture and a Color or a Material.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CustomRenderTexture.initializationTexture">
- <summary>
- <para>Texture with which the Custom Render Texture is initialized (multiplied by the initialization color). This parameter will be ignored if an initializationMaterial is set.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CustomRenderTexture.material">
- <summary>
- <para>Material with which the content of the Custom Render Texture is updated.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CustomRenderTexture.shaderPass">
- <summary>
- <para>Shader Pass used to update the Custom Render Texture.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CustomRenderTexture.updateMode">
- <summary>
- <para>Specify how the texture should be updated.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CustomRenderTexture.updateZoneSpace">
- <summary>
- <para>Space in which the update zones are expressed (Normalized or Pixel space).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CustomRenderTexture.wrapUpdateZones">
- <summary>
- <para>If true, Update zones will wrap around the border of the Custom Render Texture. Otherwise, Update zones will be clamped at the border of the Custom Render Texture.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.CustomRenderTexture.ClearUpdateZones">
- <summary>
- <para>Clear all Update Zones.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.CustomRenderTexture.#ctor(System.Int32,System.Int32,UnityEngine.RenderTextureFormat,UnityEngine.RenderTextureReadWrite)">
- <summary>
- <para>Create a new Custom Render Texture.</para>
- </summary>
- <param name="width"></param>
- <param name="height"></param>
- <param name="format"></param>
- <param name="readWrite"></param>
- </member>
- <member name="M:UnityEngine.CustomRenderTexture.#ctor(System.Int32,System.Int32,UnityEngine.RenderTextureFormat)">
- <summary>
- <para>Create a new Custom Render Texture.</para>
- </summary>
- <param name="width"></param>
- <param name="height"></param>
- <param name="format"></param>
- <param name="readWrite"></param>
- </member>
- <member name="M:UnityEngine.CustomRenderTexture.#ctor(System.Int32,System.Int32)">
- <summary>
- <para>Create a new Custom Render Texture.</para>
- </summary>
- <param name="width"></param>
- <param name="height"></param>
- <param name="format"></param>
- <param name="readWrite"></param>
- </member>
- <member name="M:UnityEngine.CustomRenderTexture.GetUpdateZones(System.Collections.Generic.List`1&lt;UnityEngine.CustomRenderTextureUpdateZone&gt;)">
- <summary>
- <para>Returns the list of Update Zones.</para>
- </summary>
- <param name="updateZones">Output list of Update Zones.</param>
- </member>
- <member name="M:UnityEngine.CustomRenderTexture.Initialize">
- <summary>
- <para>Triggers an initialization of the Custom Render Texture.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.CustomRenderTexture.SetUpdateZones(UnityEngine.CustomRenderTextureUpdateZone[])">
- <summary>
- <para>Setup the list of Update Zones for the Custom Render Texture.</para>
- </summary>
- <param name="updateZones"></param>
- </member>
- <member name="M:UnityEngine.CustomRenderTexture.Update(System.Int32)">
- <summary>
- <para>Triggers the update of the Custom Render Texture.</para>
- </summary>
- <param name="count">Number of upate pass to perform.</param>
- </member>
- <member name="T:UnityEngine.CustomRenderTextureInitializationSource">
- <summary>
- <para>Specify the source of a Custom Render Texture initialization.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.CustomRenderTextureInitializationSource.Material">
- <summary>
- <para>Custom Render Texture is initalized with a Material.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.CustomRenderTextureInitializationSource.TextureAndColor">
- <summary>
- <para>Custom Render Texture is initialized by a Texture multiplied by a Color.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.CustomRenderTextureUpdateMode">
- <summary>
- <para>Frequency of update or initialization of a Custom Render Texture.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.CustomRenderTextureUpdateMode.OnDemand">
- <summary>
- <para>Initialization/Update will only occur when triggered by the script.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.CustomRenderTextureUpdateMode.OnLoad">
- <summary>
- <para>Initialization/Update will occur once at load time and then can be triggered again by script.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.CustomRenderTextureUpdateMode.Realtime">
- <summary>
- <para>Initialization/Update will occur at every frame.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.CustomRenderTextureUpdateZone">
- <summary>
- <para>Structure describing an Update Zone.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.CustomRenderTextureUpdateZone.needSwap">
- <summary>
- <para>If true, and if the texture is double buffered, a request is made to swap the buffers before the next update. Otherwise, the buffers will not be swapped.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.CustomRenderTextureUpdateZone.passIndex">
- <summary>
- <para>Shader Pass used to update the Custom Render Texture for this Update Zone.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.CustomRenderTextureUpdateZone.rotation">
- <summary>
- <para>Rotation of the Update Zone.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.CustomRenderTextureUpdateZone.updateZoneCenter">
- <summary>
- <para>Position of the center of the Update Zone within the Custom Render Texture.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.CustomRenderTextureUpdateZone.updateZoneSize">
- <summary>
- <para>Size of the Update Zone.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.CustomRenderTextureUpdateZoneSpace">
- <summary>
- <para>Space in which coordinates are provided for Update Zones.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.CustomRenderTextureUpdateZoneSpace.Normalized">
- <summary>
- <para>Coordinates are normalized. (0, 0) is top left and (1, 1) is bottom right.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.CustomRenderTextureUpdateZoneSpace.Pixel">
- <summary>
- <para>Coordinates are expressed in pixels. (0, 0) is top left (width, height) is bottom right.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.CustomYieldInstruction">
- <summary>
- <para>Base class for custom yield instructions to suspend coroutines.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CustomYieldInstruction.keepWaiting">
- <summary>
- <para>Indicates if coroutine should be kept suspended.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Debug">
- <summary>
- <para>Class containing methods to ease debugging while developing a game.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Debug.developerConsoleVisible">
- <summary>
- <para>Reports whether the development console is visible. The development console cannot be made to appear using:</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Debug.isDebugBuild">
- <summary>
- <para>In the Build Settings dialog there is a check box called "Development Build".</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Debug.unityLogger">
- <summary>
- <para>Get default debug logger.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Debug.Assert(System.Boolean)">
- <summary>
- <para>Assert a condition and logs an error message to the Unity console on failure.</para>
- </summary>
- <param name="condition">Condition you expect to be true.</param>
- <param name="context">Object to which the message applies.</param>
- <param name="message">String or object to be converted to string representation for display.</param>
- </member>
- <member name="M:UnityEngine.Debug.Assert(System.Boolean,UnityEngine.Object)">
- <summary>
- <para>Assert a condition and logs an error message to the Unity console on failure.</para>
- </summary>
- <param name="condition">Condition you expect to be true.</param>
- <param name="context">Object to which the message applies.</param>
- <param name="message">String or object to be converted to string representation for display.</param>
- </member>
- <member name="M:UnityEngine.Debug.Assert(System.Boolean,System.Object)">
- <summary>
- <para>Assert a condition and logs an error message to the Unity console on failure.</para>
- </summary>
- <param name="condition">Condition you expect to be true.</param>
- <param name="context">Object to which the message applies.</param>
- <param name="message">String or object to be converted to string representation for display.</param>
- </member>
- <member name="M:UnityEngine.Debug.Assert(System.Boolean,System.Object,UnityEngine.Object)">
- <summary>
- <para>Assert a condition and logs an error message to the Unity console on failure.</para>
- </summary>
- <param name="condition">Condition you expect to be true.</param>
- <param name="context">Object to which the message applies.</param>
- <param name="message">String or object to be converted to string representation for display.</param>
- </member>
- <member name="M:UnityEngine.Debug.AssertFormat(System.Boolean,System.String,System.Object[])">
- <summary>
- <para>Assert a condition and logs a formatted error message to the Unity console on failure.</para>
- </summary>
- <param name="condition">Condition you expect to be true.</param>
- <param name="format">A composite format string.</param>
- <param name="args">Format arguments.</param>
- <param name="context">Object to which the message applies.</param>
- </member>
- <member name="M:UnityEngine.Debug.AssertFormat(System.Boolean,UnityEngine.Object,System.String,System.Object[])">
- <summary>
- <para>Assert a condition and logs a formatted error message to the Unity console on failure.</para>
- </summary>
- <param name="condition">Condition you expect to be true.</param>
- <param name="format">A composite format string.</param>
- <param name="args">Format arguments.</param>
- <param name="context">Object to which the message applies.</param>
- </member>
- <member name="M:UnityEngine.Debug.Break">
- <summary>
- <para>Pauses the editor.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Debug.ClearDeveloperConsole">
- <summary>
- <para>Clears errors from the developer console.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Debug.DrawLine(UnityEngine.Vector3,UnityEngine.Vector3)">
- <summary>
- <para>Draws a line between specified start and end points.</para>
- </summary>
- <param name="start">Point in world space where the line should start.</param>
- <param name="end">Point in world space where the line should end.</param>
- <param name="color">Color of the line.</param>
- <param name="duration">How long the line should be visible for.</param>
- <param name="depthTest">Should the line be obscured by objects closer to the camera?</param>
- </member>
- <member name="M:UnityEngine.Debug.DrawLine(UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.Color)">
- <summary>
- <para>Draws a line between specified start and end points.</para>
- </summary>
- <param name="start">Point in world space where the line should start.</param>
- <param name="end">Point in world space where the line should end.</param>
- <param name="color">Color of the line.</param>
- <param name="duration">How long the line should be visible for.</param>
- <param name="depthTest">Should the line be obscured by objects closer to the camera?</param>
- </member>
- <member name="M:UnityEngine.Debug.DrawLine(UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.Color,System.Single)">
- <summary>
- <para>Draws a line between specified start and end points.</para>
- </summary>
- <param name="start">Point in world space where the line should start.</param>
- <param name="end">Point in world space where the line should end.</param>
- <param name="color">Color of the line.</param>
- <param name="duration">How long the line should be visible for.</param>
- <param name="depthTest">Should the line be obscured by objects closer to the camera?</param>
- </member>
- <member name="M:UnityEngine.Debug.DrawLine(UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.Color,System.Single,System.Boolean)">
- <summary>
- <para>Draws a line between specified start and end points.</para>
- </summary>
- <param name="start">Point in world space where the line should start.</param>
- <param name="end">Point in world space where the line should end.</param>
- <param name="color">Color of the line.</param>
- <param name="duration">How long the line should be visible for.</param>
- <param name="depthTest">Should the line be obscured by objects closer to the camera?</param>
- </member>
- <member name="M:UnityEngine.Debug.DrawRay(UnityEngine.Vector3,UnityEngine.Vector3)">
- <summary>
- <para>Draws a line from start to start + dir in world coordinates.</para>
- </summary>
- <param name="start">Point in world space where the ray should start.</param>
- <param name="dir">Direction and length of the ray.</param>
- <param name="color">Color of the drawn line.</param>
- <param name="duration">How long the line will be visible for (in seconds).</param>
- <param name="depthTest">Should the line be obscured by other objects closer to the camera?</param>
- </member>
- <member name="M:UnityEngine.Debug.DrawRay(UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.Color)">
- <summary>
- <para>Draws a line from start to start + dir in world coordinates.</para>
- </summary>
- <param name="start">Point in world space where the ray should start.</param>
- <param name="dir">Direction and length of the ray.</param>
- <param name="color">Color of the drawn line.</param>
- <param name="duration">How long the line will be visible for (in seconds).</param>
- <param name="depthTest">Should the line be obscured by other objects closer to the camera?</param>
- </member>
- <member name="M:UnityEngine.Debug.DrawRay(UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.Color,System.Single)">
- <summary>
- <para>Draws a line from start to start + dir in world coordinates.</para>
- </summary>
- <param name="start">Point in world space where the ray should start.</param>
- <param name="dir">Direction and length of the ray.</param>
- <param name="color">Color of the drawn line.</param>
- <param name="duration">How long the line will be visible for (in seconds).</param>
- <param name="depthTest">Should the line be obscured by other objects closer to the camera?</param>
- </member>
- <member name="M:UnityEngine.Debug.DrawRay(UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.Color,System.Single,System.Boolean)">
- <summary>
- <para>Draws a line from start to start + dir in world coordinates.</para>
- </summary>
- <param name="start">Point in world space where the ray should start.</param>
- <param name="dir">Direction and length of the ray.</param>
- <param name="color">Color of the drawn line.</param>
- <param name="duration">How long the line will be visible for (in seconds).</param>
- <param name="depthTest">Should the line be obscured by other objects closer to the camera?</param>
- </member>
- <member name="M:UnityEngine.Debug.Log(System.Object)">
- <summary>
- <para>Logs message to the Unity Console.</para>
- </summary>
- <param name="message">String or object to be converted to string representation for display.</param>
- <param name="context">Object to which the message applies.</param>
- </member>
- <member name="M:UnityEngine.Debug.Log(System.Object,UnityEngine.Object)">
- <summary>
- <para>Logs message to the Unity Console.</para>
- </summary>
- <param name="message">String or object to be converted to string representation for display.</param>
- <param name="context">Object to which the message applies.</param>
- </member>
- <member name="M:UnityEngine.Debug.LogAssertion(System.Object)">
- <summary>
- <para>A variant of Debug.Log that logs an assertion message to the console.</para>
- </summary>
- <param name="message">String or object to be converted to string representation for display.</param>
- <param name="context">Object to which the message applies.</param>
- </member>
- <member name="M:UnityEngine.Debug.LogAssertion(System.Object,UnityEngine.Object)">
- <summary>
- <para>A variant of Debug.Log that logs an assertion message to the console.</para>
- </summary>
- <param name="message">String or object to be converted to string representation for display.</param>
- <param name="context">Object to which the message applies.</param>
- </member>
- <member name="M:UnityEngine.Debug.LogAssertionFormat(System.String,System.Object[])">
- <summary>
- <para>Logs a formatted assertion message to the Unity console.</para>
- </summary>
- <param name="format">A composite format string.</param>
- <param name="args">Format arguments.</param>
- <param name="context">Object to which the message applies.</param>
- </member>
- <member name="M:UnityEngine.Debug.LogAssertionFormat(UnityEngine.Object,System.String,System.Object[])">
- <summary>
- <para>Logs a formatted assertion message to the Unity console.</para>
- </summary>
- <param name="format">A composite format string.</param>
- <param name="args">Format arguments.</param>
- <param name="context">Object to which the message applies.</param>
- </member>
- <member name="M:UnityEngine.Debug.LogError(System.Object)">
- <summary>
- <para>A variant of Debug.Log that logs an error message to the console.</para>
- </summary>
- <param name="message">String or object to be converted to string representation for display.</param>
- <param name="context">Object to which the message applies.</param>
- </member>
- <member name="M:UnityEngine.Debug.LogError(System.Object,UnityEngine.Object)">
- <summary>
- <para>A variant of Debug.Log that logs an error message to the console.</para>
- </summary>
- <param name="message">String or object to be converted to string representation for display.</param>
- <param name="context">Object to which the message applies.</param>
- </member>
- <member name="M:UnityEngine.Debug.LogErrorFormat(System.String,System.Object[])">
- <summary>
- <para>Logs a formatted error message to the Unity console.</para>
- </summary>
- <param name="format">A composite format string.</param>
- <param name="args">Format arguments.</param>
- <param name="context">Object to which the message applies.</param>
- </member>
- <member name="M:UnityEngine.Debug.LogErrorFormat(UnityEngine.Object,System.String,System.Object[])">
- <summary>
- <para>Logs a formatted error message to the Unity console.</para>
- </summary>
- <param name="format">A composite format string.</param>
- <param name="args">Format arguments.</param>
- <param name="context">Object to which the message applies.</param>
- </member>
- <member name="M:UnityEngine.Debug.LogException(System.Exception)">
- <summary>
- <para>A variant of Debug.Log that logs an error message to the console.</para>
- </summary>
- <param name="context">Object to which the message applies.</param>
- <param name="exception">Runtime Exception.</param>
- </member>
- <member name="M:UnityEngine.Debug.LogException(System.Exception,UnityEngine.Object)">
- <summary>
- <para>A variant of Debug.Log that logs an error message to the console.</para>
- </summary>
- <param name="context">Object to which the message applies.</param>
- <param name="exception">Runtime Exception.</param>
- </member>
- <member name="M:UnityEngine.Debug.LogFormat(System.String,System.Object[])">
- <summary>
- <para>Logs a formatted message to the Unity Console.</para>
- </summary>
- <param name="format">A composite format string.</param>
- <param name="args">Format arguments.</param>
- <param name="context">Object to which the message applies.</param>
- </member>
- <member name="M:UnityEngine.Debug.LogFormat(UnityEngine.Object,System.String,System.Object[])">
- <summary>
- <para>Logs a formatted message to the Unity Console.</para>
- </summary>
- <param name="format">A composite format string.</param>
- <param name="args">Format arguments.</param>
- <param name="context">Object to which the message applies.</param>
- </member>
- <member name="M:UnityEngine.Debug.LogWarning(System.Object)">
- <summary>
- <para>A variant of Debug.Log that logs a warning message to the console.</para>
- </summary>
- <param name="message">String or object to be converted to string representation for display.</param>
- <param name="context">Object to which the message applies.</param>
- </member>
- <member name="M:UnityEngine.Debug.LogWarning(System.Object,UnityEngine.Object)">
- <summary>
- <para>A variant of Debug.Log that logs a warning message to the console.</para>
- </summary>
- <param name="message">String or object to be converted to string representation for display.</param>
- <param name="context">Object to which the message applies.</param>
- </member>
- <member name="M:UnityEngine.Debug.LogWarningFormat(System.String,System.Object[])">
- <summary>
- <para>Logs a formatted warning message to the Unity Console.</para>
- </summary>
- <param name="format">A composite format string.</param>
- <param name="args">Format arguments.</param>
- <param name="context">Object to which the message applies.</param>
- </member>
- <member name="M:UnityEngine.Debug.LogWarningFormat(UnityEngine.Object,System.String,System.Object[])">
- <summary>
- <para>Logs a formatted warning message to the Unity Console.</para>
- </summary>
- <param name="format">A composite format string.</param>
- <param name="args">Format arguments.</param>
- <param name="context">Object to which the message applies.</param>
- </member>
- <member name="T:UnityEngine.DelayedAttribute">
- <summary>
- <para>Attribute used to make a float, int, or string variable in a script be delayed.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.DelayedAttribute.#ctor">
- <summary>
- <para>Attribute used to make a float, int, or string variable in a script be delayed.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.DepthTextureMode">
- <summary>
- <para>Depth texture generation mode for Camera.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.DepthTextureMode.Depth">
- <summary>
- <para>Generate a depth texture.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.DepthTextureMode.DepthNormals">
- <summary>
- <para>Generate a depth + normals texture.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.DepthTextureMode.MotionVectors">
- <summary>
- <para>Specifies whether motion vectors should be rendered (if possible).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.DepthTextureMode.None">
- <summary>
- <para>Do not generate depth texture (Default).</para>
- </summary>
- </member>
- <member name="T:UnityEngine.DeviceOrientation">
- <summary>
- <para>Describes physical orientation of the device as determined by the OS.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.DeviceOrientation.FaceDown">
- <summary>
- <para>The device is held parallel to the ground with the screen facing downwards.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.DeviceOrientation.FaceUp">
- <summary>
- <para>The device is held parallel to the ground with the screen facing upwards.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.DeviceOrientation.LandscapeLeft">
- <summary>
- <para>The device is in landscape mode, with the device held upright and the home button on the right side.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.DeviceOrientation.LandscapeRight">
- <summary>
- <para>The device is in landscape mode, with the device held upright and the home button on the left side.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.DeviceOrientation.Portrait">
- <summary>
- <para>The device is in portrait mode, with the device held upright and the home button at the bottom.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.DeviceOrientation.PortraitUpsideDown">
- <summary>
- <para>The device is in portrait mode but upside down, with the device held upright and the home button at the top.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.DeviceOrientation.Unknown">
- <summary>
- <para>The orientation of the device cannot be determined.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.DeviceType">
- <summary>
- <para>Enumeration for SystemInfo.deviceType, denotes a coarse grouping of kinds of devices.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.DeviceType.Console">
- <summary>
- <para>A stationary gaming console.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.DeviceType.Desktop">
- <summary>
- <para>Desktop or laptop computer.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.DeviceType.Handheld">
- <summary>
- <para>A handheld device like mobile phone or a tablet.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.DeviceType.Unknown">
- <summary>
- <para>Device type is unknown. You should never see this in practice.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.DisallowMultipleComponent">
- <summary>
- <para>Prevents MonoBehaviour of same type (or subtype) to be added more than once to a GameObject.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Display">
- <summary>
- <para>Provides access to a display / screen for rendering operations.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Display.active">
- <summary>
- <para>Gets the state of the display and returns true if the display is active and false if otherwise.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Display.colorBuffer">
- <summary>
- <para>Color RenderBuffer.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Display.depthBuffer">
- <summary>
- <para>Depth RenderBuffer.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Display.displays">
- <summary>
- <para>The list of currently connected Displays. Contains at least one (main) display.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Display.main">
- <summary>
- <para>Main Display.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Display.renderingHeight">
- <summary>
- <para>Vertical resolution that the display is rendering at.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Display.renderingWidth">
- <summary>
- <para>Horizontal resolution that the display is rendering at.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Display.systemHeight">
- <summary>
- <para>Vertical native display resolution.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Display.systemWidth">
- <summary>
- <para>Horizontal native display resolution.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Display.Activate">
- <summary>
- <para>Activate an external display. Eg. Secondary Monitors connected to the System.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Display.Activate(System.Int32,System.Int32,System.Int32)">
- <summary>
- <para>This overloaded function available for Windows allows specifying desired Window Width, Height and Refresh Rate.</para>
- </summary>
- <param name="width">Desired Width of the Window (for Windows only. On Linux and Mac uses Screen Width).</param>
- <param name="height">Desired Height of the Window (for Windows only. On Linux and Mac uses Screen Height).</param>
- <param name="refreshRate">Desired Refresh Rate.</param>
- </member>
- <member name="M:UnityEngine.Display.RelativeMouseAt(UnityEngine.Vector3)">
- <summary>
- <para>Query relative mouse coordinates.</para>
- </summary>
- <param name="inputMouseCoordinates">Mouse Input Position as Coordinates.</param>
- </member>
- <member name="M:UnityEngine.Display.SetParams(System.Int32,System.Int32,System.Int32,System.Int32)">
- <summary>
- <para>Set rendering size and position on screen (Windows only).</para>
- </summary>
- <param name="width">Change Window Width (Windows Only).</param>
- <param name="height">Change Window Height (Windows Only).</param>
- <param name="x">Change Window Position X (Windows Only).</param>
- <param name="y">Change Window Position Y (Windows Only).</param>
- </member>
- <member name="M:UnityEngine.Display.SetRenderingResolution(System.Int32,System.Int32)">
- <summary>
- <para>Sets rendering resolution for the display.</para>
- </summary>
- <param name="w">Rendering width in pixels.</param>
- <param name="h">Rendering height in pixels.</param>
- </member>
- <member name="T:UnityEngine.DrivenRectTransformTracker">
- <summary>
- <para>A component can be designed to drive a RectTransform. The DrivenRectTransformTracker struct is used to specify which RectTransforms it is driving.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.DrivenRectTransformTracker.Add(UnityEngine.Object,UnityEngine.RectTransform,UnityEngine.DrivenTransformProperties)">
- <summary>
- <para>Add a RectTransform to be driven.</para>
- </summary>
- <param name="driver">The object to drive properties.</param>
- <param name="rectTransform">The RectTransform to be driven.</param>
- <param name="drivenProperties">The properties to be driven.</param>
- </member>
- <member name="M:UnityEngine.DrivenRectTransformTracker.Clear">
- <summary>
- <para>Clear the list of RectTransforms being driven.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.DrivenTransformProperties">
- <summary>
- <para>An enumeration of transform properties that can be driven on a RectTransform by an object.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.DrivenTransformProperties.All">
- <summary>
- <para>Selects all driven properties.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.DrivenTransformProperties.AnchoredPosition">
- <summary>
- <para>Selects driven property RectTransform.anchoredPosition.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.DrivenTransformProperties.AnchoredPosition3D">
- <summary>
- <para>Selects driven property RectTransform.anchoredPosition3D.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.DrivenTransformProperties.AnchoredPositionX">
- <summary>
- <para>Selects driven property RectTransform.anchoredPosition.x.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.DrivenTransformProperties.AnchoredPositionY">
- <summary>
- <para>Selects driven property RectTransform.anchoredPosition.y.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.DrivenTransformProperties.AnchoredPositionZ">
- <summary>
- <para>Selects driven property RectTransform.anchoredPosition3D.z.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.DrivenTransformProperties.AnchorMax">
- <summary>
- <para>Selects driven property combining AnchorMaxX and AnchorMaxY.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.DrivenTransformProperties.AnchorMaxX">
- <summary>
- <para>Selects driven property RectTransform.anchorMax.x.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.DrivenTransformProperties.AnchorMaxY">
- <summary>
- <para>Selects driven property RectTransform.anchorMax.y.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.DrivenTransformProperties.AnchorMin">
- <summary>
- <para>Selects driven property combining AnchorMinX and AnchorMinY.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.DrivenTransformProperties.AnchorMinX">
- <summary>
- <para>Selects driven property RectTransform.anchorMin.x.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.DrivenTransformProperties.AnchorMinY">
- <summary>
- <para>Selects driven property RectTransform.anchorMin.y.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.DrivenTransformProperties.Anchors">
- <summary>
- <para>Selects driven property combining AnchorMinX, AnchorMinY, AnchorMaxX and AnchorMaxY.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.DrivenTransformProperties.None">
- <summary>
- <para>Deselects all driven properties.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.DrivenTransformProperties.Pivot">
- <summary>
- <para>Selects driven property combining PivotX and PivotY.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.DrivenTransformProperties.PivotX">
- <summary>
- <para>Selects driven property RectTransform.pivot.x.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.DrivenTransformProperties.PivotY">
- <summary>
- <para>Selects driven property RectTransform.pivot.y.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.DrivenTransformProperties.Rotation">
- <summary>
- <para>Selects driven property Transform.localRotation.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.DrivenTransformProperties.Scale">
- <summary>
- <para>Selects driven property combining ScaleX, ScaleY &amp;&amp; ScaleZ.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.DrivenTransformProperties.ScaleX">
- <summary>
- <para>Selects driven property Transform.localScale.x.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.DrivenTransformProperties.ScaleY">
- <summary>
- <para>Selects driven property Transform.localScale.y.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.DrivenTransformProperties.ScaleZ">
- <summary>
- <para>Selects driven property Transform.localScale.z.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.DrivenTransformProperties.SizeDelta">
- <summary>
- <para>Selects driven property combining SizeDeltaX and SizeDeltaY.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.DrivenTransformProperties.SizeDeltaX">
- <summary>
- <para>Selects driven property RectTransform.sizeDelta.x.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.DrivenTransformProperties.SizeDeltaY">
- <summary>
- <para>Selects driven property RectTransform.sizeDelta.y.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.DynamicGI">
- <summary>
- <para>Allows to control the dynamic Global Illumination.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.DynamicGI.indirectScale">
- <summary>
- <para>Allows for scaling the contribution coming from realtime &amp; static lightmaps.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.DynamicGI.isConverged">
- <summary>
- <para>Is precomputed realtime Global Illumination output converged?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.DynamicGI.synchronousMode">
- <summary>
- <para>When enabled, new dynamic Global Illumination output is shown in each frame.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.DynamicGI.updateThreshold">
- <summary>
- <para>Threshold for limiting updates of realtime GI. The unit of measurement is "percentage intensity change".</para>
- </summary>
- </member>
- <member name="M:UnityEngine.DynamicGI.SetEmissive(UnityEngine.Renderer,UnityEngine.Color)">
- <summary>
- <para>Allows to set an emissive color for a given renderer quickly, without the need to render the emissive input for the entire system.</para>
- </summary>
- <param name="renderer">The Renderer that should get a new color.</param>
- <param name="color">The emissive Color.</param>
- </member>
- <member name="M:UnityEngine.DynamicGI.SetEnvironmentData(System.Single[])">
- <summary>
- <para>Allows overriding the distant environment lighting for Realtime GI, without changing the Skybox Material.</para>
- </summary>
- <param name="input">Array of float values to be used for Realtime GI environment lighting.</param>
- </member>
- <member name="M:UnityEngine.DynamicGI.UpdateEnvironment">
- <summary>
- <para>Schedules an update of the environment texture.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.DynamicGI.UpdateMaterials(UnityEngine.Renderer)">
- <summary>
- <para>Schedules an update of the albedo and emissive textures of a system that contains the renderer or the terrain.</para>
- </summary>
- <param name="renderer">The Renderer to use when searching for a system to update.</param>
- <param name="terrain">The Terrain to use when searching for systems to update.</param>
- </member>
- <member name="M:UnityEngine.DynamicGI.UpdateMaterials">
- <summary>
- <para>Schedules an update of the albedo and emissive textures of a system that contains the renderer or the terrain.</para>
- </summary>
- <param name="renderer">The Renderer to use when searching for a system to update.</param>
- <param name="terrain">The Terrain to use when searching for systems to update.</param>
- </member>
- <member name="M:UnityEngine.DynamicGI.UpdateMaterials">
- <summary>
- <para>Schedules an update of the albedo and emissive textures of a system that contains the renderer or the terrain.</para>
- </summary>
- <param name="renderer">The Renderer to use when searching for a system to update.</param>
- <param name="terrain">The Terrain to use when searching for systems to update.</param>
- </member>
- <member name="T:UnityEngine.Events.PersistentListenerMode">
- <summary>
- <para>THe mode that a listener is operating in.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Events.PersistentListenerMode.Bool">
- <summary>
- <para>The listener will bind to one argument bool functions.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Events.PersistentListenerMode.EventDefined">
- <summary>
- <para>The listener will use the function binding specified by the even.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Events.PersistentListenerMode.Float">
- <summary>
- <para>The listener will bind to one argument float functions.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Events.PersistentListenerMode.Int">
- <summary>
- <para>The listener will bind to one argument int functions.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Events.PersistentListenerMode.Object">
- <summary>
- <para>The listener will bind to one argument Object functions.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Events.PersistentListenerMode.String">
- <summary>
- <para>The listener will bind to one argument string functions.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Events.PersistentListenerMode.Void">
- <summary>
- <para>The listener will bind to zero argument functions.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Events.UnityAction">
- <summary>
- <para>Zero argument delegate used by UnityEvents.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Events.UnityAction_1">
- <summary>
- <para>One argument delegate used by UnityEvents.</para>
- </summary>
- <param name="arg0"></param>
- </member>
- <member name="T:UnityEngine.Events.UnityAction_2">
- <summary>
- <para>Two argument delegate used by UnityEvents.</para>
- </summary>
- <param name="arg0"></param>
- <param name="arg1"></param>
- </member>
- <member name="T:UnityEngine.Events.UnityAction_3">
- <summary>
- <para>Three argument delegate used by UnityEvents.</para>
- </summary>
- <param name="arg0"></param>
- <param name="arg1"></param>
- <param name="arg2"></param>
- </member>
- <member name="T:UnityEngine.Events.UnityAction_4">
- <summary>
- <para>Four argument delegate used by UnityEvents.</para>
- </summary>
- <param name="arg0"></param>
- <param name="arg1"></param>
- <param name="arg2"></param>
- <param name="arg3"></param>
- </member>
- <member name="T:UnityEngine.Events.UnityEvent">
- <summary>
- <para>A zero argument persistent callback that can be saved with the scene.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Events.UnityEvent.AddListener(UnityEngine.Events.UnityAction)">
- <summary>
- <para>Add a non persistent listener to the UnityEvent.</para>
- </summary>
- <param name="call">Callback function.</param>
- </member>
- <member name="M:UnityEngine.Events.UnityEvent.#ctor">
- <summary>
- <para>Constructor.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Events.UnityEvent.Invoke">
- <summary>
- <para>Invoke all registered callbacks (runtime and persistent).</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Events.UnityEvent.RemoveListener(UnityEngine.Events.UnityAction)">
- <summary>
- <para>Remove a non persistent listener from the UnityEvent.</para>
- </summary>
- <param name="call">Callback function.</param>
- </member>
- <member name="T:UnityEngine.Events.UnityEvent`1">
- <summary>
- <para>One argument version of UnityEvent.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Events.UnityEvent`2">
- <summary>
- <para>Two argument version of UnityEvent.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Events.UnityEvent`3">
- <summary>
- <para>Three argument version of UnityEvent.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Events.UnityEvent`4">
- <summary>
- <para>Four argument version of UnityEvent.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Events.UnityEventBase">
- <summary>
- <para>Abstract base class for UnityEvents.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Events.UnityEventBase.GetPersistentEventCount">
- <summary>
- <para>Get the number of registered persistent listeners.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Events.UnityEventBase.GetPersistentMethodName(System.Int32)">
- <summary>
- <para>Get the target method name of the listener at index index.</para>
- </summary>
- <param name="index">Index of the listener to query.</param>
- </member>
- <member name="M:UnityEngine.Events.UnityEventBase.GetPersistentTarget(System.Int32)">
- <summary>
- <para>Get the target component of the listener at index index.</para>
- </summary>
- <param name="index">Index of the listener to query.</param>
- </member>
- <member name="M:UnityEngine.Events.UnityEventBase.GetValidMethodInfo(System.Object,System.String,System.Type[])">
- <summary>
- <para>Given an object, function name, and a list of argument types; find the method that matches.</para>
- </summary>
- <param name="obj">Object to search for the method.</param>
- <param name="functionName">Function name to search for.</param>
- <param name="argumentTypes">Argument types for the function.</param>
- </member>
- <member name="M:UnityEngine.Events.UnityEventBase.RemoveAllListeners">
- <summary>
- <para>Remove all non-persisent (ie created from script) listeners from the event.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Events.UnityEventBase.SetPersistentListenerState(System.Int32,UnityEngine.Events.UnityEventCallState)">
- <summary>
- <para>Modify the execution state of a persistent listener.</para>
- </summary>
- <param name="index">Index of the listener to query.</param>
- <param name="state">State to set.</param>
- </member>
- <member name="T:UnityEngine.Events.UnityEventCallState">
- <summary>
- <para>Controls the scope of UnityEvent callbacks.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Events.UnityEventCallState.EditorAndRuntime">
- <summary>
- <para>Callback is always issued.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Events.UnityEventCallState.Off">
- <summary>
- <para>Callback is not issued.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Events.UnityEventCallState.RuntimeOnly">
- <summary>
- <para>Callback is only issued in the Runtime and Editor playmode.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ExcludeFromObjectFactoryAttribute">
- <summary>
- <para>Add this attribute to a class to prevent the class and its inherited classes from being created with ObjectFactory methods.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.ExcludeFromObjectFactoryAttribute.#ctor">
- <summary>
- <para>Default constructor.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ExcludeFromPresetAttribute">
- <summary>
- <para>Add this attribute to a class to prevent creating a Preset from the instances of the class.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ExecuteInEditMode">
- <summary>
- <para>Makes all instances of a script execute in edit mode.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.GlobalIllumination.DirectionalLight">
- <summary>
- <para>A helper structure used to initialize a LightDataGI structure as a directional light.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.GlobalIllumination.DirectionalLight.color">
- <summary>
- <para>The direct light color.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.GlobalIllumination.DirectionalLight.direction">
- <summary>
- <para>The direction of the light.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.GlobalIllumination.DirectionalLight.indirectColor">
- <summary>
- <para>The indirect light color.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.GlobalIllumination.DirectionalLight.instanceID">
- <summary>
- <para>The light's instanceID.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.GlobalIllumination.DirectionalLight.mode">
- <summary>
- <para>The lightmode.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.GlobalIllumination.DirectionalLight.penumbraWidthRadian">
- <summary>
- <para>The penumbra width for soft shadows in radians.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.GlobalIllumination.DirectionalLight.shadow">
- <summary>
- <para>True if the light casts shadows, otherwise False.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.GlobalIllumination.FalloffType">
- <summary>
- <para>Available falloff models for baking.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.GlobalIllumination.FalloffType.InverseSquared">
- <summary>
- <para>Inverse squared distance falloff model.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.GlobalIllumination.FalloffType.InverseSquaredNoRangeAttenuation">
- <summary>
- <para>Inverse squared distance falloff model (without smooth range attenuation).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.GlobalIllumination.FalloffType.Legacy">
- <summary>
- <para>Quadratic falloff model.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.GlobalIllumination.FalloffType.Linear">
- <summary>
- <para>Linear falloff model.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.GlobalIllumination.FalloffType.Undefined">
- <summary>
- <para>Falloff model is undefined.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.GlobalIllumination.LightDataGI">
- <summary>
- <para>The interop structure to pass light information to the light baking backends. There are helper structures for Directional, Point, Spot and Rectangle lights to correctly initialize this structure.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.GlobalIllumination.LightDataGI.color">
- <summary>
- <para>The color of the light.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.GlobalIllumination.LightDataGI.coneAngle">
- <summary>
- <para>The cone angle for spot lights.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.GlobalIllumination.LightDataGI.falloff">
- <summary>
- <para>The falloff model to use for baking point and spot lights.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.GlobalIllumination.LightDataGI.indirectColor">
- <summary>
- <para>The indirect color of the light.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.GlobalIllumination.LightDataGI.innerConeAngle">
- <summary>
- <para>The inner cone angle for spot lights.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.GlobalIllumination.LightDataGI.instanceID">
- <summary>
- <para>The light's instanceID.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.GlobalIllumination.LightDataGI.mode">
- <summary>
- <para>The lightmap mode for the light.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.GlobalIllumination.LightDataGI.orientation">
- <summary>
- <para>The orientation of the light.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.GlobalIllumination.LightDataGI.position">
- <summary>
- <para>The position of the light.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.GlobalIllumination.LightDataGI.range">
- <summary>
- <para>The range of the light. Unused for directional lights.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.GlobalIllumination.LightDataGI.shadow">
- <summary>
- <para>Set to 1 for shadow casting lights, 0 otherwise.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.GlobalIllumination.LightDataGI.shape0">
- <summary>
- <para>The light's sphere radius for point and spot lights, or the width for rectangle lights.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.GlobalIllumination.LightDataGI.shape1">
- <summary>
- <para>The height for rectangle lights.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.GlobalIllumination.LightDataGI.type">
- <summary>
- <para>The type of the light.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.GlobalIllumination.LightDataGI.Init(UnityEngine.Experimental.GlobalIllumination.DirectionalLight&amp;)">
- <summary>
- <para>Initialize the struct with the parameters from the given light type.</para>
- </summary>
- <param name="light"></param>
- </member>
- <member name="M:UnityEngine.Experimental.GlobalIllumination.LightDataGI.Init(UnityEngine.Experimental.GlobalIllumination.PointLight&amp;)">
- <summary>
- <para>Initialize the struct with the parameters from the given light type.</para>
- </summary>
- <param name="light"></param>
- </member>
- <member name="M:UnityEngine.Experimental.GlobalIllumination.LightDataGI.Init(UnityEngine.Experimental.GlobalIllumination.SpotLight&amp;)">
- <summary>
- <para>Initialize the struct with the parameters from the given light type.</para>
- </summary>
- <param name="light"></param>
- </member>
- <member name="M:UnityEngine.Experimental.GlobalIllumination.LightDataGI.Init(UnityEngine.Experimental.GlobalIllumination.RectangleLight&amp;)">
- <summary>
- <para>Initialize the struct with the parameters from the given light type.</para>
- </summary>
- <param name="light"></param>
- </member>
- <member name="M:UnityEngine.Experimental.GlobalIllumination.LightDataGI.InitNoBake(System.Int32)">
- <summary>
- <para>Initialize a light so that the baking backends ignore it.</para>
- </summary>
- <param name="lightInstanceID"></param>
- </member>
- <member name="T:UnityEngine.Experimental.GlobalIllumination.LightmapperUtils">
- <summary>
- <para>Utility class for converting Unity Lights to light types recognized by the baking backends.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.GlobalIllumination.LightmapperUtils.Extract(UnityEngine.LightmapBakeType)">
- <summary>
- <para>Extracts informations from Lights.</para>
- </summary>
- <param name="baketype">The lights baketype.</param>
- <returns>
- <para>Returns the light's light mode.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.GlobalIllumination.LightmapperUtils.Extract(UnityEngine.Light,UnityEngine.Experimental.GlobalIllumination.DirectionalLight&amp;)">
- <summary>
- <para>Extract type specific information from Lights.</para>
- </summary>
- <param name="l">The input light.</param>
- <param name="dir">Extracts directional light information.</param>
- <param name="point">Extracts point light information.</param>
- <param name="spot">Extracts spot light information.</param>
- <param name="rect">Extracts rectangle light information.</param>
- </member>
- <member name="M:UnityEngine.Experimental.GlobalIllumination.LightmapperUtils.Extract(UnityEngine.Light,UnityEngine.Experimental.GlobalIllumination.PointLight&amp;)">
- <summary>
- <para>Extract type specific information from Lights.</para>
- </summary>
- <param name="l">The input light.</param>
- <param name="dir">Extracts directional light information.</param>
- <param name="point">Extracts point light information.</param>
- <param name="spot">Extracts spot light information.</param>
- <param name="rect">Extracts rectangle light information.</param>
- </member>
- <member name="M:UnityEngine.Experimental.GlobalIllumination.LightmapperUtils.Extract(UnityEngine.Light,UnityEngine.Experimental.GlobalIllumination.SpotLight&amp;)">
- <summary>
- <para>Extract type specific information from Lights.</para>
- </summary>
- <param name="l">The input light.</param>
- <param name="dir">Extracts directional light information.</param>
- <param name="point">Extracts point light information.</param>
- <param name="spot">Extracts spot light information.</param>
- <param name="rect">Extracts rectangle light information.</param>
- </member>
- <member name="M:UnityEngine.Experimental.GlobalIllumination.LightmapperUtils.Extract(UnityEngine.Light,UnityEngine.Experimental.GlobalIllumination.RectangleLight&amp;)">
- <summary>
- <para>Extract type specific information from Lights.</para>
- </summary>
- <param name="l">The input light.</param>
- <param name="dir">Extracts directional light information.</param>
- <param name="point">Extracts point light information.</param>
- <param name="spot">Extracts spot light information.</param>
- <param name="rect">Extracts rectangle light information.</param>
- </member>
- <member name="M:UnityEngine.Experimental.GlobalIllumination.LightmapperUtils.ExtractIndirect(UnityEngine.Light)">
- <summary>
- <para>Extracts the indirect color from a light.</para>
- </summary>
- <param name="l"></param>
- </member>
- <member name="M:UnityEngine.Experimental.GlobalIllumination.LightmapperUtils.ExtractInnerCone(UnityEngine.Light)">
- <summary>
- <para>Extracts the inner cone angle of spot lights.</para>
- </summary>
- <param name="l"></param>
- </member>
- <member name="T:UnityEngine.Experimental.GlobalIllumination.Lightmapping">
- <summary>
- <para>Interface to the light baking backends.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.GlobalIllumination.Lightmapping.RequestLightsDelegate">
- <summary>
- <para>Delegate called when converting lights into a form that the baking backends understand.</para>
- </summary>
- <param name="requests">The list of lights to be converted.</param>
- <param name="lightsOutput">The output generated by the delegate function. Lights that should be skipped must be added to the output, initialized with InitNoBake on the LightDataGI structure.</param>
- </member>
- <member name="M:UnityEngine.Experimental.GlobalIllumination.Lightmapping.ResetDelegate">
- <summary>
- <para>Resets the light conversion delegate to Unity's default conversion function.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.GlobalIllumination.Lightmapping.SetDelegate(UnityEngine.Experimental.GlobalIllumination.Lightmapping/RequestLightsDelegate)">
- <summary>
- <para>Set a delegate that converts a list of lights to a list of LightDataGI structures that are passed to the baking backends. Must be reset by calling ResetDelegate again.</para>
- </summary>
- <param name="del"></param>
- </member>
- <member name="T:UnityEngine.Experimental.GlobalIllumination.LightMode">
- <summary>
- <para>The lightmode. A light can be realtime, mixed, baked or unknown. Unknown lights will be ignored by the baking backends.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.GlobalIllumination.LightMode.Baked">
- <summary>
- <para>The light is fully baked and has no realtime component.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.GlobalIllumination.LightMode.Mixed">
- <summary>
- <para>The light is mixed. Mixed lights are interpreted based on the global light mode setting in the lighting window.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.GlobalIllumination.LightMode.Realtime">
- <summary>
- <para>The light is realtime. No contribution will be baked in lightmaps or light probes.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.GlobalIllumination.LightMode.Unknown">
- <summary>
- <para>The light should be ignored by the baking backends.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.GlobalIllumination.LightType">
- <summary>
- <para>The light type.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.GlobalIllumination.LightType.Directional">
- <summary>
- <para>An infinite directional light.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.GlobalIllumination.LightType.Point">
- <summary>
- <para>A point light emitting light in all directions.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.GlobalIllumination.LightType.Rectangle">
- <summary>
- <para>A light shaped like a rectangle emitting light into the hemisphere that it is facing.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.GlobalIllumination.LightType.Spot">
- <summary>
- <para>A spot light emitting light in a direction with a cone shaped opening angle.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.GlobalIllumination.LinearColor">
- <summary>
- <para>Contains normalized linear color values for red, green, blue in the range of 0 to 1, and an additional intensity value.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.GlobalIllumination.LinearColor.blue">
- <summary>
- <para>The blue color value in the range of 0.0 to 1.0.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.GlobalIllumination.LinearColor.green">
- <summary>
- <para>The green color value in the range of 0.0 to 1.0.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.GlobalIllumination.LinearColor.intensity">
- <summary>
- <para>The intensity value used to scale the red, green and blue values.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.GlobalIllumination.LinearColor.red">
- <summary>
- <para>The red color value in the range of 0.0 to 1.0.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.GlobalIllumination.LinearColor.Black">
- <summary>
- <para>Returns a black color.</para>
- </summary>
- <returns>
- <para>Returns a black color.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.GlobalIllumination.LinearColor.Convert(UnityEngine.Color,System.Single)">
- <summary>
- <para>Converts a Light's color value to a normalized linear color value, automatically handling gamma conversion if necessary.</para>
- </summary>
- <param name="color">Light color.</param>
- <param name="intensity">Light intensity.</param>
- <returns>
- <para>Returns the normalized linear color value.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.Experimental.GlobalIllumination.PointLight">
- <summary>
- <para>A helper structure used to initialize a LightDataGI structure as a point light.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.GlobalIllumination.PointLight.color">
- <summary>
- <para>The direct light color.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.GlobalIllumination.PointLight.falloff">
- <summary>
- <para>The falloff model to use for baking the point light.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.GlobalIllumination.PointLight.indirectColor">
- <summary>
- <para>The indirect light color.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.GlobalIllumination.PointLight.instanceID">
- <summary>
- <para>The light's instanceID.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.GlobalIllumination.PointLight.mode">
- <summary>
- <para>The lightmode.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.GlobalIllumination.PointLight.position">
- <summary>
- <para>The light's position.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.GlobalIllumination.PointLight.range">
- <summary>
- <para>The light's range.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.GlobalIllumination.PointLight.shadow">
- <summary>
- <para>True if the light casts shadows, otherwise False.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.GlobalIllumination.PointLight.sphereRadius">
- <summary>
- <para>The light's sphere radius, influencing soft shadows.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.GlobalIllumination.RectangleLight">
- <summary>
- <para>A helper structure used to initialize a LightDataGI structure as a rectangle light.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.GlobalIllumination.RectangleLight.color">
- <summary>
- <para>The direct light color.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.GlobalIllumination.RectangleLight.height">
- <summary>
- <para>The height of the rectangle light.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.GlobalIllumination.RectangleLight.indirectColor">
- <summary>
- <para>The indirect light color.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.GlobalIllumination.RectangleLight.instanceID">
- <summary>
- <para>The light's instanceID.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.GlobalIllumination.RectangleLight.mode">
- <summary>
- <para>The lightmode.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.GlobalIllumination.RectangleLight.orientation">
- <summary>
- <para>The light's orientation.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.GlobalIllumination.RectangleLight.position">
- <summary>
- <para>The light's position.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.GlobalIllumination.RectangleLight.range">
- <summary>
- <para>The light's range.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.GlobalIllumination.RectangleLight.shadow">
- <summary>
- <para>True if the light casts shadows, otherwise False.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.GlobalIllumination.RectangleLight.width">
- <summary>
- <para>The width of the rectangle light.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.GlobalIllumination.SpotLight">
- <summary>
- <para>A helper structure used to initialize a LightDataGI structure as a spot light.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.GlobalIllumination.SpotLight.color">
- <summary>
- <para>The direct light color.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.GlobalIllumination.SpotLight.coneAngle">
- <summary>
- <para>The outer angle for the spot light.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.GlobalIllumination.SpotLight.falloff">
- <summary>
- <para>The falloff model to use for baking the spot light.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.GlobalIllumination.SpotLight.indirectColor">
- <summary>
- <para>The indirect light color.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.GlobalIllumination.SpotLight.innerConeAngle">
- <summary>
- <para>The inner angle for the spot light.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.GlobalIllumination.SpotLight.instanceID">
- <summary>
- <para>The light's instanceID.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.GlobalIllumination.SpotLight.mode">
- <summary>
- <para>The lightmode.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.GlobalIllumination.SpotLight.orientation">
- <summary>
- <para>The light's orientation.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.GlobalIllumination.SpotLight.position">
- <summary>
- <para>The light's position.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.GlobalIllumination.SpotLight.range">
- <summary>
- <para>The light's range.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.GlobalIllumination.SpotLight.shadow">
- <summary>
- <para>True if the light casts shadows, otherwise False.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.GlobalIllumination.SpotLight.sphereRadius">
- <summary>
- <para>The light's sphere radius, influencing soft shadows.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.LowLevel.PlayerLoop">
- <summary>
- <para>The class representing the player loop in Unity.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.LowLevel.PlayerLoop.GetDefaultPlayerLoop">
- <summary>
- <para>Returns the default update order of all engine systems in Unity.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.LowLevel.PlayerLoop.SetPlayerLoop">
- <summary>
- <para>Set a new custom update order of all engine systems in Unity.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.LowLevel.PlayerLoopSystem">
- <summary>
- <para>The representation of a single system being updated by the player loop in Unity.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.LowLevel.PlayerLoopSystem.loopConditionFunction">
- <summary>
- <para>The loop condition for a native engine system. To get a valid value for this, you must copy it from one of the PlayerLoopSystems returned by PlayerLoop.GetDefaultPlayerLoop.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.LowLevel.PlayerLoopSystem.subSystemList">
- <summary>
- <para>A list of sub systems which run as part of this item in the player loop.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.LowLevel.PlayerLoopSystem.type">
- <summary>
- <para>This property is used to identify which native system this belongs to, or to get the name of the managed system to show in the profiler.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.LowLevel.PlayerLoopSystem.updateDelegate">
- <summary>
- <para>A managed delegate. You can set this to create a new C# entrypoint in the player loop.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.LowLevel.PlayerLoopSystem.updateFunction">
- <summary>
- <para>A native engine system. To get a valid value for this, you must copy it from one of the PlayerLoopSystems returned by PlayerLoop.GetDefaultPlayerLoop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.Playables.CameraPlayable">
- <summary>
- <para>An implementation of IPlayable that produces a Camera texture.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.Playables.CameraPlayable.Create(UnityEngine.Playables.PlayableGraph,UnityEngine.Camera)">
- <summary>
- <para>Creates a CameraPlayable in the PlayableGraph.</para>
- </summary>
- <param name="graph">The PlayableGraph object that will own the CameraPlayable.</param>
- <param name="camera">Camera used to produce a texture in the PlayableGraph.</param>
- <returns>
- <para>A CameraPlayable linked to the PlayableGraph.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.Experimental.Playables.MaterialEffectPlayable">
- <summary>
- <para>An implementation of IPlayable that allows application of a Material shader to one or many texture inputs to produce a texture output.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.Playables.MaterialEffectPlayable.Create(UnityEngine.Playables.PlayableGraph,UnityEngine.Material)">
- <summary>
- <para>Creates a MaterialEffectPlayable in the PlayableGraph.</para>
- </summary>
- <param name="graph">The PlayableGraph object that will own the MaterialEffectPlayable.</param>
- <param name="material">Material used to modify linked texture playable inputs.</param>
- <param name="pass">Shader pass index.(Note: -1 for all passes).</param>
- <returns>
- <para>A MaterialEffectPlayable linked to the PlayableGraph.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.Experimental.Playables.TextureMixerPlayable">
- <summary>
- <para>An implementation of IPlayable that allows mixing two textures.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.Playables.TextureMixerPlayable.Create(UnityEngine.Playables.PlayableGraph)">
- <summary>
- <para>Creates a TextureMixerPlayable in the PlayableGraph.</para>
- </summary>
- <param name="graph">The PlayableGraph object that will own the TextureMixerPlayable.</param>
- <returns>
- <para>A TextureMixerPlayable linked to the PlayableGraph.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.Experimental.Playables.TexturePlayableBinding">
- <summary>
- <para>A PlayableBinding that contains information representing a TexturePlayableOutput.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.Playables.TexturePlayableBinding.Create(System.String,UnityEngine.Object)">
- <summary>
- <para>Creates a PlayableBinding that contains information representing a TexturePlayableOutput.</para>
- </summary>
- <param name="key">A reference to a UnityEngine.Object that acts as a key for this binding.</param>
- <param name="name">The name of the TexturePlayableOutput.</param>
- <returns>
- <para>Returns a PlayableBinding that contains information that is used to create a TexturePlayableOutput.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.Experimental.Playables.TexturePlayableOutput">
- <summary>
- <para>An IPlayableOutput implementation that will be used to manipulate textures.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Playables.TexturePlayableOutput.Null">
- <summary>
- <para>Returns an invalid TexturePlayableOutput.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.EarlyUpdate">
- <summary>
- <para>Update phase in the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.EarlyUpdate.ClearIntermediateRenderers">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.EarlyUpdate.ClearLines">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.EarlyUpdate.CloudWebServicesUpdate">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.EarlyUpdate.DeliverIosPlatformEvents">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.EarlyUpdate.DirectorSampleTime">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.EarlyUpdate.DispatchEventQueueEvents">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.EarlyUpdate.ExecuteMainThreadJobs">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.EarlyUpdate.GpuTimestamp">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.EarlyUpdate.PerformanceAnalyticsUpdate">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.EarlyUpdate.PhysicsResetInterpolatedTransformPosition">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.EarlyUpdate.PlayerCleanupCachedData">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.EarlyUpdate.PollHtcsPlayerConnection">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.EarlyUpdate.PollPlayerConnection">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.EarlyUpdate.PresentBeforeUpdate">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.EarlyUpdate.ProcessMouseInWindow">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.EarlyUpdate.ProcessRemoteInput">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.EarlyUpdate.ProfilerStartFrame">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.EarlyUpdate.RendererNotifyInvisible">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.EarlyUpdate.ResetFrameStatsAfterPresent">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.EarlyUpdate.ScriptRunDelayedStartupFrame">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.EarlyUpdate.SpriteAtlasManagerUpdate">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.EarlyUpdate.TangoUpdate">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.EarlyUpdate.UnityConnectClientUpdate">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.EarlyUpdate.UnityWebRequestUpdate">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.EarlyUpdate.UpdateAllUnityWebStreams">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.EarlyUpdate.UpdateAsyncReadbackManager">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.EarlyUpdate.UpdateCanvasRectTransform">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.EarlyUpdate.UpdateInputManager">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.EarlyUpdate.UpdateKinect">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.EarlyUpdate.UpdateMainGameViewRect">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.EarlyUpdate.UpdatePreloading">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.EarlyUpdate.UpdateStreamingManager">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.EarlyUpdate.UpdateTextureStreamingManager">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.EarlyUpdate.XRUpdate">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.FixedUpdate">
- <summary>
- <para>Update phase in the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.FixedUpdate.AudioFixedUpdate">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.FixedUpdate.ClearLines">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.FixedUpdate.DirectorFixedSampleTime">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.FixedUpdate.DirectorFixedUpdate">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.FixedUpdate.DirectorFixedUpdatePostPhysics">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.FixedUpdate.LegacyFixedAnimationUpdate">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.FixedUpdate.NewInputFixedUpdate">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.FixedUpdate.Physics2DFixedUpdate">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.FixedUpdate.PhysicsFixedUpdate">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.FixedUpdate.ScriptRunBehaviourFixedUpdate">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.FixedUpdate.ScriptRunDelayedFixedFrameRate">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.FixedUpdate.XRFixedUpdate">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.Initialization">
- <summary>
- <para>Update phase in the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.Initialization.AsyncUploadTimeSlicedUpdate">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.Initialization.PlayerUpdateTime">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.Initialization.SynchronizeInputs">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.Initialization.SynchronizeState">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.Initialization.XREarlyUpdate">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.PostLateUpdate">
- <summary>
- <para>Update phase in the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.PostLateUpdate.BatchModeUpdate">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.PostLateUpdate.ClearImmediateRenderers">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.PostLateUpdate.DirectorLateUpdate">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.PostLateUpdate.DirectorRenderImage">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.PostLateUpdate.EnlightenRuntimeUpdate">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.PostLateUpdate.ExecuteGameCenterCallbacks">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.PostLateUpdate.FinishFrameRendering">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.PostLateUpdate.GUIClearEvents">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.PostLateUpdate.InputEndFrame">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.PostLateUpdate.MemoryFrameMaintenance">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.PostLateUpdate.ParticlesLegacyUpdateAllParticleSystems">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.PostLateUpdate.ParticleSystemEndUpdateAll">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.PostLateUpdate.PhysicsSkinnedClothBeginUpdate">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.PostLateUpdate.PhysicsSkinnedClothFinishUpdate">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.PostLateUpdate.PlayerEmitCanvasGeometry">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.PostLateUpdate.PlayerSendFrameComplete">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.PostLateUpdate.PlayerSendFramePostPresent">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.PostLateUpdate.PlayerSendFrameStarted">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.PostLateUpdate.PlayerUpdateCanvases">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.PostLateUpdate.PresentAfterDraw">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.PostLateUpdate.ProcessWebSendMessages">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.PostLateUpdate.ProfilerEndFrame">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.PostLateUpdate.ProfilerSynchronizeStats">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.PostLateUpdate.ResetInputAxis">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.PostLateUpdate.ScriptRunDelayedDynamicFrameRate">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.PostLateUpdate.ShaderHandleErrors">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.PostLateUpdate.SortingGroupsUpdate">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.PostLateUpdate.ThreadedLoadingDebug">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.PostLateUpdate.TriggerEndOfFrameCallbacks">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.PostLateUpdate.UpdateAllRenderers">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.PostLateUpdate.UpdateAllSkinnedMeshes">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.PostLateUpdate.UpdateAudio">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.PostLateUpdate.UpdateCanvasRectTransform">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.PostLateUpdate.UpdateCaptureScreenshot">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.PostLateUpdate.UpdateCustomRenderTextures">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.PostLateUpdate.UpdateRectTransform">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.PostLateUpdate.UpdateResolution">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.PostLateUpdate.UpdateSubstance">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.PostLateUpdate.UpdateVideo">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.PostLateUpdate.UpdateVideoTextures">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.PostLateUpdate.XRPostPresent">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.PreLateUpdate">
- <summary>
- <para>Update phase in the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.PreLateUpdate.AIUpdatePostScript">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.PreLateUpdate.ConstraintManagerUpdate">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.PreLateUpdate.DirectorDeferredEvaluate">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.PreLateUpdate.DirectorUpdateAnimationBegin">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.PreLateUpdate.DirectorUpdateAnimationEnd">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.PreLateUpdate.EndGraphicsJobsLate">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.PreLateUpdate.LegacyAnimationUpdate">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.PreLateUpdate.ParticleSystemBeginUpdateAll">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.PreLateUpdate.ScriptRunBehaviourLateUpdate">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.PreLateUpdate.UNetUpdate">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.PreLateUpdate.UpdateMasterServerInterface">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.PreLateUpdate.UpdateNetworkManager">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.PreUpdate">
- <summary>
- <para>Update phase in the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.PreUpdate.AIUpdate">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.PreUpdate.CheckTexFieldInput">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.PreUpdate.IMGUISendQueuedEvents">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.PreUpdate.NewInputUpdate">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.PreUpdate.Physics2DUpdate">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.PreUpdate.PhysicsUpdate">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.PreUpdate.SendMouseEvents">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.PreUpdate.UpdateVideo">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.PreUpdate.WindUpdate">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.Update">
- <summary>
- <para>Update phase in the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.Update.DirectorUpdate">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.Update.ScriptRunBehaviourUpdate">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.Update.ScriptRunDelayedDynamicFrameRate">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.PlayerLoop.Update.ScriptRunDelayedTasks">
- <summary>
- <para>Native engine system updated by the native player loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.Rendering.BlendState">
- <summary>
- <para>Values for the blend state.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.BlendState.alphaToMask">
- <summary>
- <para>Turns on alpha-to-coverage.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.BlendState.blendState0">
- <summary>
- <para>Blend state for render target 0.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.BlendState.blendState1">
- <summary>
- <para>Blend state for render target 1.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.BlendState.blendState2">
- <summary>
- <para>Blend state for render target 2.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.BlendState.blendState3">
- <summary>
- <para>Blend state for render target 3.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.BlendState.blendState4">
- <summary>
- <para>Blend state for render target 4.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.BlendState.blendState5">
- <summary>
- <para>Blend state for render target 5.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.BlendState.blendState6">
- <summary>
- <para>Blend state for render target 6.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.BlendState.blendState7">
- <summary>
- <para>Blend state for render target 7.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.BlendState.separateMRTBlendStates">
- <summary>
- <para>Determines whether each render target uses a separate blend state.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.BlendState.#ctor(System.Boolean,System.Boolean)">
- <summary>
- <para>Creates a new blend state with the specified values.</para>
- </summary>
- <param name="separateMRTBlend">Determines whether each render target uses a separate blend state.</param>
- <param name="alphaToMask">Turns on alpha-to-coverage.</param>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.BlendState.Default">
- <summary>
- <para>Default values for the blend state.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.Rendering.CameraProperties">
- <summary>
- <para>Camera related properties in CullingParameters.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.CameraProperties.GetCameraCullingPlane(System.Int32)">
- <summary>
- <para>Get a camera culling plane.</para>
- </summary>
- <param name="index">Plane index (up to 5).</param>
- <returns>
- <para>Camera culling plane.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.CameraProperties.GetShadowCullingPlane(System.Int32)">
- <summary>
- <para>Get a shadow culling plane.</para>
- </summary>
- <param name="index">Plane index (up to 5).</param>
- <returns>
- <para>Shadow culling plane.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.CameraProperties.SetCameraCullingPlane(System.Int32,UnityEngine.Plane)">
- <summary>
- <para>Set a camera culling plane.</para>
- </summary>
- <param name="index">Plane index (up to 5).</param>
- <param name="plane">Camera culling plane.</param>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.CameraProperties.SetShadowCullingPlane(System.Int32,UnityEngine.Plane)">
- <summary>
- <para>Set a shadow culling plane.</para>
- </summary>
- <param name="index">Plane index (up to 5).</param>
- <param name="plane">Shadow culling plane.</param>
- </member>
- <member name="T:UnityEngine.Experimental.Rendering.CoreCameraValues">
- <summary>
- <para>Core Camera related properties in CullingParameters.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.Rendering.CullResults">
- <summary>
- <para>Culling results (visible objects, lights, reflection probes).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.CullResults.visibleLights">
- <summary>
- <para>Array of visible lights.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.CullResults.visibleOffscreenVertexLights">
- <summary>
- <para>Off screen lights that still effect visible scene vertices.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.CullResults.visibleReflectionProbes">
- <summary>
- <para>Array of visible reflection probes.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.CullResults.visibleRenderers">
- <summary>
- <para>Visible renderers.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.CullResults.ComputeDirectionalShadowMatricesAndCullingPrimitives(System.Int32,System.Int32,System.Int32,UnityEngine.Vector3,System.Int32,System.Single,UnityEngine.Matrix4x4&amp;,UnityEngine.Matrix4x4&amp;,UnityEngine.Experimental.Rendering.ShadowSplitData&amp;)">
- <summary>
- <para>Calculates the view and projection matrices and shadow split data for a directional light.</para>
- </summary>
- <param name="activeLightIndex">The index into the active light array.</param>
- <param name="splitIndex">The cascade index.</param>
- <param name="splitCount">The number of cascades.</param>
- <param name="splitRatio">The cascade ratios.</param>
- <param name="shadowResolution">The resolution of the shadowmap.</param>
- <param name="shadowNearPlaneOffset">The near plane offset for the light.</param>
- <param name="viewMatrix">The computed view matrix.</param>
- <param name="projMatrix">The computed projection matrix.</param>
- <param name="shadowSplitData">The computed cascade data.</param>
- <returns>
- <para>If false, the shadow map for this cascade does not need to be rendered this frame.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.CullResults.ComputePointShadowMatricesAndCullingPrimitives(System.Int32,UnityEngine.CubemapFace,System.Single,UnityEngine.Matrix4x4&amp;,UnityEngine.Matrix4x4&amp;,UnityEngine.Experimental.Rendering.ShadowSplitData&amp;)">
- <summary>
- <para>Calculates the view and projection matrices and shadow split data for a point light.</para>
- </summary>
- <param name="activeLightIndex">The index into the active light array.</param>
- <param name="cubemapFace">The cubemap face to be rendered.</param>
- <param name="fovBias">The amount by which to increase the camera FOV above 90 degrees.</param>
- <param name="viewMatrix">The computed view matrix.</param>
- <param name="projMatrix">The computed projection matrix.</param>
- <param name="shadowSplitData">The computed split data.</param>
- <returns>
- <para>If false, the shadow map for this light and cubemap face does not need to be rendered this frame.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.CullResults.ComputeSpotShadowMatricesAndCullingPrimitives(System.Int32,UnityEngine.Matrix4x4&amp;,UnityEngine.Matrix4x4&amp;,UnityEngine.Experimental.Rendering.ShadowSplitData&amp;)">
- <summary>
- <para>Calculates the view and projection matrices and shadow split data for a spot light.</para>
- </summary>
- <param name="activeLightIndex">The index into the active light array.</param>
- <param name="viewMatrix">The computed view matrix.</param>
- <param name="projMatrix">The computed projection matrix.</param>
- <param name="shadowSplitData">The computed split data.</param>
- <returns>
- <para>If false, the shadow map for this light does not need to be rendered this frame.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.CullResults.Cull">
- <summary>
- <para>Perform culling for a Camera.</para>
- </summary>
- <param name="camera">Camera to cull for.</param>
- <param name="renderLoop">Render loop the culling results will be used with.</param>
- <param name="results">Culling results.</param>
- <returns>
- <para>Flag indicating whether culling succeeded.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.CullResults.Cull">
- <summary>
- <para>Perform culling with custom CullingParameters.</para>
- </summary>
- <param name="parameters">Parameters for culling.</param>
- <param name="renderLoop">Render loop the culling results will be used with.</param>
- <returns>
- <para>Culling results.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.CullResults.FillLightIndices(UnityEngine.ComputeBuffer)">
- <summary>
- <para>Fills a compute buffer with per-object light indices.</para>
- </summary>
- <param name="computeBuffer">The compute buffer object to fill.</param>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.CullResults.GetCullingParameters(UnityEngine.Camera,UnityEngine.Experimental.Rendering.ScriptableCullingParameters&amp;)">
- <summary>
- <para>Get culling parameters for a camera.</para>
- </summary>
- <param name="camera">Camera to get parameters for.</param>
- <param name="cullingParameters">Resultant culling parameters.</param>
- <param name="stereoAware">Generate single-pass stereo aware culling parameters.</param>
- <returns>
- <para>Flag indicating whether culling parameters are valid.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.CullResults.GetCullingParameters(UnityEngine.Camera,System.Boolean,UnityEngine.Experimental.Rendering.ScriptableCullingParameters&amp;)">
- <summary>
- <para>Get culling parameters for a camera.</para>
- </summary>
- <param name="camera">Camera to get parameters for.</param>
- <param name="cullingParameters">Resultant culling parameters.</param>
- <param name="stereoAware">Generate single-pass stereo aware culling parameters.</param>
- <returns>
- <para>Flag indicating whether culling parameters are valid.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.CullResults.GetLightIndexMap">
- <summary>
- <para>If a RenderPipeline sorts or otherwise modifies the VisibleLight list, an index remap will be necessary to properly make use of per-object light lists.</para>
- </summary>
- <returns>
- <para>Array of indices that map from VisibleLight indices to internal per-object light list indices.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.CullResults.GetLightIndicesCount">
- <summary>
- <para>Gets the number of per-object light indices.</para>
- </summary>
- <returns>
- <para>The number of per-object light indices.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.CullResults.GetShadowCasterBounds(System.Int32,UnityEngine.Bounds&amp;)">
- <summary>
- <para>Returns the bounding box that encapsulates the visible shadow casters. Can be used to, for instance, dynamically adjust cascade ranges.</para>
- </summary>
- <param name="lightIndex">The index of the shadow-casting light.</param>
- <param name="outBounds">The bounds to be computed.</param>
- <returns>
- <para>True if the light affects at least one shadow casting object in the scene.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.CullResults.SetLightIndexMap(System.Int32[])">
- <summary>
- <para>If a RenderPipeline sorts or otherwise modifies the VisibleLight list, an index remap will be necessary to properly make use of per-object light lists.
-If an element of the array is set to -1, the light corresponding to that element will be disabled.</para>
- </summary>
- <param name="mapping">Array with light indices that map from VisibleLight to internal per-object light lists.</param>
- </member>
- <member name="T:UnityEngine.Experimental.Rendering.DepthState">
- <summary>
- <para>Values for the depth state.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.DepthState.compareFunction">
- <summary>
- <para>How should depth testing be performed.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.DepthState.writeEnabled">
- <summary>
- <para>Controls whether pixels from this object are written to the depth buffer.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.DepthState.#ctor(System.Boolean,UnityEngine.Rendering.CompareFunction)">
- <summary>
- <para>Creates a new depth state with the given values.</para>
- </summary>
- <param name="writeEnabled">Controls whether pixels from this object are written to the depth buffer.</param>
- <param name="compareFunction">How should depth testing be performed.</param>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.DepthState.Default">
- <summary>
- <para>Default values for the depth state.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.Rendering.DrawRendererFlags">
- <summary>
- <para>Flags controlling RenderLoop.DrawRenderers.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.DrawRendererFlags.EnableDynamicBatching">
- <summary>
- <para>When set, enables dynamic batching.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.DrawRendererFlags.EnableInstancing">
- <summary>
- <para>When set, enables GPU instancing.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.DrawRendererFlags.None">
- <summary>
- <para>No flags are set.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.Rendering.DrawRendererSettings">
- <summary>
- <para>Settings for ScriptableRenderContext.DrawRenderers.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.DrawRendererSettings.flags">
- <summary>
- <para>Other flags controlling object rendering.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.DrawRendererSettings.maxShaderPasses">
- <summary>
- <para>The maxiumum number of passes that can be rendered in 1 DrawRenderers call.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.DrawRendererSettings.rendererConfiguration">
- <summary>
- <para>What kind of per-object data to setup during rendering.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.DrawRendererSettings.sorting">
- <summary>
- <para>How to sort objects during rendering.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.DrawRendererSettings.#ctor(UnityEngine.Camera,UnityEngine.Experimental.Rendering.ShaderPassName)">
- <summary>
- <para>Create a draw settings struct.</para>
- </summary>
- <param name="camera">Camera to use. Camera's transparency sort mode is used to determine whether to use orthographic or distance based sorting.</param>
- <param name="shaderPassName">Shader pass to use.</param>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.DrawRendererSettings.SetOverrideMaterial(UnityEngine.Material,System.Int32)">
- <summary>
- <para>Set the Material to use for all drawers that would render in this group.</para>
- </summary>
- <param name="mat">Override material.</param>
- <param name="passIndex">Pass to use in the material.</param>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.DrawRendererSettings.SetShaderPassName(System.Int32,UnityEngine.Experimental.Rendering.ShaderPassName)">
- <summary>
- <para>Set the shader passes that this draw call can render.</para>
- </summary>
- <param name="index">Index of the shader pass to use.</param>
- <param name="shaderPassName">Name of the shader pass.</param>
- </member>
- <member name="T:UnityEngine.Experimental.Rendering.DrawRendererSortSettings">
- <summary>
- <para>Describes how to sort objects during rendering.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.DrawRendererSortSettings.cameraPosition">
- <summary>
- <para>Camera position, used to determine distances to objects.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.DrawRendererSortSettings.flags">
- <summary>
- <para>What kind of sorting to do while rendering.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.DrawRendererSortSettings.sortOrthographic">
- <summary>
- <para>Should orthographic sorting be used?</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.DrawRendererSortSettings.worldToCameraMatrix">
- <summary>
- <para>Camera view matrix, used to determine distances to objects.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.Rendering.DrawShadowsSettings">
- <summary>
- <para>Settings for RenderLoop.DrawShadows.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.DrawShadowsSettings.cullResults">
- <summary>
- <para>Culling results to use.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.DrawShadowsSettings.lightIndex">
- <summary>
- <para>The index of the shadow-casting light to be rendered.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.DrawShadowsSettings.splitData">
- <summary>
- <para>The split data.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.DrawShadowsSettings.#ctor(UnityEngine.Experimental.Rendering.CullResults,System.Int32)">
- <summary>
- <para>Create a shadow settings object.</para>
- </summary>
- <param name="cullResults">The cull results for this light.</param>
- <param name="lightIndex">The light index.</param>
- </member>
- <member name="T:UnityEngine.Experimental.Rendering.FilterRenderersSettings">
- <summary>
- <para>Filter settings for ScriptableRenderContext.DrawRenderers.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.FilterRenderersSettings.layerMask">
- <summary>
- <para>Only render objects in the given layer mask.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.FilterRenderersSettings.renderingLayerMask">
- <summary>
- <para>The rendering layer mask to use when filtering available renderers for drawing.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.FilterRenderersSettings.renderQueueRange">
- <summary>
- <para>Render objects whose material render queue in inside this range.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.FilterRenderersSettings.#ctor(System.Boolean)">
- <summary>
- <para></para>
- </summary>
- <param name="initializeValues">Specifies whether the values of the struct should be initialized.</param>
- </member>
- <member name="T:UnityEngine.Experimental.Rendering.FilterResults">
- <summary>
- <para>Describes a subset of objects to be rendered.
-
-See Also: ScriptableRenderContext.DrawRenderers.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.Rendering.FormatUsage">
- <summary>
- <para>Use this format usages to figure out the capabilities of specific GraphicsFormat</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.FormatUsage.Blend">
- <summary>
- <para>To blend on a rendertexture.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.FormatUsage.Linear">
- <summary>
- <para>To sample textures with a linear filter</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.FormatUsage.LoadStore">
- <summary>
- <para>To perform resource load and store on a texture</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.FormatUsage.MSAA2x">
- <summary>
- <para>To create and render to a MSAA 2X rendertexture.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.FormatUsage.MSAA4x">
- <summary>
- <para>To create and render to a MSAA 4X rendertexture.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.FormatUsage.MSAA8x">
- <summary>
- <para>To create and render to a MSAA 8X rendertexture.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.FormatUsage.Render">
- <summary>
- <para>To create and render to a rendertexture.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.FormatUsage.Sample">
- <summary>
- <para>To create and sample textures.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.Rendering.GraphicsFormat">
- <summary>
- <para>Use this format to create either Textures or RenderTextures from scripts.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.A10R10G10B10_XRSRGBPack32">
- <summary>
- <para>A four-component, 64-bit packed unsigned normalized format that has a 10-bit A component in bits 30..39, a 10-bit R component in bits 20..29, a 10-bit G component in bits 10..19, and a 10-bit B component in bits 0..9. The components are gamma encoded and their values range from -0.5271 to 1.66894. The alpha component is clamped to either 0.0 or 1.0 on sampling, rendering, and writing operations.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.A10R10G10B10_XRUNormPack32">
- <summary>
- <para>A four-component, 64-bit packed unsigned normalized format that has a 10-bit A component in bits 30..39, a 10-bit R component in bits 20..29, a 10-bit G component in bits 10..19, and a 10-bit B component in bits 0..9. The components are linearly encoded and their values range from -0.752941 to 1.25098 (pre-expansion). The alpha component is clamped to either 0.0 or 1.0 on sampling, rendering, and writing operations.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.A1R5G5B5_UNormPack16">
- <summary>
- <para>A four-component, 16-bit packed unsigned normalized format that has a 1-bit A component in bit 15, a 5-bit R component in bits 10..14, a 5-bit G component in bits 5..9, and a 5-bit B component in bits 0..4.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.A2B10G10R10_SIntPack32">
- <summary>
- <para>A four-component, 32-bit packed signed integer format that has a 2-bit A component in bits 30..31, a 10-bit B component in bits 20..29, a 10-bit G component in bits 10..19, and a 10-bit R component in bits 0..9.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.A2B10G10R10_UIntPack32">
- <summary>
- <para>A four-component, 32-bit packed unsigned integer format that has a 2-bit A component in bits 30..31, a 10-bit B component in bits 20..29, a 10-bit G component in bits 10..19, and a 10-bit R component in bits 0..9.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.A2B10G10R10_UNormPack32">
- <summary>
- <para>A four-component, 32-bit packed unsigned normalized format that has a 2-bit A component in bits 30..31, a 10-bit B component in bits 20..29, a 10-bit G component in bits 10..19, and a 10-bit R component in bits 0..9.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.A2R10G10B10_SIntPack32">
- <summary>
- <para>A four-component, 32-bit packed signed integer format that has a 2-bit A component in bits 30..31, a 10-bit R component in bits 20..29, a 10-bit G component in bits 10..19, and a 10-bit B component in bits 0..9.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.A2R10G10B10_UIntPack32">
- <summary>
- <para>A four-component, 32-bit packed unsigned integer format that has a 2-bit A component in bits 30..31, a 10-bit R component in bits 20..29, a 10-bit G component in bits 10..19, and a 10-bit B component in bits 0..9.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.A2R10G10B10_UNormPack32">
- <summary>
- <para>A four-component, 32-bit packed unsigned normalized format that has a 2-bit A component in bits 30..31, a 10-bit R component in bits 20..29, a 10-bit G component in bits 10..19, and a 10-bit B component in bits 0..9.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.A2R10G10B10_XRSRGBPack32">
- <summary>
- <para>A four-component, 32-bit packed unsigned normalized format that has a 2-bit A component in bits 30..31, a 10-bit R component in bits 20..29, a 10-bit G component in bits 10..19, and a 10-bit B component in bits 0..9. The components are gamma encoded and their values range from -0.5271 to 1.66894. The alpha component is clamped to either 0.0 or 1.0 on sampling, rendering, and writing operations.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.A2R10G10B10_XRUNormPack32">
- <summary>
- <para>A four-component, 32-bit packed unsigned normalized format that has a 2-bit A component in bits 30..31, a 10-bit R component in bits 20..29, a 10-bit G component in bits 10..19, and a 10-bit B component in bits 0..9. The components are linearly encoded and their values range from -0.752941 to 1.25098 (pre-expansion). The alpha component is clamped to either 0.0 or 1.0 on sampling, rendering, and writing operations.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.B10G11R11_UFloatPack32">
- <summary>
- <para>A three-component, 32-bit packed unsigned floating-point format that has a 10-bit B component in bits 22..31, an 11-bit G component in bits 11..21, an 11-bit R component in bits 0..10. </para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.B4G4R4A4_UNormPack16">
- <summary>
- <para>A four-component, 16-bit packed unsigned normalized format that has a 4-bit B component in bits 12..15, a 4-bit G component in bits 8..11, a 4-bit R component in bits 4..7, and a 4-bit A component in bits 0..3.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.B5G5R5A1_UNormPack16">
- <summary>
- <para>A four-component, 16-bit packed unsigned normalized format that has a 5-bit B component in bits 11..15, a 5-bit G component in bits 6..10, a 5-bit R component in bits 1..5, and a 1-bit A component in bit 0.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.B5G6R5_UNormPack16">
- <summary>
- <para>A three-component, 16-bit packed unsigned normalized format that has a 5-bit B component in bits 11..15, a 6-bit G component in bits 5..10, and a 5-bit R component in bits 0..4.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.B8G8R8_SInt">
- <summary>
- <para>A three-component, 24-bit signed integer format that has an 8-bit B component in byte 0, an 8-bit G component in byte 1, and an 8-bit R component in byte 2.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.B8G8R8_SNorm">
- <summary>
- <para>A three-component, 24-bit signed normalized format that has an 8-bit B component in byte 0, an 8-bit G component in byte 1, and an 8-bit R component in byte 2.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.B8G8R8_SRGB">
- <summary>
- <para>A three-component, 24-bit unsigned normalized format that has an 8-bit R component stored with sRGB nonlinear encoding in byte 0, an 8-bit G component stored with sRGB nonlinear encoding in byte 1, and an 8-bit B component stored with sRGB nonlinear encoding in byte 2.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.B8G8R8_UInt">
- <summary>
- <para>A three-component, 24-bit unsigned integer format that has an 8-bit B component in byte 0, an 8-bit G component in byte 1, and an 8-bit R component in byte 2</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.B8G8R8_UNorm">
- <summary>
- <para>A three-component, 24-bit unsigned normalized format that has an 8-bit B component in byte 0, an 8-bit G component in byte 1, and an 8-bit R component in byte 2.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.B8G8R8A8_SInt">
- <summary>
- <para>A four-component, 32-bit signed integer format that has an 8-bit B component in byte 0, an 8-bit G component in byte 1, an 8-bit R component in byte 2, and an 8-bit A component in byte 3.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.B8G8R8A8_SNorm">
- <summary>
- <para>A four-component, 32-bit signed normalized format that has an 8-bit B component in byte 0, an 8-bit G component in byte 1, an 8-bit R component in byte 2, and an 8-bit A component in byte 3.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.B8G8R8A8_SRGB">
- <summary>
- <para>A four-component, 32-bit unsigned normalized format that has an 8-bit B component stored with sRGB nonlinear encoding in byte 0, an 8-bit G component stored with sRGB nonlinear encoding in byte 1, an 8-bit R component stored with sRGB nonlinear encoding in byte 2, and an 8-bit A component in byte 3.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.B8G8R8A8_UInt">
- <summary>
- <para>A four-component, 32-bit unsigned integer format that has an 8-bit B component in byte 0, an 8-bit G component in byte 1, an 8-bit R component in byte 2, and an 8-bit A component in byte 3.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.B8G8R8A8_UNorm">
- <summary>
- <para>A four-component, 32-bit unsigned normalized format that has an 8-bit B component in byte 0, an 8-bit G component in byte 1, an 8-bit R component in byte 2, and an 8-bit A component in byte 3.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.D16_UNorm">
- <summary>
- <para>A one-component, 16-bit unsigned normalized format that has a single 16-bit depth component.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.D24_UNorm">
- <summary>
- <para>A two-component, 32-bit format that has 24 unsigned normalized bits in the depth component and, optionally: 8 bits that are unused.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.D24_UNorm_S8_UInt">
- <summary>
- <para>A two-component, 32-bit packed format that has 8 unsigned integer bits in the stencil component, and 24 unsigned normalized bits in the depth component.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.D32_SFloat">
- <summary>
- <para>A one-component, 32-bit signed floating-point format that has 32-bits in the depth component.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.D32_SFloat_S8_Uint">
- <summary>
- <para>A two-component format that has 32 signed float bits in the depth component and 8 unsigned integer bits in the stencil component. There are optionally: 24-bits that are unused.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.E5B9G9R9_UFloatPack32">
- <summary>
- <para>A three-component, 32-bit packed unsigned floating-point format that has a 5-bit shared exponent in bits 27..31, a 9-bit B component mantissa in bits 18..26, a 9-bit G component mantissa in bits 9..17, and a 9-bit R component mantissa in bits 0..8.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.None">
- <summary>
- <para>The format is not specified.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.R_BC4_SNorm">
- <summary>
- <para>A one-component, block-compressed format where each 64-bit compressed texel block encodes a 4×4 rectangle of signed normalized red texel data.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.R_BC4_UNorm">
- <summary>
- <para>A one-component, block-compressed format where each 64-bit compressed texel block encodes a 4×4 rectangle of unsigned normalized red texel data.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.R_EAC_SNorm">
- <summary>
- <para>A one-component, ETC2 compressed format where each 64-bit compressed texel block encodes a 4×4 rectangle of signed normalized red texel data.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.R_EAC_UNorm">
- <summary>
- <para>A one-component, ETC2 compressed format where each 64-bit compressed texel block encodes a 4×4 rectangle of unsigned normalized red texel data.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.R10G10B10_XRSRGBPack32">
- <summary>
- <para>A four-component, 32-bit packed unsigned normalized format that has a 10-bit R component in bits 20..29, a 10-bit G component in bits 10..19, and a 10-bit B component in bits 0..9. The components are gamma encoded and their values range from -0.5271 to 1.66894. The alpha component is clamped to either 0.0 or 1.0 on sampling, rendering, and writing operations.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.R10G10B10_XRUNormPack32">
- <summary>
- <para>A four-component, 32-bit packed unsigned normalized format that has a 10-bit R component in bits 20..29, a 10-bit G component in bits 10..19, and a 10-bit B component in bits 0..9. The components are linearly encoded and their values range from -0.752941 to 1.25098 (pre-expansion).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.R16_SFloat">
- <summary>
- <para>A one-component, 16-bit signed floating-point format that has a single 16-bit R component.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.R16_SInt">
- <summary>
- <para>A one-component, 16-bit signed integer format that has a single 16-bit R component.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.R16_SNorm">
- <summary>
- <para>A one-component, 16-bit signed normalized format that has a single 16-bit R component.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.R16_UInt">
- <summary>
- <para>A one-component, 16-bit unsigned integer format that has a single 16-bit R component.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.R16_UNorm">
- <summary>
- <para>A one-component, 16-bit unsigned normalized format that has a single 16-bit R component.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.R16G16_SFloat">
- <summary>
- <para>A two-component, 32-bit signed floating-point format that has a 16-bit R component in bytes 0..1, and a 16-bit G component in bytes 2..3.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.R16G16_SInt">
- <summary>
- <para>A two-component, 32-bit signed integer format that has a 16-bit R component in bytes 0..1, and a 16-bit G component in bytes 2..3.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.R16G16_SNorm">
- <summary>
- <para>A two-component, 32-bit signed normalized format that has a 16-bit R component in bytes 0..1, and a 16-bit G component in bytes 2..3.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.R16G16_UInt">
- <summary>
- <para>A two-component, 32-bit unsigned integer format that has a 16-bit R component in bytes 0..1, and a 16-bit G component in bytes 2..3.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.R16G16_UNorm">
- <summary>
- <para>A two-component, 32-bit unsigned normalized format that has a 16-bit R component in bytes 0..1, and a 16-bit G component in bytes 2..3.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.R16G16B16_SFloat">
- <summary>
- <para>A three-component, 48-bit signed floating-point format that has a 16-bit R component in bytes 0..1, a 16-bit G component in bytes 2..3, and a 16-bit B component in bytes 4..5.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.R16G16B16_SInt">
- <summary>
- <para>A three-component, 48-bit signed integer format that has a 16-bit R component in bytes 0..1, a 16-bit G component in bytes 2..3, and a 16-bit B component in bytes 4..5.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.R16G16B16_SNorm">
- <summary>
- <para>A three-component, 48-bit signed normalized format that has a 16-bit R component in bytes 0..1, a 16-bit G component in bytes 2..3, and a 16-bit B component in bytes 4..5.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.R16G16B16_UInt">
- <summary>
- <para>A three-component, 48-bit unsigned integer format that has a 16-bit R component in bytes 0..1, a 16-bit G component in bytes 2..3, and a 16-bit B component in bytes 4..5.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.R16G16B16_UNorm">
- <summary>
- <para>A three-component, 48-bit unsigned normalized format that has a 16-bit R component in bytes 0..1, a 16-bit G component in bytes 2..3, and a 16-bit B component in bytes 4..5.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.R16G16B16A16_SFloat">
- <summary>
- <para>A four-component, 64-bit signed floating-point format that has a 16-bit R component in bytes 0..1, a 16-bit G component in bytes 2..3, a 16-bit B component in bytes 4..5, and a 16-bit A component in bytes 6..7.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.R16G16B16A16_SInt">
- <summary>
- <para>A four-component, 64-bit signed integer format that has a 16-bit R component in bytes 0..1, a 16-bit G component in bytes 2..3, a 16-bit B component in bytes 4..5, and a 16-bit A component in bytes 6..7.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.R16G16B16A16_SNorm">
- <summary>
- <para>A four-component, 64-bit signed normalized format that has a 16-bit R component in bytes 0..1, a 16-bit G component in bytes 2..3, a 16-bit B component in bytes 4..5, and a 16-bit A component in bytes 6..7.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.R16G16B16A16_UInt">
- <summary>
- <para>A four-component, 64-bit unsigned integer format that has a 16-bit R component in bytes 0..1, a 16-bit G component in bytes 2..3, a 16-bit B component in bytes 4..5, and a 16-bit A component in bytes 6..7.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.R16G16B16A16_UNorm">
- <summary>
- <para>A four-component, 64-bit unsigned normalized format that has a 16-bit R component in bytes 0..1, a 16-bit G component in bytes 2..3, a 16-bit B component in bytes 4..5, and a 16-bit A component in bytes 6..7.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.R32_SFloat">
- <summary>
- <para>A one-component, 32-bit signed floating-point format that has a single 32-bit R component.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.R32_SInt">
- <summary>
- <para>A one-component, 32-bit signed integer format that has a single 32-bit R component.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.R32_UInt">
- <summary>
- <para>A one-component, 32-bit unsigned integer format that has a single 32-bit R component.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.R32G32_SFloat">
- <summary>
- <para>A two-component, 64-bit signed floating-point format that has a 32-bit R component in bytes 0..3, and a 32-bit G component in bytes 4..7.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.R32G32_SInt">
- <summary>
- <para>A two-component, 64-bit signed integer format that has a 32-bit R component in bytes 0..3, and a 32-bit G component in bytes 4..7.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.R32G32_UInt">
- <summary>
- <para>A two-component, 64-bit unsigned integer format that has a 32-bit R component in bytes 0..3, and a 32-bit G component in bytes 4..7.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.R32G32B32_SFloat">
- <summary>
- <para>A three-component, 96-bit signed floating-point format that has a 32-bit R component in bytes 0..3, a 32-bit G component in bytes 4..7, and a 32-bit B component in bytes 8..11.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.R32G32B32_SInt">
- <summary>
- <para>A three-component, 96-bit signed integer format that has a 32-bit R component in bytes 0..3, a 32-bit G component in bytes 4..7, and a 32-bit B component in bytes 8..11.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.R32G32B32_UInt">
- <summary>
- <para>A three-component, 96-bit unsigned integer format that has a 32-bit R component in bytes 0..3, a 32-bit G component in bytes 4..7, and a 32-bit B component in bytes 8..11.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.R32G32B32A32_SFloat">
- <summary>
- <para>A four-component, 128-bit signed floating-point format that has a 32-bit R component in bytes 0..3, a 32-bit G component in bytes 4..7, a 32-bit B component in bytes 8..11, and a 32-bit A component in bytes 12..15.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.R32G32B32A32_SInt">
- <summary>
- <para>A four-component, 128-bit signed integer format that has a 32-bit R component in bytes 0..3, a 32-bit G component in bytes 4..7, a 32-bit B component in bytes 8..11, and a 32-bit A component in bytes 12..15.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.R32G32B32A32_UInt">
- <summary>
- <para>A four-component, 128-bit unsigned integer format that has a 32-bit R component in bytes 0..3, a 32-bit G component in bytes 4..7, a 32-bit B component in bytes 8..11, and a 32-bit A component in bytes 12..15.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.R4G4B4A4_UNormPack16">
- <summary>
- <para>A four-component, 16-bit packed unsigned normalized format that has a 4-bit R component in bits 12..15, a 4-bit G component in bits 8..11, a 4-bit B component in bits 4..7, and a 4-bit A component in bits 0..3.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.R5G5B5A1_UNormPack16">
- <summary>
- <para>A four-component, 16-bit packed unsigned normalized format that has a 5-bit R component in bits 11..15, a 5-bit G component in bits 6..10, a 5-bit B component in bits 1..5, and a 1-bit A component in bit 0.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.R5G6B5_UNormPack16">
- <summary>
- <para>A three-component, 16-bit packed unsigned normalized format that has a 5-bit R component in bits 11..15, a 6-bit G component in bits 5..10, and a 5-bit B component in bits 0..4.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.R8_SInt">
- <summary>
- <para>A one-component, 8-bit signed integer format that has a single 8-bit R component.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.R8_SNorm">
- <summary>
- <para>A one-component, 8-bit signed normalized format that has a single 8-bit R component.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.R8_SRGB">
- <summary>
- <para>A one-component, 8-bit unsigned normalized format that has a single 8-bit R component stored with sRGB nonlinear encoding.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.R8_UInt">
- <summary>
- <para>A one-component, 8-bit unsigned integer format that has a single 8-bit R component.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.R8_UNorm">
- <summary>
- <para>A one-component, 8-bit unsigned normalized format that has a single 8-bit R component.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.R8G8_SInt">
- <summary>
- <para>A two-component, 16-bit signed integer format that has an 8-bit R component in byte 0, and an 8-bit G component in byte 1.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.R8G8_SNorm">
- <summary>
- <para>A two-component, 16-bit signed normalized format that has an 8-bit R component stored with sRGB nonlinear encoding in byte 0, and an 8-bit G component stored with sRGB nonlinear encoding in byte 1.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.R8G8_SRGB">
- <summary>
- <para>A two-component, 16-bit unsigned normalized format that has an 8-bit R component stored with sRGB nonlinear encoding in byte 0, and an 8-bit G component stored with sRGB nonlinear encoding in byte 1.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.R8G8_UInt">
- <summary>
- <para>A two-component, 16-bit unsigned integer format that has an 8-bit R component in byte 0, and an 8-bit G component in byte 1.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.R8G8_UNorm">
- <summary>
- <para>A two-component, 16-bit unsigned normalized format that has an 8-bit R component stored with sRGB nonlinear encoding in byte 0, and an 8-bit G component stored with sRGB nonlinear encoding in byte 1.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.R8G8B8_SInt">
- <summary>
- <para>A three-component, 24-bit signed integer format that has an 8-bit R component in byte 0, an 8-bit G component in byte 1, and an 8-bit B component in byte 2.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.R8G8B8_SNorm">
- <summary>
- <para>A three-component, 24-bit signed normalized format that has an 8-bit R component in byte 0, an 8-bit G component in byte 1, and an 8-bit B component in byte 2.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.R8G8B8_SRGB">
- <summary>
- <para>A three-component, 24-bit unsigned normalized format that has an 8-bit R component stored with sRGB nonlinear encoding in byte 0, an 8-bit G component stored with sRGB nonlinear encoding in byte 1, and an 8-bit B component stored with sRGB nonlinear encoding in byte 2.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.R8G8B8_UInt">
- <summary>
- <para>A three-component, 24-bit unsigned integer format that has an 8-bit R component in byte 0, an 8-bit G component in byte 1, and an 8-bit B component in byte 2.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.R8G8B8_UNorm">
- <summary>
- <para>A three-component, 24-bit unsigned normalized format that has an 8-bit R component in byte 0, an 8-bit G component in byte 1, and an 8-bit B component in byte 2.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.R8G8B8A8_SInt">
- <summary>
- <para>A four-component, 32-bit signed integer format that has an 8-bit R component in byte 0, an 8-bit G component in byte 1, an 8-bit B component in byte 2, and an 8-bit A component in byte 3.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.R8G8B8A8_SNorm">
- <summary>
- <para>A four-component, 32-bit signed normalized format that has an 8-bit R component in byte 0, an 8-bit G component in byte 1, an 8-bit B component in byte 2, and an 8-bit A component in byte 3.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.R8G8B8A8_SRGB">
- <summary>
- <para>A four-component, 32-bit unsigned normalized format that has an 8-bit R component stored with sRGB nonlinear encoding in byte 0, an 8-bit G component stored with sRGB nonlinear encoding in byte 1, an 8-bit B component stored with sRGB nonlinear encoding in byte 2, and an 8-bit A component in byte 3.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.R8G8B8A8_UInt">
- <summary>
- <para>A four-component, 32-bit unsigned integer format that has an 8-bit R component in byte 0, an 8-bit G component in byte 1, an 8-bit B component in byte 2, and an 8-bit A component in byte 3.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.R8G8B8A8_UNorm">
- <summary>
- <para>A four-component, 32-bit unsigned normalized format that has an 8-bit R component in byte 0, an 8-bit G component in byte 1, an 8-bit B component in byte 2, and an 8-bit A component in byte 3.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.RG_BC5_SNorm">
- <summary>
- <para>A two-component, block-compressed format where each 128-bit compressed texel block encodes a 4×4 rectangle of signed normalized RG texel data with the first 64 bits encoding red values followed by 64 bits encoding green values.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.RG_BC5_UNorm">
- <summary>
- <para>A two-component, block-compressed format where each 128-bit compressed texel block encodes a 4×4 rectangle of unsigned normalized RG texel data with the first 64 bits encoding red values followed by 64 bits encoding green values.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.RG_EAC_SNorm">
- <summary>
- <para>A two-component, ETC2 compressed format where each 128-bit compressed texel block encodes a 4×4 rectangle of signed normalized RG texel data with the first 64 bits encoding red values followed by 64 bits encoding green values.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.RG_EAC_UNorm">
- <summary>
- <para>A two-component, ETC2 compressed format where each 128-bit compressed texel block encodes a 4×4 rectangle of unsigned normalized RG texel data with the first 64 bits encoding red values followed by 64 bits encoding green values.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.RGB_A1_ETC2_SRGB">
- <summary>
- <para>A four-component, ETC2 compressed format where each 64-bit compressed texel block encodes a 4×4 rectangle of unsigned normalized RGB texel data with sRGB nonlinear encoding, and provides 1 bit of alpha.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.RGB_A1_ETC2_UNorm">
- <summary>
- <para>A four-component, ETC2 compressed format where each 64-bit compressed texel block encodes a 4×4 rectangle of unsigned normalized RGB texel data, and provides 1 bit of alpha.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.RGB_BC6H_SFloat">
- <summary>
- <para>A three-component, block-compressed format where each 128-bit compressed texel block encodes a 4×4 rectangle of signed floating-point RGB texel data.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.RGB_BC6H_UFloat">
- <summary>
- <para>A three-component, block-compressed format where each 128-bit compressed texel block encodes a 4×4 rectangle of unsigned floating-point RGB texel data.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.RGB_DXT1_SRGB">
- <summary>
- <para>A three-component, block-compressed format where each 64-bit compressed texel block encodes a 4×4 rectangle of unsigned normalized RGB texel data with sRGB nonlinear encoding. This format has no alpha and is considered opaque.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.RGB_DXT1_UNorm">
- <summary>
- <para>A three-component, block-compressed format where each 64-bit compressed texel block encodes a 4×4 rectangle of unsigned normalized RGB texel data. This format has no alpha and is considered opaque.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.RGB_ETC_UNorm">
- <summary>
- <para>A three-component, ETC compressed format where each 64-bit compressed texel block encodes a 4×4 rectangle of unsigned normalized RGB texel data. This format has no alpha and is considered opaque.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.RGB_ETC2_SRGB">
- <summary>
- <para>A three-component, ETC2 compressed format where each 64-bit compressed texel block encodes a 4×4 rectangle of unsigned normalized RGB texel data with sRGB nonlinear encoding. This format has no alpha and is considered opaque.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.RGB_ETC2_UNorm">
- <summary>
- <para>A three-component, ETC2 compressed format where each 64-bit compressed texel block encodes a 4×4 rectangle of unsigned normalized RGB texel data. This format has no alpha and is considered opaque.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.RGB_PVRTC_2Bpp_SRGB">
- <summary>
- <para>A three-component, PVRTC compressed format where each 64-bit compressed texel block encodes a 8×4 rectangle of unsigned normalized RGB texel data with sRGB nonlinear encoding. This format has no alpha and is considered opaque.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.RGB_PVRTC_2Bpp_UNorm">
- <summary>
- <para>A three-component, PVRTC compressed format where each 64-bit compressed texel block encodes a 8×4 rectangle of unsigned normalized RGB texel data. This format has no alpha and is considered opaque.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.RGB_PVRTC_4Bpp_SRGB">
- <summary>
- <para>A three-component, PVRTC compressed format where each 64-bit compressed texel block encodes a 4×4 rectangle of unsigned normalized RGB texel data with sRGB nonlinear encoding. This format has no alpha and is considered opaque.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.RGB_PVRTC_4Bpp_UNorm">
- <summary>
- <para>A three-component, PVRTC compressed format where each 64-bit compressed texel block encodes a 4×4 rectangle of unsigned normalized RGB texel data. This format has no alpha and is considered opaque.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.RGBA_ASTC10X10_SRGB">
- <summary>
- <para>A four-component, ASTC compressed format where each 128-bit compressed texel block encodes a 10×10 rectangle of unsigned normalized RGBA texel data with sRGB nonlinear encoding applied to the RGB components.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.RGBA_ASTC10X10_UNorm">
- <summary>
- <para>A four-component, ASTC compressed format where each 128-bit compressed texel block encodes a 10×10 rectangle of unsigned normalized RGBA texel data.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.RGBA_ASTC12X12_SRGB">
- <summary>
- <para>A four-component, ASTC compressed format where each 128-bit compressed texel block encodes a 12×12 rectangle of unsigned normalized RGBA texel data with sRGB nonlinear encoding applied to the RGB components.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.RGBA_ASTC12X12_UNorm">
- <summary>
- <para>A four-component, ASTC compressed format where each 128-bit compressed texel block encodes a 12×12 rectangle of unsigned normalized RGBA texel data.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.RGBA_ASTC4X4_SRGB">
- <summary>
- <para>A four-component, ASTC compressed format where each 128-bit compressed texel block encodes a 4×4 rectangle of unsigned normalized RGBA texel data with sRGB nonlinear encoding applied to the RGB components.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.RGBA_ASTC4X4_UNorm">
- <summary>
- <para>A four-component, ASTC compressed format where each 128-bit compressed texel block encodes a 4×4 rectangle of unsigned normalized RGBA texel data.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.RGBA_ASTC5X5_SRGB">
- <summary>
- <para>A four-component, ASTC compressed format where each 128-bit compressed texel block encodes a 5×5 rectangle of unsigned normalized RGBA texel data with sRGB nonlinear encoding applied to the RGB components.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.RGBA_ASTC5X5_UNorm">
- <summary>
- <para>A four-component, ASTC compressed format where each 128-bit compressed texel block encodes a 5×5 rectangle of unsigned normalized RGBA texel data.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.RGBA_ASTC6X6_SRGB">
- <summary>
- <para>A four-component, ASTC compressed format where each 128-bit compressed texel block encodes a 6×6 rectangle of unsigned normalized RGBA texel data with sRGB nonlinear encoding applied to the RGB components.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.RGBA_ASTC6X6_UNorm">
- <summary>
- <para>A four-component, ASTC compressed format where each 128-bit compressed texel block encodes a 6×6 rectangle of unsigned normalized RGBA texel data.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.RGBA_ASTC8X8_SRGB">
- <summary>
- <para>A four-component, ASTC compressed format where each 128-bit compressed texel block encodes an 8×8 rectangle of unsigned normalized RGBA texel data with sRGB nonlinear encoding applied to the RGB components.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.RGBA_ASTC8X8_UNorm">
- <summary>
- <para>A four-component, ASTC compressed format where each 128-bit compressed texel block encodes an 8×8 rectangle of unsigned normalized RGBA texel data.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.RGBA_BC7_SRGB">
- <summary>
- <para>A four-component, block-compressed format where each 128-bit compressed texel block encodes a 4×4 rectangle of unsigned normalized RGBA texel data with sRGB nonlinear encoding applied to the RGB components.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.RGBA_BC7_UNorm">
- <summary>
- <para>A four-component, block-compressed format where each 128-bit compressed texel block encodes a 4×4 rectangle of unsigned normalized RGBA texel data.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.RGBA_DXT3_SRGB">
- <summary>
- <para>A four-component, block-compressed format where each 128-bit compressed texel block encodes a 4×4 rectangle of unsigned normalized RGBA texel data with the first 64 bits encoding alpha values followed by 64 bits encoding RGB values with sRGB nonlinear encoding.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.RGBA_DXT3_UNorm">
- <summary>
- <para>A four-component, block-compressed format where each 128-bit compressed texel block encodes a 4×4 rectangle of unsigned normalized RGBA texel data with the first 64 bits encoding alpha values followed by 64 bits encoding RGB values.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.RGBA_DXT5_SRGB">
- <summary>
- <para>A four-component, block-compressed format where each 128-bit compressed texel block encodes a 4×4 rectangle of unsigned normalized RGBA texel data with the first 64 bits encoding alpha values followed by 64 bits encoding RGB values with sRGB nonlinear encoding.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.RGBA_DXT5_UNorm">
- <summary>
- <para>A four-component, block-compressed format where each 128-bit compressed texel block encodes a 4×4 rectangle of unsigned normalized RGBA texel data with the first 64 bits encoding alpha values followed by 64 bits encoding RGB values.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.RGBA_ETC2_SRGB">
- <summary>
- <para>A four-component, ETC2 compressed format where each 128-bit compressed texel block encodes a 4×4 rectangle of unsigned normalized RGBA texel data with the first 64 bits encoding alpha values followed by 64 bits encoding RGB values with sRGB nonlinear encoding applied.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.RGBA_ETC2_UNorm">
- <summary>
- <para>A four-component, ETC2 compressed format where each 128-bit compressed texel block encodes a 4×4 rectangle of unsigned normalized RGBA texel data with the first 64 bits encoding alpha values followed by 64 bits encoding RGB values.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.RGBA_PVRTC_2Bpp_SRGB">
- <summary>
- <para>A four-component, PVRTC compressed format where each 64-bit compressed texel block encodes a 8×4 rectangle of unsigned normalized RGBA texel data with the first 32 bits encoding alpha values followed by 32 bits encoding RGB values with sRGB nonlinear encoding applied.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.RGBA_PVRTC_2Bpp_UNorm">
- <summary>
- <para>A four-component, PVRTC compressed format where each 64-bit compressed texel block encodes a 8×4 rectangle of unsigned normalized RGBA texel data with the first 32 bits encoding alpha values followed by 32 bits encoding RGB values.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.RGBA_PVRTC_4Bpp_SRGB">
- <summary>
- <para>A four-component, PVRTC compressed format where each 64-bit compressed texel block encodes a 4×4 rectangle of unsigned normalized RGBA texel data with the first 32 bits encoding alpha values followed by 32 bits encoding RGB values with sRGB nonlinear encoding applied.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.RGBA_PVRTC_4Bpp_UNorm">
- <summary>
- <para>A four-component, PVRTC compressed format where each 64-bit compressed texel block encodes a 4×4 rectangle of unsigned normalized RGBA texel data with the first 32 bits encoding alpha values followed by 32 bits encoding RGB values.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.GraphicsFormat.S8_Uint">
- <summary>
- <para>A one-component, 8-bit unsigned integer format that has 8-bits in the stencil component.</para>
- </summary>
- </member>
- <member name="?:UnityEngine.Experimental.Rendering.IRenderPipeline">
- <summary>
- <para>Defines a series of commands and settings that describes how Unity renders a frame.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.IRenderPipeline.disposed">
- <summary>
- <para>When the IRenderPipeline is invalid or destroyed this returns true.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.IRenderPipeline.Render(UnityEngine.Experimental.Rendering.ScriptableRenderContext,UnityEngine.Camera[])">
- <summary>
- <para>Defines custom rendering for this RenderPipeline.</para>
- </summary>
- <param name="renderContext">Structure that holds the rendering commands for this loop.</param>
- <param name="cameras">Cameras to render.</param>
- </member>
- <member name="?:UnityEngine.Experimental.Rendering.IRenderPipelineAsset">
- <summary>
- <para>An asset that produces a specific IRenderPipeline.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.IRenderPipelineAsset.CreatePipeline">
- <summary>
- <para>Create a IRenderPipeline specific to this asset.</para>
- </summary>
- <returns>
- <para>Created pipeline.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.IRenderPipelineAsset.DestroyCreatedInstances">
- <summary>
- <para>Override this method to destroy RenderPipeline cached state.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.Rendering.LODParameters">
- <summary>
- <para>LODGroup culling parameters.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.LODParameters.cameraPixelHeight">
- <summary>
- <para>Rendering view height in pixels.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.LODParameters.cameraPosition">
- <summary>
- <para>Camera position.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.LODParameters.fieldOfView">
- <summary>
- <para>Camera's field of view.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.LODParameters.isOrthographic">
- <summary>
- <para>Indicates whether camera is orthographic.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.LODParameters.orthoSize">
- <summary>
- <para>Orhographic camera size.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.Rendering.RasterState">
- <summary>
- <para>Values for the raster state.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.RasterState.cullingMode">
- <summary>
- <para>Controls which sides of polygons should be culled (not drawn).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.RasterState.depthClip">
- <summary>
- <para>Enable clipping based on depth.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.RasterState.offsetFactor">
- <summary>
- <para>Scales the maximum Z slope.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.RasterState.offsetUnits">
- <summary>
- <para>Scales the minimum resolvable depth buffer value.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.RasterState.#ctor(UnityEngine.Rendering.CullMode,System.Int32,System.Single)">
- <summary>
- <para>Creates a new raster state with the given values.</para>
- </summary>
- <param name="cullingMode">Controls which sides of polygons should be culled (not drawn).</param>
- <param name="offsetUnits">Scales the minimum resolvable depth buffer value.</param>
- <param name="offsetFactor">Scales the maximum Z slope.</param>
- <param name="depthClip"></param>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.RasterState.Default">
- <summary>
- <para>Default values for the raster state.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.Rendering.ReflectionProbeSortOptions">
- <summary>
- <para>Visible reflection probes sorting options.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.ReflectionProbeSortOptions.Importance">
- <summary>
- <para>Sort probes by importance.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.ReflectionProbeSortOptions.ImportanceThenSize">
- <summary>
- <para>Sort probes by importance, then by size.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.ReflectionProbeSortOptions.None">
- <summary>
- <para>Do not sort reflection probes.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.ReflectionProbeSortOptions.Size">
- <summary>
- <para>Sort probes from largest to smallest.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.Rendering.RendererConfiguration">
- <summary>
- <para>What kind of per-object data to setup during rendering.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.RendererConfiguration.None">
- <summary>
- <para>Do not setup any particular per-object data besides the transformation matrix.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.RendererConfiguration.PerObjectLightmaps">
- <summary>
- <para>Setup per-object lightmaps.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.RendererConfiguration.PerObjectLightProbe">
- <summary>
- <para>Setup per-object light probe SH data.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.RendererConfiguration.PerObjectLightProbeProxyVolume">
- <summary>
- <para>Setup per-object light probe proxy volume data.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.RendererConfiguration.PerObjectMotionVectors">
- <summary>
- <para>Setup per-object motion vectors.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.RendererConfiguration.PerObjectOcclusionProbe">
- <summary>
- <para>Setup per-object occlusion probe data.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.RendererConfiguration.PerObjectOcclusionProbeProxyVolume">
- <summary>
- <para>Setup per-object occlusion probe proxy volume data (occlusion in alpha channels).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.RendererConfiguration.PerObjectReflectionProbes">
- <summary>
- <para>Setup per-object reflection probe data.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.RendererConfiguration.PerObjectShadowMask">
- <summary>
- <para>Setup per-object shadowmask.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.RendererConfiguration.ProvideLightIndices">
- <summary>
- <para>Setup per-object light indices.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.Rendering.RenderPass">
- <summary>
- <para>Object encapsulating the duration of a single renderpass that contains one or more subpasses.
-
-The RenderPass object provides a new way to switch rendertargets in the context of a Scriptable Rendering Pipeline. As opposed to the SetRenderTargets function, the RenderPass object specifies a clear beginning and an end for the rendering, alongside explicit load/store actions on the rendering surfaces.
-
-The RenderPass object also allows running multiple subpasses within the same renderpass, where the pixel shaders have a read access to the current pixel value within the renderpass. This allows for efficient implementation of various rendering methods on tile-based GPUs, such as deferred rendering.
-
-RenderPasses are natively implemented on Metal (iOS) and Vulkan, but the API is fully functional on all rendering backends via emulation (using legacy SetRenderTargets calls and reading the current pixel values via texel fetches).
-
-A quick example on how to use the RenderPass API within the Scriptable Render Pipeline to implement deferred rendering:
-
-The RenderPass mechanism has the following limitations:
-- All attachments must have the same resolution and MSAA sample count
-- The rendering results of previous subpasses are only available within the same screen-space pixel
- coordinate via the UNITY_READ_FRAMEBUFFER_INPUT(x) macro in the shader; the attachments cannot be bound
- as textures or otherwise accessed until the renderpass has ended
-- iOS Metal does not allow reading from the Z-Buffer, so an additional render target is needed to work around that
-- The maximum amount of attachments allowed per RenderPass is currently 8 + depth, but note that various GPUs may
- have stricter limits.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.RenderPass.colorAttachments">
- <summary>
- <para>Read only: array of RenderPassAttachment objects currently bound into this RenderPass.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.RenderPass.context">
- <summary>
- <para>Read only: The ScriptableRenderContext object this RenderPass was created for.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.RenderPass.depthAttachment">
- <summary>
- <para>Read only: The depth/stencil attachment used in this RenderPass, or null if none.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.RenderPass.height">
- <summary>
- <para>Read only: The height of the RenderPass surfaces in pixels.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.RenderPass.sampleCount">
- <summary>
- <para>Read only: MSAA sample count for this RenderPass.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.RenderPass.width">
- <summary>
- <para>Read only: The width of the RenderPass surfaces in pixels.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.RenderPass.#ctor(UnityEngine.Experimental.Rendering.ScriptableRenderContext,System.Int32,System.Int32,System.Int32,UnityEngine.Experimental.Rendering.RenderPassAttachment[],UnityEngine.Experimental.Rendering.RenderPassAttachment)">
- <summary>
- <para>Create a RenderPass and start it within the ScriptableRenderContext.</para>
- </summary>
- <param name="ctx">The ScriptableRenderContext object currently being rendered.</param>
- <param name="w">The width of the RenderPass surfaces in pixels.</param>
- <param name="h">The height of the RenderPass surfaces in pixels.</param>
- <param name="samples">MSAA sample count; set to 1 to disable antialiasing.</param>
- <param name="colors">Array of color attachments to use within this RenderPass.</param>
- <param name="depth">The attachment to be used as the depthstencil buffer for this RenderPass, or null to disable depthstencil.</param>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.RenderPass.Dispose">
- <summary>
- <para>End the RenderPass.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.Rendering.RenderPass.SubPass">
- <summary>
- <para>This class encapsulates a single subpass within a RenderPass. RenderPasses can never be standalone, they must always contain at least one SubPass. See Also: RenderPass.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.RenderPass.SubPass.#ctor(UnityEngine.Experimental.Rendering.RenderPass,UnityEngine.Experimental.Rendering.RenderPassAttachment[],UnityEngine.Experimental.Rendering.RenderPassAttachment[],System.Boolean)">
- <summary>
- <para>Create a subpass and start it.</para>
- </summary>
- <param name="renderPass">The RenderPass object this subpass is part of.</param>
- <param name="colors">Array of attachments to be used as the color render targets in this subpass. All attachments in this array must also be declared in the RenderPass constructor.</param>
- <param name="inputs">Array of attachments to be used as input attachments in this subpass. All attachments in this array must also be declared in the RenderPass constructor.</param>
- <param name="readOnlyDepth">If true, the depth attachment is read-only in this subpass. Some renderers require this in order to be able to use the depth attachment as input.</param>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.RenderPass.SubPass.Dispose">
- <summary>
- <para>End the subpass.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.Rendering.RenderPassAttachment">
- <summary>
- <para>A declaration of a single color or depth rendering surface to be attached into a RenderPass.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.RenderPassAttachment.clearColor">
- <summary>
- <para>The currently assigned clear color for this attachment. Default is black.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.RenderPassAttachment.clearDepth">
- <summary>
- <para>Currently assigned depth clear value for this attachment. Default value is 1.0.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.RenderPassAttachment.clearStencil">
- <summary>
- <para>Currently assigned stencil clear value for this attachment. Default is 0.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.RenderPassAttachment.format">
- <summary>
- <para>The RenderTextureFormat of this attachment.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.RenderPassAttachment.loadAction">
- <summary>
- <para>The load action to be used on this attachment when the RenderPass starts.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.RenderPassAttachment.storeAction">
- <summary>
- <para>The store action to use with this attachment when the RenderPass ends. Only used when either BindSurface or BindResolveSurface has been called.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.RenderPassAttachment.BindResolveSurface(UnityEngine.Rendering.RenderTargetIdentifier)">
- <summary>
- <para>When the renderpass that uses this attachment ends, resolve the MSAA surface into the given target.</para>
- </summary>
- <param name="tgt">The target surface to receive the MSAA-resolved pixels.</param>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.RenderPassAttachment.BindSurface(UnityEngine.Rendering.RenderTargetIdentifier,System.Boolean,System.Boolean)">
- <summary>
- <para>Binds this RenderPassAttachment to the given target surface.</para>
- </summary>
- <param name="tgt">The surface to use as the backing storage for this RenderPassAttachment.</param>
- <param name="loadExistingContents">Whether to read in the existing contents of the surface when the RenderPass starts.</param>
- <param name="storeResults">Whether to store the rendering results of the attachment when the RenderPass ends.</param>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.RenderPassAttachment.Clear(UnityEngine.Color,System.Single,System.UInt32)">
- <summary>
- <para>When the RenderPass starts, clear this attachment into the color or depth/stencil values given (depending on the format of this attachment). Changes loadAction to RenderBufferLoadAction.Clear.</para>
- </summary>
- <param name="clearCol">Color clear value. Ignored on depth/stencil attachments.</param>
- <param name="clearDep">Depth clear value. Ignored on color surfaces.</param>
- <param name="clearStenc">Stencil clear value. Ignored on color or depth-only surfaces.</param>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.RenderPassAttachment.#ctor(UnityEngine.RenderTextureFormat)">
- <summary>
- <para>Create a RenderPassAttachment to be used with RenderPass.</para>
- </summary>
- <param name="fmt">The format of this attachment.</param>
- </member>
- <member name="T:UnityEngine.Experimental.Rendering.RenderPipeline">
- <summary>
- <para>Defines a series of commands and settings that describes how Unity renders a frame.</para>
- </summary>
- </member>
- <member name="?:UnityEngine.Experimental.Rendering.RenderPipeline.beginCameraRendering(System.Action`1&lt;UnityEngine.Camera&gt;)">
- <summary>
- <para>Call that should be issued by an SRP when the SRP begins to render a Camera so that other systems can inject per camera render logic.</para>
- </summary>
- <param name="value"></param>
- </member>
- <member name="?:UnityEngine.Experimental.Rendering.RenderPipeline.beginFrameRendering(System.Action`1&lt;UnityEngine.Camera[]&gt;)">
- <summary>
- <para>Call that should be issued by an SRP when the SRP begins to render so that other systems can inject 'pre render' logic.</para>
- </summary>
- <param name="value"></param>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.RenderPipeline.disposed">
- <summary>
- <para>When the IRenderPipeline is invalid or destroyed this returns true.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.RenderPipeline.BeginCameraRendering(UnityEngine.Camera)">
- <summary>
- <para>Call the delegate used during SRP rendering before a single camera starts rendering.</para>
- </summary>
- <param name="camera"></param>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.RenderPipeline.BeginFrameRendering(UnityEngine.Camera[])">
- <summary>
- <para>Call the delegate used during SRP rendering before a render begins.</para>
- </summary>
- <param name="cameras"></param>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.RenderPipeline.Dispose">
- <summary>
- <para>Dispose the Renderpipeline destroying all internal state.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.RenderPipeline.Render(UnityEngine.Experimental.Rendering.ScriptableRenderContext,UnityEngine.Camera[])">
- <summary>
- <para>Defines custom rendering for this RenderPipeline.</para>
- </summary>
- <param name="renderContext"></param>
- <param name="cameras"></param>
- </member>
- <member name="T:UnityEngine.Experimental.Rendering.RenderPipelineAsset">
- <summary>
- <para>An asset that produces a specific IRenderPipeline.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.RenderPipelineAsset.CreatedInstances">
- <summary>
- <para>Returns the list of current IRenderPipeline's created by the asset.</para>
- </summary>
- <returns>
- <para>Enumerable of created pipelines.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.RenderPipelineAsset.CreatePipeline">
- <summary>
- <para>Create a IRenderPipeline specific to this asset.</para>
- </summary>
- <returns>
- <para>Created pipeline.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.RenderPipelineAsset.DestroyCreatedInstances">
- <summary>
- <para>Destroys all cached data and created IRenderLoop's.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.RenderPipelineAsset.GetDefault2DMaterial">
- <summary>
- <para>Return the default 2D Material for this pipeline.</para>
- </summary>
- <returns>
- <para>Default material.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.RenderPipelineAsset.GetDefaultLineMaterial">
- <summary>
- <para>Return the default Line Material for this pipeline.</para>
- </summary>
- <returns>
- <para>Default material.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.RenderPipelineAsset.GetDefaultMaterial">
- <summary>
- <para>Return the default Material for this pipeline.</para>
- </summary>
- <returns>
- <para>Default material.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.RenderPipelineAsset.GetDefaultParticleMaterial">
- <summary>
- <para>Return the default particle Material for this pipeline.</para>
- </summary>
- <returns>
- <para>Default material.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.RenderPipelineAsset.GetDefaultShader">
- <summary>
- <para>Return the default Shader for this pipeline.</para>
- </summary>
- <returns>
- <para>Default shader.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.RenderPipelineAsset.GetDefaultTerrainMaterial">
- <summary>
- <para>Return the default Terrain Material for this pipeline.</para>
- </summary>
- <returns>
- <para>Default material.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.RenderPipelineAsset.GetDefaultUIETC1SupportedMaterial">
- <summary>
- <para>Return the default UI ETC1 Material for this pipeline.</para>
- </summary>
- <returns>
- <para>Default material.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.RenderPipelineAsset.GetDefaultUIMaterial">
- <summary>
- <para>Return the default UI Material for this pipeline.</para>
- </summary>
- <returns>
- <para>Default material.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.RenderPipelineAsset.GetDefaultUIOverdrawMaterial">
- <summary>
- <para>Return the default UI overdraw Material for this pipeline.</para>
- </summary>
- <returns>
- <para>Default material.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.RenderPipelineAsset.InternalCreatePipeline">
- <summary>
- <para>Create a IRenderPipeline specific to this asset.</para>
- </summary>
- <returns>
- <para>Created pipeline.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.RenderPipelineAsset.OnDisable">
- <summary>
- <para>Default implementation of OnDisable for RenderPipelineAsset. See ScriptableObject.OnDisable</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.RenderPipelineAsset.OnValidate">
- <summary>
- <para>Default implementation of OnValidate for RenderPipelineAsset. See MonoBehaviour.OnValidate</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.Rendering.RenderPipelineManager">
- <summary>
- <para>Render Pipeline manager.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.RenderPipelineManager.currentPipeline">
- <summary>
- <para>Returns the instance of the currently used Render Pipeline.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.Rendering.RenderQueueRange">
- <summary>
- <para>Describes a material render queue range.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.RenderQueueRange.all">
- <summary>
- <para>A range that includes all objects.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.RenderQueueRange.max">
- <summary>
- <para>Inclusive upper bound for the range.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.RenderQueueRange.min">
- <summary>
- <para>Inclusive lower bound for the range.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.RenderQueueRange.opaque">
- <summary>
- <para>A range that includes only opaque objects.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.RenderQueueRange.transparent">
- <summary>
- <para>A range that includes only transparent objects.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.Rendering.RenderStateBlock">
- <summary>
- <para>A set of values used to override the render state. Note that it is not enough to set e.g. blendState, but that mask must also include RenderStateMask.Blend for the override to occur.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.RenderStateBlock.blendState">
- <summary>
- <para>Specifies the new blend state.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.RenderStateBlock.depthState">
- <summary>
- <para>Specifies the new depth state.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.RenderStateBlock.mask">
- <summary>
- <para>Specifies which parts of the render state that is overriden.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.RenderStateBlock.rasterState">
- <summary>
- <para>Specifies the new raster state.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.RenderStateBlock.stencilReference">
- <summary>
- <para>The value to be compared against and/or the value to be written to the buffer based on the stencil state.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.RenderStateBlock.stencilState">
- <summary>
- <para>Specifies the new stencil state.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.RenderStateBlock.#ctor(UnityEngine.Experimental.Rendering.RenderStateMask)">
- <summary>
- <para>Creates a new render state block with the specified mask.</para>
- </summary>
- <param name="mask">Specifies which parts of the render state that is overriden.</param>
- </member>
- <member name="T:UnityEngine.Experimental.Rendering.RenderStateMapping">
- <summary>
- <para>Maps a RenderType to a specific render state override.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.RenderStateMapping.renderType">
- <summary>
- <para>Specifices the RenderType to override the render state for.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.RenderStateMapping.stateBlock">
- <summary>
- <para>Specifies the values to override the render state with.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.RenderStateMapping.#ctor(UnityEngine.Experimental.Rendering.RenderStateBlock)">
- <summary>
- <para>Creates a new render state mapping with the specified values.</para>
- </summary>
- <param name="renderType">Specifices the RenderType to override the render state for.</param>
- <param name="stateBlock">Specifies the values to override the render state with.</param>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.RenderStateMapping.#ctor(System.String,UnityEngine.Experimental.Rendering.RenderStateBlock)">
- <summary>
- <para>Creates a new render state mapping with the specified values.</para>
- </summary>
- <param name="renderType">Specifices the RenderType to override the render state for.</param>
- <param name="stateBlock">Specifies the values to override the render state with.</param>
- </member>
- <member name="T:UnityEngine.Experimental.Rendering.RenderStateMask">
- <summary>
- <para>Specifies which parts of the render state that is overriden.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.RenderStateMask.Blend">
- <summary>
- <para>When set, the blend state is overridden.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.RenderStateMask.Depth">
- <summary>
- <para>When set, the depth state is overridden.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.RenderStateMask.Everything">
- <summary>
- <para>When set, all render states are overridden.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.RenderStateMask.Nothing">
- <summary>
- <para>No render states are overridden.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.RenderStateMask.Raster">
- <summary>
- <para>When set, the raster state is overridden.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.RenderStateMask.Stencil">
- <summary>
- <para>When set, the stencil state and reference value is overridden.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.Rendering.RenderTargetBlendState">
- <summary>
- <para>Values for the blend state.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.RenderTargetBlendState.alphaBlendOperation">
- <summary>
- <para>Operation used for blending the alpha (A) channel.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.RenderTargetBlendState.colorBlendOperation">
- <summary>
- <para>Operation used for blending the color (RGB) channel.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.RenderTargetBlendState.destinationAlphaBlendMode">
- <summary>
- <para>Blend factor used for the alpha (A) channel of the destination.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.RenderTargetBlendState.destinationColorBlendMode">
- <summary>
- <para>Blend factor used for the color (RGB) channel of the destination.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.RenderTargetBlendState.sourceAlphaBlendMode">
- <summary>
- <para>Blend factor used for the alpha (A) channel of the source.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.RenderTargetBlendState.sourceColorBlendMode">
- <summary>
- <para>Blend factor used for the color (RGB) channel of the source.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.RenderTargetBlendState.writeMask">
- <summary>
- <para>Specifies which color components will get written into the target framebuffer.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.RenderTargetBlendState.#ctor(UnityEngine.Rendering.ColorWriteMask,UnityEngine.Rendering.BlendMode,UnityEngine.Rendering.BlendMode,UnityEngine.Rendering.BlendMode,UnityEngine.Rendering.BlendMode,UnityEngine.Rendering.BlendOp,UnityEngine.Rendering.BlendOp)">
- <summary>
- <para>Creates a new blend state with the given values.</para>
- </summary>
- <param name="writeMask">Specifies which color components will get written into the target framebuffer.</param>
- <param name="sourceColorBlendMode">Blend factor used for the color (RGB) channel of the source.</param>
- <param name="destinationColorBlendMode">Blend factor used for the color (RGB) channel of the destination.</param>
- <param name="sourceAlphaBlendMode">Blend factor used for the alpha (A) channel of the source.</param>
- <param name="destinationAlphaBlendMode">Blend factor used for the alpha (A) channel of the destination.</param>
- <param name="colorBlendOperation">Operation used for blending the color (RGB) channel.</param>
- <param name="alphaBlendOperation">Operation used for blending the alpha (A) channel.</param>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.RenderTargetBlendState.Default">
- <summary>
- <para>Default values for the blend state.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.Rendering.ScriptableCullingParameters">
- <summary>
- <para>Parameters controlling culling process in CullResults.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.ScriptableCullingParameters.cameraProperties">
- <summary>
- <para>Camera Properties used for culling.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.ScriptableCullingParameters.cullingFlags">
- <summary>
- <para>Culling Flags for the culling.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.ScriptableCullingParameters.cullingMask">
- <summary>
- <para>CullingMask used for culling.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.ScriptableCullingParameters.cullingMatrix">
- <summary>
- <para>CullingMatrix used for culling.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.ScriptableCullingParameters.cullingPlaneCount">
- <summary>
- <para>Number of culling planes to use.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.ScriptableCullingParameters.cullStereoProj">
- <summary>
- <para>The projection matrix generated for single-pass stereo culling.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.ScriptableCullingParameters.cullStereoSeparation">
- <summary>
- <para>Distance between the virtual eyes.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.ScriptableCullingParameters.cullStereoView">
- <summary>
- <para>The view matrix generated for single-pass stereo culling.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.ScriptableCullingParameters.isOrthographic">
- <summary>
- <para>Is the cull orthographic.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.ScriptableCullingParameters.layerCull">
- <summary>
- <para>Layers to cull.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.ScriptableCullingParameters.lodParameters">
- <summary>
- <para>LODParameters for culling.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.ScriptableCullingParameters.position">
- <summary>
- <para>Position for the origin of th cull.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.ScriptableCullingParameters.reflectionProbeSortOptions">
- <summary>
- <para>Reflection Probe Sort options for the cull.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.ScriptableCullingParameters.sceneMask">
- <summary>
- <para>Scene Mask to use for the cull.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.ScriptableCullingParameters.shadowDistance">
- <summary>
- <para>Shadow distance to use for the cull.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.ScriptableCullingParameters.GetCullingPlane(System.Int32)">
- <summary>
- <para>Fetch the culling plane at the given index.</para>
- </summary>
- <param name="index"></param>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.ScriptableCullingParameters.GetLayerCullDistance(System.Int32)">
- <summary>
- <para>Get the distance for the culling of a specific layer.</para>
- </summary>
- <param name="layerIndex"></param>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.ScriptableCullingParameters.SetCullingPlane(System.Int32,UnityEngine.Plane)">
- <summary>
- <para>Set the culling plane at a given index.</para>
- </summary>
- <param name="index"></param>
- <param name="plane"></param>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.ScriptableCullingParameters.SetLayerCullDistance(System.Int32,System.Single)">
- <summary>
- <para>Set the distance for the culling of a specific layer.</para>
- </summary>
- <param name="layerIndex"></param>
- <param name="distance"></param>
- </member>
- <member name="T:UnityEngine.Experimental.Rendering.ScriptableRenderContext">
- <summary>
- <para>Defines state and drawing commands used in a custom render pipelines.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.ScriptableRenderContext.DrawRenderers(UnityEngine.Experimental.Rendering.FilterResults,UnityEngine.Experimental.Rendering.DrawRendererSettings&amp;,UnityEngine.Experimental.Rendering.FilterRenderersSettings)">
- <summary>
- <para>Draw subset of visible objects.</para>
- </summary>
- <param name="stateBlock">Specifies parts of the render state to override.</param>
- <param name="stateMap">Specifies parts of the render state to override for specific render types.</param>
- <param name="renderers">Specifies which set of visible objects to draw.</param>
- <param name="drawSettings">Specifies how to draw the objects.</param>
- <param name="filterSettings">Specifies how the renderers should be further filtered.</param>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.ScriptableRenderContext.DrawRenderers(UnityEngine.Experimental.Rendering.FilterResults,UnityEngine.Experimental.Rendering.DrawRendererSettings&amp;,UnityEngine.Experimental.Rendering.FilterRenderersSettings,UnityEngine.Experimental.Rendering.RenderStateBlock)">
- <summary>
- <para>Draw subset of visible objects.</para>
- </summary>
- <param name="stateBlock">Specifies parts of the render state to override.</param>
- <param name="stateMap">Specifies parts of the render state to override for specific render types.</param>
- <param name="renderers">Specifies which set of visible objects to draw.</param>
- <param name="drawSettings">Specifies how to draw the objects.</param>
- <param name="filterSettings">Specifies how the renderers should be further filtered.</param>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.ScriptableRenderContext.DrawRenderers(UnityEngine.Experimental.Rendering.FilterResults,UnityEngine.Experimental.Rendering.DrawRendererSettings&amp;,UnityEngine.Experimental.Rendering.FilterRenderersSettings,System.Collections.Generic.List`1&lt;UnityEngine.Experimental.Rendering.RenderStateMapping&gt;)">
- <summary>
- <para>Draw subset of visible objects.</para>
- </summary>
- <param name="stateBlock">Specifies parts of the render state to override.</param>
- <param name="stateMap">Specifies parts of the render state to override for specific render types.</param>
- <param name="renderers">Specifies which set of visible objects to draw.</param>
- <param name="drawSettings">Specifies how to draw the objects.</param>
- <param name="filterSettings">Specifies how the renderers should be further filtered.</param>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.ScriptableRenderContext.DrawShadows(UnityEngine.Experimental.Rendering.DrawShadowsSettings&amp;)">
- <summary>
- <para>Draw shadow casters for a single light.</para>
- </summary>
- <param name="settings">Specifies which set of shadow casters to draw, and how to draw them.</param>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.ScriptableRenderContext.DrawSkybox(UnityEngine.Camera)">
- <summary>
- <para>Draw skybox.</para>
- </summary>
- <param name="camera">Camera to draw the skybox for.</param>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.ScriptableRenderContext.ExecuteCommandBuffer(UnityEngine.Rendering.CommandBuffer)">
- <summary>
- <para>Execute a custom graphics command buffer.</para>
- </summary>
- <param name="commandBuffer">Command buffer to execute.</param>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.ScriptableRenderContext.ExecuteCommandBufferAsync(UnityEngine.Rendering.CommandBuffer,UnityEngine.Rendering.ComputeQueueType)">
- <summary>
- <para>Executes a command buffer on an async compute queue with the queue selected based on the ComputeQueueType parameter passed.
-
-It is required that all of the commands within the command buffer be of a type suitable for execution on the async compute queues. If the buffer contains any commands that are not appropriate then an error will be logged and displayed in the editor window. Specifically the following commands are permitted in a CommandBuffer intended for async execution:
-
-CommandBuffer.BeginSample
-
-CommandBuffer.CopyCounterValue
-
-CommandBuffer.CopyTexture
-
-CommandBuffer.CreateGPUFence
-
-CommandBuffer.DispatchCompute
-
-CommandBuffer.EndSample
-
-CommandBuffer.IssuePluginEvent
-
-CommandBuffer.SetComputeBufferParam
-
-CommandBuffer.SetComputeFloatParam
-
-CommandBuffer.SetComputeFloatParams
-
-CommandBuffer.SetComputeTextureParam
-
-CommandBuffer.SetComputeVectorParam
-
-CommandBuffer.WaitOnGPUFence
-
-All of the commands within the buffer are guaranteed to be executed on the same queue. If the target platform does not support async compute queues then the work is dispatched on the graphics queue.</para>
- </summary>
- <param name="commandBuffer">The CommandBuffer to be executed.</param>
- <param name="queueType">Describes the desired async compute queue the supplied CommandBuffer should be executed on.</param>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.ScriptableRenderContext.SetupCameraProperties(UnityEngine.Camera)">
- <summary>
- <para>Setup camera specific global shader variables.</para>
- </summary>
- <param name="camera">Camera to setup shader variables for.</param>
- <param name="stereoSetup">Set up the stereo shader variables and state.</param>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.ScriptableRenderContext.SetupCameraProperties(UnityEngine.Camera,System.Boolean)">
- <summary>
- <para>Setup camera specific global shader variables.</para>
- </summary>
- <param name="camera">Camera to setup shader variables for.</param>
- <param name="stereoSetup">Set up the stereo shader variables and state.</param>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.ScriptableRenderContext.StartMultiEye(UnityEngine.Camera)">
- <summary>
- <para>Fine-grain control to begin stereo rendering on the scriptable render context.</para>
- </summary>
- <param name="camera">Camera to enable stereo rendering on.</param>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.ScriptableRenderContext.StereoEndRender(UnityEngine.Camera)">
- <summary>
- <para>Indicate completion of stereo rendering on a single frame.</para>
- </summary>
- <param name="camera">Camera to indicate completion of stereo rendering.</param>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.ScriptableRenderContext.StopMultiEye(UnityEngine.Camera)">
- <summary>
- <para>Stop stereo rendering on the scriptable render context.</para>
- </summary>
- <param name="camera">Camera to disable stereo rendering on.</param>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.ScriptableRenderContext.Submit">
- <summary>
- <para>Submit rendering loop for execution.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.Rendering.ShaderPassName">
- <summary>
- <para>Shader pass name identifier.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.ShaderPassName.#ctor(System.String)">
- <summary>
- <para>Create shader pass name identifier.</para>
- </summary>
- <param name="name">Pass name.</param>
- </member>
- <member name="T:UnityEngine.Experimental.Rendering.ShadowSplitData">
- <summary>
- <para>Describes the culling information for a given shadow split (e.g. directional cascade).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.ShadowSplitData.cullingPlaneCount">
- <summary>
- <para>The number of culling planes.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.ShadowSplitData.cullingSphere">
- <summary>
- <para>The culling sphere. The first three components of the vector describe the sphere center, and the last component specifies the radius.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.ShadowSplitData.GetCullingPlane(System.Int32)">
- <summary>
- <para>Gets a culling plane.</para>
- </summary>
- <param name="index">The culling plane index.</param>
- <returns>
- <para>The culling plane.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.ShadowSplitData.SetCullingPlane(System.Int32,UnityEngine.Plane)">
- <summary>
- <para>Sets a culling plane.</para>
- </summary>
- <param name="index">The index of the culling plane to set.</param>
- <param name="plane">The culling plane.</param>
- </member>
- <member name="T:UnityEngine.Experimental.Rendering.SortFlags">
- <summary>
- <para>How to sort objects during rendering.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.SortFlags.BackToFront">
- <summary>
- <para>Sort objects back to front.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.SortFlags.CanvasOrder">
- <summary>
- <para>Sort renderers taking canvas order into account.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.SortFlags.CommonOpaque">
- <summary>
- <para>Typical sorting for opaque objects.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.SortFlags.CommonTransparent">
- <summary>
- <para>Typical sorting for transparencies.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.SortFlags.None">
- <summary>
- <para>Do not sort objects.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.SortFlags.OptimizeStateChanges">
- <summary>
- <para>Sort objects to reduce draw state changes.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.SortFlags.QuantizedFrontToBack">
- <summary>
- <para>Sort objects in rough front-to-back buckets.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.SortFlags.RenderQueue">
- <summary>
- <para>Sort by material render queue.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.SortFlags.SortingLayer">
- <summary>
- <para>Sort by renderer sorting layer.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.Rendering.StencilState">
- <summary>
- <para>Values for the stencil state.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.StencilState.compareFunction">
- <summary>
- <para>The function used to compare the reference value to the current contents of the buffer.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.StencilState.compareFunctionBack">
- <summary>
- <para>The function used to compare the reference value to the current contents of the buffer for back-facing geometry.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.StencilState.compareFunctionFront">
- <summary>
- <para>The function used to compare the reference value to the current contents of the buffer for front-facing geometry.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.StencilState.enabled">
- <summary>
- <para>Controls whether the stencil buffer is enabled.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.StencilState.failOperation">
- <summary>
- <para>What to do with the contents of the buffer if the stencil test fails.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.StencilState.failOperationBack">
- <summary>
- <para>What to do with the contents of the buffer if the stencil test fails for back-facing geometry.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.StencilState.failOperationFront">
- <summary>
- <para>What to do with the contents of the buffer if the stencil test fails for front-facing geometry.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.StencilState.passOperation">
- <summary>
- <para>What to do with the contents of the buffer if the stencil test (and the depth test) passes.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.StencilState.passOperationBack">
- <summary>
- <para>What to do with the contents of the buffer if the stencil test (and the depth test) passes for back-facing geometry.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.StencilState.passOperationFront">
- <summary>
- <para>What to do with the contents of the buffer if the stencil test (and the depth test) passes for front-facing geometry.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.StencilState.readMask">
- <summary>
- <para>An 8 bit mask as an 0–255 integer, used when comparing the reference value with the contents of the buffer.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.StencilState.writeMask">
- <summary>
- <para>An 8 bit mask as an 0–255 integer, used when writing to the buffer.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.StencilState.zFailOperation">
- <summary>
- <para>What to do with the contents of the buffer if the stencil test passes, but the depth test fails.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.StencilState.zFailOperationBack">
- <summary>
- <para>What to do with the contents of the buffer if the stencil test passes, but the depth test fails for back-facing geometry.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.StencilState.zFailOperationFront">
- <summary>
- <para>What to do with the contents of the buffer if the stencil test passes, but the depth test fails for front-facing geometry.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.StencilState.#ctor(System.Boolean,System.Byte,System.Byte,UnityEngine.Rendering.CompareFunction,UnityEngine.Rendering.StencilOp,UnityEngine.Rendering.StencilOp,UnityEngine.Rendering.StencilOp)">
- <summary>
- <para>Creates a new stencil state with the given values.</para>
- </summary>
- <param name="readMask">An 8 bit mask as an 0–255 integer, used when comparing the reference value with the contents of the buffer.</param>
- <param name="writeMask">An 8 bit mask as an 0–255 integer, used when writing to the buffer.</param>
- <param name="enabled">Controls whether the stencil buffer is enabled.</param>
- <param name="compareFunctionFront">The function used to compare the reference value to the current contents of the buffer for front-facing geometry.</param>
- <param name="passOperationFront">What to do with the contents of the buffer if the stencil test (and the depth test) passes for front-facing geometry.</param>
- <param name="failOperationFront">What to do with the contents of the buffer if the stencil test fails for front-facing geometry.</param>
- <param name="zFailOperationFront">What to do with the contents of the buffer if the stencil test passes, but the depth test fails for front-facing geometry.</param>
- <param name="compareFunctionBack">The function used to compare the reference value to the current contents of the buffer for back-facing geometry.</param>
- <param name="passOperationBack">What to do with the contents of the buffer if the stencil test (and the depth test) passes for back-facing geometry.</param>
- <param name="failOperationBack">What to do with the contents of the buffer if the stencil test fails for back-facing geometry.</param>
- <param name="zFailOperationBack">What to do with the contents of the buffer if the stencil test passes, but the depth test fails for back-facing geometry.</param>
- <param name="compareFunction">The function used to compare the reference value to the current contents of the buffer.</param>
- <param name="passOperation">What to do with the contents of the buffer if the stencil test (and the depth test) passes.</param>
- <param name="failOperation">What to do with the contents of the buffer if the stencil test fails.</param>
- <param name="zFailOperation">What to do with the contents of the buffer if the stencil test passes, but the depth test.</param>
- </member>
- <member name="M:UnityEngine.Experimental.Rendering.StencilState.#ctor(System.Boolean,System.Byte,System.Byte,UnityEngine.Rendering.CompareFunction,UnityEngine.Rendering.StencilOp,UnityEngine.Rendering.StencilOp,UnityEngine.Rendering.StencilOp,UnityEngine.Rendering.CompareFunction,UnityEngine.Rendering.StencilOp,UnityEngine.Rendering.StencilOp,UnityEngine.Rendering.StencilOp)">
- <summary>
- <para>Creates a new stencil state with the given values.</para>
- </summary>
- <param name="readMask">An 8 bit mask as an 0–255 integer, used when comparing the reference value with the contents of the buffer.</param>
- <param name="writeMask">An 8 bit mask as an 0–255 integer, used when writing to the buffer.</param>
- <param name="enabled">Controls whether the stencil buffer is enabled.</param>
- <param name="compareFunctionFront">The function used to compare the reference value to the current contents of the buffer for front-facing geometry.</param>
- <param name="passOperationFront">What to do with the contents of the buffer if the stencil test (and the depth test) passes for front-facing geometry.</param>
- <param name="failOperationFront">What to do with the contents of the buffer if the stencil test fails for front-facing geometry.</param>
- <param name="zFailOperationFront">What to do with the contents of the buffer if the stencil test passes, but the depth test fails for front-facing geometry.</param>
- <param name="compareFunctionBack">The function used to compare the reference value to the current contents of the buffer for back-facing geometry.</param>
- <param name="passOperationBack">What to do with the contents of the buffer if the stencil test (and the depth test) passes for back-facing geometry.</param>
- <param name="failOperationBack">What to do with the contents of the buffer if the stencil test fails for back-facing geometry.</param>
- <param name="zFailOperationBack">What to do with the contents of the buffer if the stencil test passes, but the depth test fails for back-facing geometry.</param>
- <param name="compareFunction">The function used to compare the reference value to the current contents of the buffer.</param>
- <param name="passOperation">What to do with the contents of the buffer if the stencil test (and the depth test) passes.</param>
- <param name="failOperation">What to do with the contents of the buffer if the stencil test fails.</param>
- <param name="zFailOperation">What to do with the contents of the buffer if the stencil test passes, but the depth test.</param>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.StencilState.Default">
- <summary>
- <para>Default values for the stencil state.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.Rendering.SupportedRenderingFeatures">
- <summary>
- <para>Describes the rendering features supported by a given render pipeline.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.SupportedRenderingFeatures.active">
- <summary>
- <para>Get / Set a SupportedRenderingFeatures.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.SupportedRenderingFeatures.defaultMixedLightingMode">
- <summary>
- <para>This is the fallback mode if the mode the user had previously selected is no longer available. See SupportedRenderingFeatures.supportedMixedLightingModes.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.SupportedRenderingFeatures.reflectionProbeSupportFlags">
- <summary>
- <para>Flags for supported reflection probes.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.SupportedRenderingFeatures.rendererSupportsLightProbeProxyVolumes">
- <summary>
- <para>Are light probe proxy volumes supported?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.SupportedRenderingFeatures.rendererSupportsMotionVectors">
- <summary>
- <para>Are motion vectors supported?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.SupportedRenderingFeatures.rendererSupportsReceiveShadows">
- <summary>
- <para>Can renderers support receiving shadows?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.SupportedRenderingFeatures.rendererSupportsReflectionProbes">
- <summary>
- <para>Are reflection probes supported?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.SupportedRenderingFeatures.supportedLightmapBakeTypes">
- <summary>
- <para>What baking types are supported. The unsupported ones will be hidden from the UI. See LightmapBakeType.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.SupportedRenderingFeatures.supportedLightmapsModes">
- <summary>
- <para>Specifies what modes are supported. Has to be at least one. See LightmapsMode.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.SupportedRenderingFeatures.supportedMixedLightingModes">
- <summary>
- <para>Specifies what LightmapMixedBakeMode that are supported. Please define a SupportedRenderingFeatures.defaultMixedLightingMode in case multiple modes are supported.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.Rendering.SupportedRenderingFeatures.LightmapMixedBakeMode">
- <summary>
- <para>Same as MixedLightingMode for baking, but is used to determine what is supported by the pipeline.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.SupportedRenderingFeatures.LightmapMixedBakeMode.IndirectOnly">
- <summary>
- <para>Same as MixedLightingMode.IndirectOnly but determines if it is supported by the pipeline.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.SupportedRenderingFeatures.LightmapMixedBakeMode.None">
- <summary>
- <para>No mode is supported.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.SupportedRenderingFeatures.LightmapMixedBakeMode.Shadowmask">
- <summary>
- <para>Same as MixedLightingMode.Shadowmask but determines if it is supported by the pipeline.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.SupportedRenderingFeatures.LightmapMixedBakeMode.Subtractive">
- <summary>
- <para>Same as MixedLightingMode.Subtractive but determines if it is supported by the pipeline.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.Rendering.SupportedRenderingFeatures.ReflectionProbeSupportFlags">
- <summary>
- <para>Supported modes for ReflectionProbes.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.SupportedRenderingFeatures.ReflectionProbeSupportFlags.None">
- <summary>
- <para>Default reflection probe support.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.SupportedRenderingFeatures.ReflectionProbeSupportFlags.Rotation">
- <summary>
- <para>Rotated reflection probes are supported.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.Rendering.VertexAttribute">
- <summary>
- <para>A list of data channels that describe a vertex in a mesh.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.VertexAttribute.Color">
- <summary>
- <para>The color channel.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.VertexAttribute.Normal">
- <summary>
- <para>The normal channel. The common format is Vector3.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.VertexAttribute.Position">
- <summary>
- <para>The position channel. The common format is Vector3.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.VertexAttribute.Tangent">
- <summary>
- <para>The tangent channel. The common format is Vector4.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.VertexAttribute.TexCoord0">
- <summary>
- <para>The primary UV channel. The common format is Vector2.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.VertexAttribute.TexCoord1">
- <summary>
- <para>Additional UV channel. The common format is Vector2.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.VertexAttribute.TexCoord2">
- <summary>
- <para>Additional UV channel. The common format is Vector2.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.VertexAttribute.TexCoord3">
- <summary>
- <para>Additional UV channel. The common format is Vector2.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.VertexAttribute.TexCoord4">
- <summary>
- <para>Additional UV channel. The common format is Vector2.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.VertexAttribute.TexCoord5">
- <summary>
- <para>Additional UV channel. The common format is Vector2.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.VertexAttribute.TexCoord6">
- <summary>
- <para>Additional UV channel. The common format is Vector2.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.VertexAttribute.TexCoord7">
- <summary>
- <para>Additional UV channel. The common format is Vector2.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.Rendering.VisibleLight">
- <summary>
- <para>Holds data of a visible light.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.VisibleLight.finalColor">
- <summary>
- <para>Light color multiplied by intensity.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.VisibleLight.flags">
- <summary>
- <para>Light flags, see VisibleLightFlags.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.VisibleLight.light">
- <summary>
- <para>Accessor to Light component.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.VisibleLight.lightType">
- <summary>
- <para>Light type.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.VisibleLight.localToWorld">
- <summary>
- <para>Light transformation matrix.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.VisibleLight.range">
- <summary>
- <para>Light range.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.VisibleLight.screenRect">
- <summary>
- <para>Light's influence rectangle on screen.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.VisibleLight.spotAngle">
- <summary>
- <para>Spot light angle.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.Rendering.VisibleLightFlags">
- <summary>
- <para>Flags for VisibleLight.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.VisibleLightFlags.IntersectsFarPlane">
- <summary>
- <para>Light intersects far clipping plane.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.VisibleLightFlags.IntersectsNearPlane">
- <summary>
- <para>Light intersects near clipping plane.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.VisibleLightFlags.None">
- <summary>
- <para>No flags are set.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.Rendering.VisibleReflectionProbe">
- <summary>
- <para>Holds data of a visible reflection probe.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.VisibleReflectionProbe.blendDistance">
- <summary>
- <para>Probe blending distance.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.VisibleReflectionProbe.bounds">
- <summary>
- <para>Probe bounding box.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.VisibleReflectionProbe.boxProjection">
- <summary>
- <para>Should probe use box projection.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.VisibleReflectionProbe.center">
- <summary>
- <para>Probe projection center.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.VisibleReflectionProbe.hdr">
- <summary>
- <para>Shader data for probe HDR texture decoding.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.VisibleReflectionProbe.importance">
- <summary>
- <para>Probe importance.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.Rendering.VisibleReflectionProbe.localToWorld">
- <summary>
- <para>Probe transformation matrix.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.VisibleReflectionProbe.probe">
- <summary>
- <para>Accessor to ReflectionProbe component.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.Rendering.VisibleReflectionProbe.texture">
- <summary>
- <para>Probe texture.</para>
- </summary>
- </member>
- <member name="T:UnityEditor.Experimental.RenderSettings">
- <summary>
- <para>Experimental render settings features.</para>
- </summary>
- </member>
- <member name="P:UnityEditor.Experimental.RenderSettings.useRadianceAmbientProbe">
- <summary>
- <para>If enabled, ambient trilight will be sampled using the old radiance sampling method.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.U2D.PixelPerfectRendering">
- <summary>
- <para>A collection of APIs that facilitate pixel perfect rendering of sprite-based renderers.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.U2D.PixelPerfectRendering.pixelSnapSpacing">
- <summary>
- <para>To achieve a pixel perfect render, Sprites must be displaced to discrete positions at render time. This value defines the minimum distance between these positions. This doesn’t affect the GameObject's transform position.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.U2D.SpriteBone">
- <summary>
- <para>A struct that holds a rich set of information that describes the bind pose of this Sprite.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.U2D.SpriteBone.length">
- <summary>
- <para>The length of the bone. This is important for the leaf bones to describe their length without needing another bone as the terminal bone.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.U2D.SpriteBone.name">
- <summary>
- <para>The name of the bone. This is useful when recreating bone hierarchy at editor or runtime. You can also use this as a way of resolving the bone path when a Sprite is bound to a more complex or richer hierarchy.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.U2D.SpriteBone.parentId">
- <summary>
- <para>The ID of the parent of this bone.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.U2D.SpriteBone.position">
- <summary>
- <para>The position in local space of this bone.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.U2D.SpriteBone.rotation">
- <summary>
- <para>The rotation of this bone in local space.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.U2D.SpriteDataAccessExtensions">
- <summary>
- <para>A list of methods designed for reading and writing to the rich internal data of a Sprite.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.U2D.SpriteDataAccessExtensions.GetBindPoses(UnityEngine.Sprite)">
- <summary>
- <para>Returns an array of BindPoses.</para>
- </summary>
- <param name="sprite">The sprite to retrieve the bind pose from.</param>
- <returns>
- <para>A list of bind poses for this sprite. There is no need to dispose the returned NativeArray.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.U2D.SpriteDataAccessExtensions.GetBones(UnityEngine.Sprite)">
- <summary>
- <para>Returns a list of SpriteBone in this Sprite.</para>
- </summary>
- <param name="sprite">The sprite to get the list of SpriteBone from.</param>
- <returns>
- <para>An array of SpriteBone that belongs to this Sprite.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.U2D.SpriteDataAccessExtensions.GetBoneWeights(UnityEngine.Sprite)">
- <summary>
- <para>Returns a list of BoneWeight that corresponds to each and every vertice in this Sprite.</para>
- </summary>
- <param name="sprite">The Sprite to get the BoneWeights from.</param>
- <returns>
- <para>The list of BoneWeight. The length should equal the number of vertices. There is no need to call dispose on this NativeArray.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.U2D.SpriteDataAccessExtensions.GetIndices(UnityEngine.Sprite)">
- <summary>
- <para>Returns a list of indices. This is the same as Sprite.triangle.</para>
- </summary>
- <param name="sprite"></param>
- <returns>
- <para>A read-only list of indices indicating how the triangles are formed between the vertices. The array is marked as undisposable.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.U2D.SpriteDataAccessExtensions.GetVertexAttribute(UnityEngine.Sprite,UnityEngine.Experimental.Rendering.VertexAttribute)">
- <summary>
- <para>Retrieves a strided accessor to the internal vertex attributes.</para>
- </summary>
- <param name="sprite"></param>
- <param name="channel"></param>
- <returns>
- <para>A read-only list of.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.U2D.SpriteDataAccessExtensions.GetVertexCount(UnityEngine.Sprite)">
- <summary>
- <para>Returns the number of vertices in this Sprite.</para>
- </summary>
- <param name="sprite"></param>
- </member>
- <member name="M:UnityEngine.Experimental.U2D.SpriteDataAccessExtensions.HasVertexAttribute(UnityEngine.Sprite,UnityEngine.Experimental.Rendering.VertexAttribute)">
- <summary>
- <para>Checks if a specific channel exists for this Sprite.</para>
- </summary>
- <param name="sprite"></param>
- <param name="channel"></param>
- <returns>
- <para>True if the channel exists.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.U2D.SpriteDataAccessExtensions.SetBindPoses(UnityEngine.Sprite,Unity.Collections.NativeArray`1&lt;UnityEngine.Matrix4x4&gt;)">
- <summary>
- <para>Sets the bind poses for this Sprite.</para>
- </summary>
- <param name="src">The list of bind poses for this Sprite. The array must be disposed of by the caller.</param>
- <param name="sprite"></param>
- </member>
- <member name="M:UnityEngine.Experimental.U2D.SpriteDataAccessExtensions.SetBones(UnityEngine.Sprite,UnityEngine.Experimental.U2D.SpriteBone[])">
- <summary>
- <para>Sets the SpriteBones for this Sprite.</para>
- </summary>
- <param name="sprite"></param>
- <param name="src"></param>
- </member>
- <member name="M:UnityEngine.Experimental.U2D.SpriteDataAccessExtensions.SetBoneWeights(UnityEngine.Sprite,Unity.Collections.NativeArray`1&lt;UnityEngine.BoneWeight&gt;)">
- <summary>
- <para>Sets the BoneWeight for this Sprite. The length of the input array must match the number of vertices.</para>
- </summary>
- <param name="src">The list of BoneWeight for this Sprite. The array must be disposed of by the caller.</param>
- <param name="sprite"></param>
- </member>
- <member name="M:UnityEngine.Experimental.U2D.SpriteDataAccessExtensions.SetIndices(UnityEngine.Sprite,Unity.Collections.NativeArray`1&lt;System.UInt16&gt;)">
- <summary>
- <para>Set the indices for this Sprite. This is the same as Sprite.triangle.</para>
- </summary>
- <param name="src">The list of indices for this Sprite. The array must be disposed of by the caller.</param>
- <param name="sprite"></param>
- </member>
- <member name="M:UnityEngine.Experimental.U2D.SpriteDataAccessExtensions.SetVertexAttribute(UnityEngine.Sprite,UnityEngine.Experimental.Rendering.VertexAttribute,Unity.Collections.NativeArray`1&lt;T&gt;)">
- <summary>
- <para>Sets a specific channel of the VertexAttribute.</para>
- </summary>
- <param name="src">The list of values for this specific VertexAttribute channel. The array must be disposed of by the caller.</param>
- <param name="sprite"></param>
- <param name="channel"></param>
- </member>
- <member name="M:UnityEngine.Experimental.U2D.SpriteDataAccessExtensions.SetVertexCount(UnityEngine.Sprite,System.Int32)">
- <summary>
- <para>Sets the vertex count. This resizes the internal buffer. It also preserves any configurations of VertexAttributes.</para>
- </summary>
- <param name="sprite"></param>
- <param name="count"></param>
- </member>
- <member name="T:UnityEngine.Experimental.U2D.SpriteRendererDataAccessExtensions">
- <summary>
- <para>A list of methods that allow the caller to override what the SpriteRenderer renders.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.U2D.SpriteRendererDataAccessExtensions.DeactivateDeformableBuffer(UnityEngine.SpriteRenderer)">
- <summary>
- <para>Stop using the deformable buffer to render the Sprite and use the original mesh instead.</para>
- </summary>
- <param name="renderer"></param>
- </member>
- <member name="M:UnityEngine.Experimental.U2D.SpriteRendererDataAccessExtensions.GetDeformableVertices(UnityEngine.SpriteRenderer)">
- <summary>
- <para>Returns an array of vertices to be deformed by the caller.</para>
- </summary>
- <param name="spriteRenderer"></param>
- </member>
- <member name="M:UnityEngine.Experimental.U2D.SpriteRendererDataAccessExtensions.UpdateDeformableBuffer(UnityEngine.SpriteRenderer,Unity.Jobs.JobHandle)">
- <summary>
- <para>Provides the JobHandle that updates the deform buffer to the SpriteRenderer.</para>
- </summary>
- <param name="spriteRenderer"></param>
- <param name="fence"></param>
- </member>
- <member name="T:UnityEngine.ExposedPropertyResolver">
- <summary>
- <para>Object that is used to resolve references to an ExposedReference field.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ExposedReference`1">
- <summary>
- <para>Creates a type whos value is resolvable at runtime.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ExposedReference_1.defaultValue">
- <summary>
- <para>The default value, in case the value cannot be resolved.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ExposedReference_1.exposedName">
- <summary>
- <para>The name of the ExposedReference.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.ExposedReference_1.Resolve">
- <summary>
- <para>Gets the value of the reference by resolving it given the ExposedPropertyResolver context object.</para>
- </summary>
- <param name="resolver">The ExposedPropertyResolver context object.</param>
- <returns>
- <para>The resolved reference value.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.FilterMode">
- <summary>
- <para>Filtering mode for textures. Corresponds to the settings in a.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.FilterMode.Bilinear">
- <summary>
- <para>Bilinear filtering - texture samples are averaged.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.FilterMode.Point">
- <summary>
- <para>Point filtering - texture pixels become blocky up close.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.FilterMode.Trilinear">
- <summary>
- <para>Trilinear filtering - texture samples are averaged and also blended between mipmap levels.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Flare">
- <summary>
- <para>A flare asset. Read more about flares in the.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.FlareLayer">
- <summary>
- <para>FlareLayer component.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.FogMode">
- <summary>
- <para>Fog mode to use.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.FogMode.Exponential">
- <summary>
- <para>Exponential fog.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.FogMode.ExponentialSquared">
- <summary>
- <para>Exponential squared fog (default).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.FogMode.Linear">
- <summary>
- <para>Linear fog.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.FrameTiming">
- <summary>
- <para>Struct containing basic FrameTimings and accompanying relevant data.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.FrameTiming.cpuFrameTime">
- <summary>
- <para>The CPU time for a given frame, in ms.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.FrameTiming.cpuTimeFrameComplete">
- <summary>
- <para>This is the CPU clock time at the point GPU finished rendering the frame and interrupted the CPU.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.FrameTiming.cpuTimePresentCalled">
- <summary>
- <para>This is the CPU clock time at the point Present was called for the current frame.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.FrameTiming.gpuFrameTime">
- <summary>
- <para>The GPU time for a given frame, in ms.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.FrameTiming.heightScale">
- <summary>
- <para>This was the height scale factor of the Dynamic Resolution system(if used) for the given frame and the linked frame timings.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.FrameTiming.syncInterval">
- <summary>
- <para>This was the vsync mode for the given frame and the linked frame timings.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.FrameTiming.widthScale">
- <summary>
- <para>This was the width scale factor of the Dynamic Resolution system(if used) for the given frame and the linked frame timings.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.FrameTimingManager">
- <summary>
- <para>The FrameTimingManager allows the user to capture and access FrameTiming data for multple frames.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.FrameTimingManager.CaptureFrameTimings">
- <summary>
- <para>This function triggers the FrameTimingManager to capture a snapshot of FrameTiming's data, that can then be accessed by the user.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.FrameTimingManager.GetCpuTimerFrequency">
- <summary>
- <para>This returns the frequency of CPU timer on the current platform, used to interpret timing results. If the platform does not support returning this value it will return 0.</para>
- </summary>
- <returns>
- <para>CPU timer frequency for current platform.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.FrameTimingManager.GetGpuTimerFrequency">
- <summary>
- <para>This returns the frequency of GPU timer on the current platform, used to interpret timing results. If the platform does not support returning this value it will return 0.</para>
- </summary>
- <returns>
- <para>GPU timer frequency for current platform.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.FrameTimingManager.GetLatestTimings(System.UInt32,UnityEngine.FrameTiming[])">
- <summary>
- <para>Allows the user to access the currently captured FrameTimings.</para>
- </summary>
- <param name="numFrames">User supplies a desired number of frames they would like FrameTimings for. This should be equal to or less than the maximum FrameTimings the platform can capture.</param>
- <param name="timings">An array of FrameTiming structs that is passed in by the user and will be filled with data as requested. It is the users job to make sure the array that is passed is large enough to hold the requested number of FrameTimings.</param>
- <returns>
- <para>Returns the number of FrameTimings it actually was able to get. This will always be equal to or less than the requested numFrames depending on availability of captured FrameTimings.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.FrameTimingManager.GetVSyncsPerSecond">
- <summary>
- <para>This returns the number of vsyncs per second on the current platform, used to interpret timing results. If the platform does not support returning this value it will return 0.</para>
- </summary>
- <returns>
- <para>Number of vsyncs per second of the current platform.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.FrustumPlanes">
- <summary>
- <para>This struct contains the view space coordinates of the near projection plane.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.FrustumPlanes.bottom">
- <summary>
- <para>Position in view space of the bottom side of the near projection plane.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.FrustumPlanes.left">
- <summary>
- <para>Position in view space of the left side of the near projection plane.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.FrustumPlanes.right">
- <summary>
- <para>Position in view space of the right side of the near projection plane.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.FrustumPlanes.top">
- <summary>
- <para>Position in view space of the top side of the near projection plane.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.FrustumPlanes.zFar">
- <summary>
- <para>Z distance from the origin of view space to the far projection plane.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.FrustumPlanes.zNear">
- <summary>
- <para>Z distance from the origin of view space to the near projection plane.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.FullScreenMode">
- <summary>
- <para>Platform agnostic fullscreen mode. Not all platforms support all modes.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.FullScreenMode.ExclusiveFullScreen">
- <summary>
- <para>Exclusive Mode.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.FullScreenMode.FullScreenWindow">
- <summary>
- <para>Fullscreen window.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.FullScreenMode.MaximizedWindow">
- <summary>
- <para>Maximized window.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.FullScreenMode.Windowed">
- <summary>
- <para>Windowed.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.GameObject">
- <summary>
- <para>Base class for all entities in Unity scenes.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GameObject.activeInHierarchy">
- <summary>
- <para>Defines whether the GameObject is active in the Scene.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GameObject.activeSelf">
- <summary>
- <para>The local active state of this GameObject. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GameObject.isStatic">
- <summary>
- <para>Editor only API that specifies if a game object is static.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GameObject.layer">
- <summary>
- <para>The layer the game object is in. A layer is in the range [0...31].</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GameObject.scene">
- <summary>
- <para>Scene that the GameObject is part of.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GameObject.tag">
- <summary>
- <para>The tag of this game object.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GameObject.transform">
- <summary>
- <para>The Transform attached to this GameObject.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.GameObject.AddComponent(System.String)">
- <summary>
- <para>Adds a component class named className to the game object.</para>
- </summary>
- <param name="className"></param>
- </member>
- <member name="M:UnityEngine.GameObject.AddComponent(System.Type)">
- <summary>
- <para>Adds a component class of type componentType to the game object. C# Users can use a generic version.</para>
- </summary>
- <param name="componentType"></param>
- </member>
- <member name="M:UnityEngine.GameObject.AddComponent">
- <summary>
- <para>Generic version. See the page for more details.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.GameObject.BroadcastMessage(System.String)">
- <summary>
- <para>Calls the method named methodName on every MonoBehaviour in this game object or any of its children.</para>
- </summary>
- <param name="methodName"></param>
- <param name="parameter"></param>
- <param name="options"></param>
- </member>
- <member name="M:UnityEngine.GameObject.BroadcastMessage(System.String,System.Object)">
- <summary>
- <para>Calls the method named methodName on every MonoBehaviour in this game object or any of its children.</para>
- </summary>
- <param name="methodName"></param>
- <param name="parameter"></param>
- <param name="options"></param>
- </member>
- <member name="M:UnityEngine.GameObject.BroadcastMessage(System.String,System.Object,UnityEngine.SendMessageOptions)">
- <summary>
- <para>Calls the method named methodName on every MonoBehaviour in this game object or any of its children.</para>
- </summary>
- <param name="methodName"></param>
- <param name="parameter"></param>
- <param name="options"></param>
- </member>
- <member name="M:UnityEngine.GameObject.BroadcastMessage(System.String,UnityEngine.SendMessageOptions)">
- <summary>
- <para></para>
- </summary>
- <param name="methodName"></param>
- <param name="options"></param>
- </member>
- <member name="M:UnityEngine.GameObject.CompareTag(System.String)">
- <summary>
- <para>Is this game object tagged with tag ?</para>
- </summary>
- <param name="tag">The tag to compare.</param>
- </member>
- <member name="M:UnityEngine.GameObject.CreatePrimitive(UnityEngine.PrimitiveType)">
- <summary>
- <para>Creates a game object with a primitive mesh renderer and appropriate collider.</para>
- </summary>
- <param name="type">The type of primitive object to create.</param>
- </member>
- <member name="M:UnityEngine.GameObject.#ctor">
- <summary>
- <para>Creates a new game object, named name.</para>
- </summary>
- <param name="name">The name that the GameObject is created with.</param>
- <param name="components">A list of Components to add to the GameObject on creation.</param>
- </member>
- <member name="M:UnityEngine.GameObject.#ctor(System.String)">
- <summary>
- <para>Creates a new game object, named name.</para>
- </summary>
- <param name="name">The name that the GameObject is created with.</param>
- <param name="components">A list of Components to add to the GameObject on creation.</param>
- </member>
- <member name="M:UnityEngine.GameObject.#ctor(System.String,System.Type[])">
- <summary>
- <para>Creates a new game object, named name.</para>
- </summary>
- <param name="name">The name that the GameObject is created with.</param>
- <param name="components">A list of Components to add to the GameObject on creation.</param>
- </member>
- <member name="M:UnityEngine.GameObject.Find(System.String)">
- <summary>
- <para>Finds a GameObject by name and returns it.</para>
- </summary>
- <param name="name"></param>
- </member>
- <member name="M:UnityEngine.GameObject.FindGameObjectsWithTag(System.String)">
- <summary>
- <para>Returns a list of active GameObjects tagged tag. Returns empty array if no GameObject was found.</para>
- </summary>
- <param name="tag">The name of the tag to search GameObjects for.</param>
- </member>
- <member name="M:UnityEngine.GameObject.FindWithTag(System.String)">
- <summary>
- <para>Returns one active GameObject tagged tag. Returns null if no GameObject was found.</para>
- </summary>
- <param name="tag">The tag to search for.</param>
- </member>
- <member name="M:UnityEngine.GameObject.GetComponent(System.Type)">
- <summary>
- <para>Returns the component of Type type if the game object has one attached, null if it doesn't.</para>
- </summary>
- <param name="type">The type of Component to retrieve.</param>
- </member>
- <member name="M:UnityEngine.GameObject.GetComponent">
- <summary>
- <para>Generic version. See the page for more details.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.GameObject.GetComponent(System.String)">
- <summary>
- <para>Returns the component with name type if the game object has one attached, null if it doesn't.</para>
- </summary>
- <param name="type">The type of Component to retrieve.</param>
- </member>
- <member name="M:UnityEngine.GameObject.GetComponentInChildren(System.Type)">
- <summary>
- <para>Returns the component of Type type in the GameObject or any of its children using depth first search.</para>
- </summary>
- <param name="type">The type of Component to retrieve.</param>
- <param name="includeInactive"></param>
- <returns>
- <para>A component of the matching type, if found.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GameObject.GetComponentInChildren(System.Type,System.Boolean)">
- <summary>
- <para>Returns the component of Type type in the GameObject or any of its children using depth first search.</para>
- </summary>
- <param name="type">The type of Component to retrieve.</param>
- <param name="includeInactive"></param>
- <returns>
- <para>A component of the matching type, if found.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GameObject.GetComponentInChildren()">
- <summary>
- <para>Generic version. See the page for more details.</para>
- </summary>
- <param name="includeInactive"></param>
- <returns>
- <para>A component of the matching type, if found.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GameObject.GetComponentInChildren(System.Boolean)">
- <summary>
- <para>Generic version. See the page for more details.</para>
- </summary>
- <param name="includeInactive"></param>
- <returns>
- <para>A component of the matching type, if found.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GameObject.GetComponentInParent(System.Type)">
- <summary>
- <para>Returns the component of Type type in the GameObject or any of its parents.</para>
- </summary>
- <param name="type">Type of component to find.</param>
- </member>
- <member name="M:UnityEngine.GameObject.GetComponentInParent">
- <summary>
- <para>Returns the component &lt;T&gt; in the GameObject or any of its parents.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.GameObject.GetComponents(System.Type)">
- <summary>
- <para>Returns all components of Type type in the GameObject.</para>
- </summary>
- <param name="type">The type of Component to retrieve.</param>
- </member>
- <member name="M:UnityEngine.GameObject.GetComponents">
- <summary>
- <para>Generic version. See the page for more details.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.GameObject.GetComponents(System.Type,System.Collections.Generic.List`1&lt;UnityEngine.Component&gt;)">
- <summary>
- <para>Returns all components of Type type in the GameObject into List results. Note that results is of type Component, not the type of the component retrieved.</para>
- </summary>
- <param name="type">The type of Component to retrieve.</param>
- <param name="results">List to receive the results.</param>
- </member>
- <member name="M:UnityEngine.GameObject.GetComponents(System.Collections.Generic.List`1&lt;T&gt;)">
- <summary>
- <para>Returns all components of Type type in the GameObject into List results.</para>
- </summary>
- <param name="results">List of type T to receive the results.</param>
- </member>
- <member name="M:UnityEngine.GameObject.GetComponentsInChildren(System.Type)">
- <summary>
- <para>Returns all components of Type type in the GameObject or any of its children.</para>
- </summary>
- <param name="type">The type of Component to retrieve.</param>
- <param name="includeInactive">Should Components on inactive GameObjects be included in the found set?</param>
- </member>
- <member name="M:UnityEngine.GameObject.GetComponentsInChildren(System.Type,System.Boolean)">
- <summary>
- <para>Returns all components of Type type in the GameObject or any of its children.</para>
- </summary>
- <param name="type">The type of Component to retrieve.</param>
- <param name="includeInactive">Should Components on inactive GameObjects be included in the found set?</param>
- </member>
- <member name="M:UnityEngine.GameObject.GetComponentsInChildren">
- <summary>
- <para>Generic version. See the page for more details.</para>
- </summary>
- <param name="includeInactive">Should inactive GameObjects be included in the found set?</param>
- <returns>
- <para>A list of all found components matching the specified type.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GameObject.GetComponentsInChildren(System.Boolean)">
- <summary>
- <para>Generic version. See the page for more details.</para>
- </summary>
- <param name="includeInactive">Should inactive GameObjects be included in the found set?</param>
- <returns>
- <para>A list of all found components matching the specified type.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GameObject.GetComponentsInChildren(System.Collections.Generic.List`1&lt;T&gt;)">
- <summary>
- <para>Return all found Components into List results.</para>
- </summary>
- <param name="results">List to receive found Components.</param>
- <param name="includeInactive">Should inactive GameObjects be included in the found set?</param>
- </member>
- <member name="M:UnityEngine.GameObject.GetComponentsInChildren(System.Boolean,System.Collections.Generic.List`1&lt;T&gt;)">
- <summary>
- <para>Return all found Components into List results.</para>
- </summary>
- <param name="results">List to receive found Components.</param>
- <param name="includeInactive">Should inactive GameObjects be included in the found set?</param>
- </member>
- <member name="M:UnityEngine.GameObject.GetComponentsInParent(System.Type,System.Boolean)">
- <summary>
- <para>Returns all components of Type type in the GameObject or any of its parents.</para>
- </summary>
- <param name="type">The type of Component to retrieve.</param>
- <param name="includeInactive">Should inactive Components be included in the found set?</param>
- </member>
- <member name="M:UnityEngine.GameObject.GetComponentsInParent">
- <summary>
- <para>Generic version. See the page for more details.</para>
- </summary>
- <param name="includeInactive">Should inactive Components be included in the found set?</param>
- </member>
- <member name="M:UnityEngine.GameObject.GetComponentsInParent(System.Boolean)">
- <summary>
- <para>Generic version. See the page for more details.</para>
- </summary>
- <param name="includeInactive">Should inactive Components be included in the found set?</param>
- </member>
- <member name="M:UnityEngine.GameObject.GetComponentsInParent(System.Boolean,System.Collections.Generic.List`1&lt;T&gt;)">
- <summary>
- <para>Find Components in GameObject or parents, and return them in List results.</para>
- </summary>
- <param name="includeInactive">Should inactive Components be included in the found set?</param>
- <param name="results">List holding the found Components.</param>
- </member>
- <member name="M:UnityEngine.GameObject.SendMessage(System.String)">
- <summary>
- <para>Calls the method named methodName on every MonoBehaviour in this game object.</para>
- </summary>
- <param name="methodName">The name of the method to call.</param>
- <param name="value">An optional parameter value to pass to the called method.</param>
- <param name="options">Should an error be raised if the method doesn't exist on the target object?</param>
- </member>
- <member name="M:UnityEngine.GameObject.SendMessage(System.String,System.Object)">
- <summary>
- <para>Calls the method named methodName on every MonoBehaviour in this game object.</para>
- </summary>
- <param name="methodName">The name of the method to call.</param>
- <param name="value">An optional parameter value to pass to the called method.</param>
- <param name="options">Should an error be raised if the method doesn't exist on the target object?</param>
- </member>
- <member name="M:UnityEngine.GameObject.SendMessage(System.String,System.Object,UnityEngine.SendMessageOptions)">
- <summary>
- <para>Calls the method named methodName on every MonoBehaviour in this game object.</para>
- </summary>
- <param name="methodName">The name of the method to call.</param>
- <param name="value">An optional parameter value to pass to the called method.</param>
- <param name="options">Should an error be raised if the method doesn't exist on the target object?</param>
- </member>
- <member name="M:UnityEngine.GameObject.SendMessage(System.String,UnityEngine.SendMessageOptions)">
- <summary>
- <para></para>
- </summary>
- <param name="methodName"></param>
- <param name="options"></param>
- </member>
- <member name="M:UnityEngine.GameObject.SendMessageUpwards(System.String)">
- <summary>
- <para>Calls the method named methodName on every MonoBehaviour in this game object and on every ancestor of the behaviour.</para>
- </summary>
- <param name="methodName">The name of the method to call.</param>
- <param name="value">An optional parameter value to pass to the called method.</param>
- <param name="options">Should an error be raised if the method doesn't exist on the target object?</param>
- </member>
- <member name="M:UnityEngine.GameObject.SendMessageUpwards(System.String,System.Object)">
- <summary>
- <para>Calls the method named methodName on every MonoBehaviour in this game object and on every ancestor of the behaviour.</para>
- </summary>
- <param name="methodName">The name of the method to call.</param>
- <param name="value">An optional parameter value to pass to the called method.</param>
- <param name="options">Should an error be raised if the method doesn't exist on the target object?</param>
- </member>
- <member name="M:UnityEngine.GameObject.SendMessageUpwards(System.String,System.Object,UnityEngine.SendMessageOptions)">
- <summary>
- <para>Calls the method named methodName on every MonoBehaviour in this game object and on every ancestor of the behaviour.</para>
- </summary>
- <param name="methodName">The name of the method to call.</param>
- <param name="value">An optional parameter value to pass to the called method.</param>
- <param name="options">Should an error be raised if the method doesn't exist on the target object?</param>
- </member>
- <member name="M:UnityEngine.GameObject.SendMessageUpwards(System.String,UnityEngine.SendMessageOptions)">
- <summary>
- <para></para>
- </summary>
- <param name="methodName"></param>
- <param name="options"></param>
- </member>
- <member name="M:UnityEngine.GameObject.SetActive(System.Boolean)">
- <summary>
- <para>Activates/Deactivates the GameObject.</para>
- </summary>
- <param name="value">Activate or deactivation the object.</param>
- </member>
- <member name="T:UnityEngine.GeometryUtility">
- <summary>
- <para>Utility class for common geometric functions.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.GeometryUtility.CalculateBounds(UnityEngine.Vector3[],UnityEngine.Matrix4x4)">
- <summary>
- <para>Calculates a bounding box given an array of positions and a transformation matrix.</para>
- </summary>
- <param name="positions"></param>
- <param name="transform"></param>
- </member>
- <member name="M:UnityEngine.GeometryUtility.CalculateFrustumPlanes(UnityEngine.Camera)">
- <summary>
- <para>Calculates frustum planes.</para>
- </summary>
- <param name="camera">The camera with the view frustum that you want to calculate planes from.</param>
- <returns>
- <para>The planes that form the camera's view frustum.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GeometryUtility.CalculateFrustumPlanes(UnityEngine.Camera,UnityEngine.Plane[])">
- <summary>
- <para>Calculates frustum planes.</para>
- </summary>
- <param name="camera">The camera with the view frustum that you want to calculate planes from.</param>
- <param name="planes">An array of 6 Planes that will be overwritten with the calculated plane values.</param>
- </member>
- <member name="M:UnityEngine.GeometryUtility.CalculateFrustumPlanes(UnityEngine.Matrix4x4)">
- <summary>
- <para>Calculates frustum planes.</para>
- </summary>
- <param name="worldToProjectionMatrix">A matrix that transforms from world space to projection space, from which the planes will be calculated.</param>
- <returns>
- <para>The planes that enclose the projection space described by the matrix.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GeometryUtility.CalculateFrustumPlanes(UnityEngine.Matrix4x4,UnityEngine.Plane[])">
- <summary>
- <para>Calculates frustum planes.</para>
- </summary>
- <param name="worldToProjectionMatrix">A matrix that transforms from world space to projection space, from which the planes will be calculated.</param>
- <param name="planes">An array of 6 Planes that will be overwritten with the calculated plane values.</param>
- </member>
- <member name="M:UnityEngine.GeometryUtility.TestPlanesAABB(UnityEngine.Plane[],UnityEngine.Bounds)">
- <summary>
- <para>Returns true if bounds are inside the plane array.</para>
- </summary>
- <param name="planes"></param>
- <param name="bounds"></param>
- </member>
- <member name="M:UnityEngine.GeometryUtility.TryCreatePlaneFromPolygon(UnityEngine.Vector3[],UnityEngine.Plane&amp;)">
- <summary>
- <para>Creates a plane from a given list of vertices. Works for concave polygons and polygons that have multiple aligned vertices.</para>
- </summary>
- <param name="vertices">An array of vertex positions that define the shape of a polygon.</param>
- <param name="plane">If successful, a valid plane that goes through all the vertices.</param>
- <returns>
- <para>Returns true on success, false if the algorithm failed to create a plane from the given vertices.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.Gizmos">
- <summary>
- <para>Gizmos are used to give visual debugging or setup aids in the scene view.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Gizmos.color">
- <summary>
- <para>Sets the color for the gizmos that will be drawn next.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Gizmos.matrix">
- <summary>
- <para>Set the gizmo matrix used to draw all gizmos.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Gizmos.DrawCube(UnityEngine.Vector3,UnityEngine.Vector3)">
- <summary>
- <para>Draw a solid box with center and size.</para>
- </summary>
- <param name="center"></param>
- <param name="size"></param>
- </member>
- <member name="M:UnityEngine.Gizmos.DrawFrustum(UnityEngine.Vector3,System.Single,System.Single,System.Single,System.Single)">
- <summary>
- <para>Draw a camera frustum using the currently set Gizmos.matrix for it's location and rotation.</para>
- </summary>
- <param name="center">The apex of the truncated pyramid.</param>
- <param name="fov">Vertical field of view (ie, the angle at the apex in degrees).</param>
- <param name="maxRange">Distance of the frustum's far plane.</param>
- <param name="minRange">Distance of the frustum's near plane.</param>
- <param name="aspect">Width/height ratio.</param>
- </member>
- <member name="M:UnityEngine.Gizmos.DrawGUITexture(UnityEngine.Rect,UnityEngine.Texture)">
- <summary>
- <para>Draw a texture in the scene.</para>
- </summary>
- <param name="screenRect">The size and position of the texture on the "screen" defined by the XY plane.</param>
- <param name="texture">The texture to be displayed.</param>
- <param name="mat">An optional material to apply the texture.</param>
- <param name="leftBorder">Inset from the rectangle's left edge.</param>
- <param name="rightBorder">Inset from the rectangle's right edge.</param>
- <param name="topBorder">Inset from the rectangle's top edge.</param>
- <param name="bottomBorder">Inset from the rectangle's bottom edge.</param>
- </member>
- <member name="M:UnityEngine.Gizmos.DrawGUITexture(UnityEngine.Rect,UnityEngine.Texture,UnityEngine.Material)">
- <summary>
- <para>Draw a texture in the scene.</para>
- </summary>
- <param name="screenRect">The size and position of the texture on the "screen" defined by the XY plane.</param>
- <param name="texture">The texture to be displayed.</param>
- <param name="mat">An optional material to apply the texture.</param>
- <param name="leftBorder">Inset from the rectangle's left edge.</param>
- <param name="rightBorder">Inset from the rectangle's right edge.</param>
- <param name="topBorder">Inset from the rectangle's top edge.</param>
- <param name="bottomBorder">Inset from the rectangle's bottom edge.</param>
- </member>
- <member name="M:UnityEngine.Gizmos.DrawGUITexture(UnityEngine.Rect,UnityEngine.Texture,System.Int32,System.Int32,System.Int32,System.Int32)">
- <summary>
- <para>Draw a texture in the scene.</para>
- </summary>
- <param name="screenRect">The size and position of the texture on the "screen" defined by the XY plane.</param>
- <param name="texture">The texture to be displayed.</param>
- <param name="mat">An optional material to apply the texture.</param>
- <param name="leftBorder">Inset from the rectangle's left edge.</param>
- <param name="rightBorder">Inset from the rectangle's right edge.</param>
- <param name="topBorder">Inset from the rectangle's top edge.</param>
- <param name="bottomBorder">Inset from the rectangle's bottom edge.</param>
- </member>
- <member name="M:UnityEngine.Gizmos.DrawGUITexture(UnityEngine.Rect,UnityEngine.Texture,System.Int32,System.Int32,System.Int32,System.Int32,UnityEngine.Material)">
- <summary>
- <para>Draw a texture in the scene.</para>
- </summary>
- <param name="screenRect">The size and position of the texture on the "screen" defined by the XY plane.</param>
- <param name="texture">The texture to be displayed.</param>
- <param name="mat">An optional material to apply the texture.</param>
- <param name="leftBorder">Inset from the rectangle's left edge.</param>
- <param name="rightBorder">Inset from the rectangle's right edge.</param>
- <param name="topBorder">Inset from the rectangle's top edge.</param>
- <param name="bottomBorder">Inset from the rectangle's bottom edge.</param>
- </member>
- <member name="M:UnityEngine.Gizmos.DrawIcon(UnityEngine.Vector3,System.String)">
- <summary>
- <para>Draw an icon at a position in the scene view.</para>
- </summary>
- <param name="center"></param>
- <param name="name"></param>
- <param name="allowScaling"></param>
- </member>
- <member name="M:UnityEngine.Gizmos.DrawIcon(UnityEngine.Vector3,System.String,System.Boolean)">
- <summary>
- <para>Draw an icon at a position in the scene view.</para>
- </summary>
- <param name="center"></param>
- <param name="name"></param>
- <param name="allowScaling"></param>
- </member>
- <member name="M:UnityEngine.Gizmos.DrawLine(UnityEngine.Vector3,UnityEngine.Vector3)">
- <summary>
- <para>Draws a line starting at from towards to.</para>
- </summary>
- <param name="from"></param>
- <param name="to"></param>
- </member>
- <member name="M:UnityEngine.Gizmos.DrawMesh(UnityEngine.Mesh,UnityEngine.Vector3,UnityEngine.Quaternion,UnityEngine.Vector3)">
- <summary>
- <para>Draws a mesh.</para>
- </summary>
- <param name="mesh">Mesh to draw as a gizmo.</param>
- <param name="position">Position (default is zero).</param>
- <param name="rotation">Rotation (default is no rotation).</param>
- <param name="scale">Scale (default is no scale).</param>
- <param name="submeshIndex">Submesh to draw (default is -1, which draws whole mesh).</param>
- </member>
- <member name="M:UnityEngine.Gizmos.DrawMesh(UnityEngine.Mesh,System.Int32,UnityEngine.Vector3,UnityEngine.Quaternion,UnityEngine.Vector3)">
- <summary>
- <para>Draws a mesh.</para>
- </summary>
- <param name="mesh">Mesh to draw as a gizmo.</param>
- <param name="position">Position (default is zero).</param>
- <param name="rotation">Rotation (default is no rotation).</param>
- <param name="scale">Scale (default is no scale).</param>
- <param name="submeshIndex">Submesh to draw (default is -1, which draws whole mesh).</param>
- </member>
- <member name="M:UnityEngine.Gizmos.DrawRay(UnityEngine.Ray)">
- <summary>
- <para>Draws a ray starting at from to from + direction.</para>
- </summary>
- <param name="r"></param>
- <param name="from"></param>
- <param name="direction"></param>
- </member>
- <member name="M:UnityEngine.Gizmos.DrawRay(UnityEngine.Vector3,UnityEngine.Vector3)">
- <summary>
- <para>Draws a ray starting at from to from + direction.</para>
- </summary>
- <param name="r"></param>
- <param name="from"></param>
- <param name="direction"></param>
- </member>
- <member name="M:UnityEngine.Gizmos.DrawSphere(UnityEngine.Vector3,System.Single)">
- <summary>
- <para>Draws a solid sphere with center and radius.</para>
- </summary>
- <param name="center"></param>
- <param name="radius"></param>
- </member>
- <member name="M:UnityEngine.Gizmos.DrawWireCube(UnityEngine.Vector3,UnityEngine.Vector3)">
- <summary>
- <para>Draw a wireframe box with center and size.</para>
- </summary>
- <param name="center"></param>
- <param name="size"></param>
- </member>
- <member name="M:UnityEngine.Gizmos.DrawWireMesh(UnityEngine.Mesh,UnityEngine.Vector3,UnityEngine.Quaternion,UnityEngine.Vector3)">
- <summary>
- <para>Draws a wireframe mesh.</para>
- </summary>
- <param name="mesh">Mesh to draw as a gizmo.</param>
- <param name="position">Position (default is zero).</param>
- <param name="rotation">Rotation (default is no rotation).</param>
- <param name="scale">Scale (default is no scale).</param>
- <param name="submeshIndex">Submesh to draw (default is -1, which draws whole mesh).</param>
- </member>
- <member name="M:UnityEngine.Gizmos.DrawWireMesh(UnityEngine.Mesh,System.Int32,UnityEngine.Vector3,UnityEngine.Quaternion,UnityEngine.Vector3)">
- <summary>
- <para>Draws a wireframe mesh.</para>
- </summary>
- <param name="mesh">Mesh to draw as a gizmo.</param>
- <param name="position">Position (default is zero).</param>
- <param name="rotation">Rotation (default is no rotation).</param>
- <param name="scale">Scale (default is no scale).</param>
- <param name="submeshIndex">Submesh to draw (default is -1, which draws whole mesh).</param>
- </member>
- <member name="M:UnityEngine.Gizmos.DrawWireSphere(UnityEngine.Vector3,System.Single)">
- <summary>
- <para>Draws a wireframe sphere with center and radius.</para>
- </summary>
- <param name="center"></param>
- <param name="radius"></param>
- </member>
- <member name="T:UnityEngine.GL">
- <summary>
- <para>Low-level graphics library.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GL.invertCulling">
- <summary>
- <para>Select whether to invert the backface culling (true) or not (false).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GL.modelview">
- <summary>
- <para>The current modelview matrix.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GL.sRGBWrite">
- <summary>
- <para>Controls whether Linear-to-sRGB color conversion is performed while rendering.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GL.wireframe">
- <summary>
- <para>Should rendering be done in wireframe?</para>
- </summary>
- </member>
- <member name="M:UnityEngine.GL.Begin(System.Int32)">
- <summary>
- <para>Begin drawing 3D primitives.</para>
- </summary>
- <param name="mode">Primitives to draw: can be TRIANGLES, TRIANGLE_STRIP, QUADS or LINES.</param>
- </member>
- <member name="M:UnityEngine.GL.Clear(System.Boolean,System.Boolean,UnityEngine.Color,System.Single)">
- <summary>
- <para>Clear the current render buffer.</para>
- </summary>
- <param name="clearDepth">Should the depth buffer be cleared?</param>
- <param name="clearColor">Should the color buffer be cleared?</param>
- <param name="backgroundColor">The color to clear with, used only if clearColor is true.</param>
- <param name="depth">The depth to clear Z buffer with, used only if clearDepth is true.</param>
- </member>
- <member name="M:UnityEngine.GL.ClearWithSkybox(System.Boolean,UnityEngine.Camera)">
- <summary>
- <para>Clear the current render buffer with camera's skybox.</para>
- </summary>
- <param name="clearDepth">Should the depth buffer be cleared?</param>
- <param name="camera">Camera to get projection parameters and skybox from.</param>
- </member>
- <member name="M:UnityEngine.GL.Color(UnityEngine.Color)">
- <summary>
- <para>Sets current vertex color.</para>
- </summary>
- <param name="c"></param>
- </member>
- <member name="M:UnityEngine.GL.End">
- <summary>
- <para>End drawing 3D primitives.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.GL.Flush">
- <summary>
- <para>Sends queued-up commands in the driver's command buffer to the GPU.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.GL.GetGPUProjectionMatrix(UnityEngine.Matrix4x4,System.Boolean)">
- <summary>
- <para>Compute GPU projection matrix from camera's projection matrix.</para>
- </summary>
- <param name="proj">Source projection matrix.</param>
- <param name="renderIntoTexture">Will this projection be used for rendering into a RenderTexture?</param>
- <returns>
- <para>Adjusted projection matrix for the current graphics API.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GL.InvalidateState">
- <summary>
- <para>Invalidate the internally cached render state.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.GL.IssuePluginEvent(System.Int32)">
- <summary>
- <para>Send a user-defined event to a native code plugin.</para>
- </summary>
- <param name="eventID">User defined id to send to the callback.</param>
- <param name="callback">Native code callback to queue for Unity's renderer to invoke.</param>
- </member>
- <member name="M:UnityEngine.GL.IssuePluginEvent(System.IntPtr,System.Int32)">
- <summary>
- <para>Send a user-defined event to a native code plugin.</para>
- </summary>
- <param name="eventID">User defined id to send to the callback.</param>
- <param name="callback">Native code callback to queue for Unity's renderer to invoke.</param>
- </member>
- <member name="F:UnityEngine.GL.LINE_STRIP">
- <summary>
- <para>Mode for Begin: draw line strip.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.GL.LINES">
- <summary>
- <para>Mode for Begin: draw lines.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.GL.LoadIdentity">
- <summary>
- <para>Load the identity matrix to the current modelview matrix.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.GL.LoadOrtho">
- <summary>
- <para>Helper function to set up an ortho perspective transform.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.GL.LoadPixelMatrix">
- <summary>
- <para>Setup a matrix for pixel-correct rendering.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.GL.LoadPixelMatrix(System.Single,System.Single,System.Single,System.Single)">
- <summary>
- <para>Setup a matrix for pixel-correct rendering.</para>
- </summary>
- <param name="left"></param>
- <param name="right"></param>
- <param name="bottom"></param>
- <param name="top"></param>
- </member>
- <member name="M:UnityEngine.GL.LoadProjectionMatrix(UnityEngine.Matrix4x4)">
- <summary>
- <para>Load an arbitrary matrix to the current projection matrix.</para>
- </summary>
- <param name="mat"></param>
- </member>
- <member name="M:UnityEngine.GL.MultiTexCoord(System.Int32,UnityEngine.Vector3)">
- <summary>
- <para>Sets current texture coordinate (v.x,v.y,v.z) to the actual texture unit.</para>
- </summary>
- <param name="unit"></param>
- <param name="v"></param>
- </member>
- <member name="M:UnityEngine.GL.MultiTexCoord2(System.Int32,System.Single,System.Single)">
- <summary>
- <para>Sets current texture coordinate (x,y) for the actual texture unit.</para>
- </summary>
- <param name="unit"></param>
- <param name="x"></param>
- <param name="y"></param>
- </member>
- <member name="M:UnityEngine.GL.MultiTexCoord3(System.Int32,System.Single,System.Single,System.Single)">
- <summary>
- <para>Sets current texture coordinate (x,y,z) to the actual texture unit.</para>
- </summary>
- <param name="unit"></param>
- <param name="x"></param>
- <param name="y"></param>
- <param name="z"></param>
- </member>
- <member name="M:UnityEngine.GL.MultMatrix(UnityEngine.Matrix4x4)">
- <summary>
- <para>Sets the current modelview matrix to the one specified.</para>
- </summary>
- <param name="m"></param>
- </member>
- <member name="M:UnityEngine.GL.PopMatrix">
- <summary>
- <para>Restores both projection and modelview matrices off the top of the matrix stack.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.GL.PushMatrix">
- <summary>
- <para>Saves both projection and modelview matrices to the matrix stack.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.GL.QUADS">
- <summary>
- <para>Mode for Begin: draw quads.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.GL.RenderTargetBarrier">
- <summary>
- <para>Resolves the render target for subsequent operations sampling from it.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.GL.TexCoord(UnityEngine.Vector3)">
- <summary>
- <para>Sets current texture coordinate (v.x,v.y,v.z) for all texture units.</para>
- </summary>
- <param name="v"></param>
- </member>
- <member name="M:UnityEngine.GL.TexCoord2(System.Single,System.Single)">
- <summary>
- <para>Sets current texture coordinate (x,y) for all texture units.</para>
- </summary>
- <param name="x"></param>
- <param name="y"></param>
- </member>
- <member name="M:UnityEngine.GL.TexCoord3(System.Single,System.Single,System.Single)">
- <summary>
- <para>Sets current texture coordinate (x,y,z) for all texture units.</para>
- </summary>
- <param name="x"></param>
- <param name="y"></param>
- <param name="z"></param>
- </member>
- <member name="F:UnityEngine.GL.TRIANGLE_STRIP">
- <summary>
- <para>Mode for Begin: draw triangle strip.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.GL.TRIANGLES">
- <summary>
- <para>Mode for Begin: draw triangles.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.GL.Vertex(UnityEngine.Vector3)">
- <summary>
- <para>Submit a vertex.</para>
- </summary>
- <param name="v"></param>
- </member>
- <member name="M:UnityEngine.GL.Vertex3(System.Single,System.Single,System.Single)">
- <summary>
- <para>Submit a vertex.</para>
- </summary>
- <param name="x"></param>
- <param name="y"></param>
- <param name="z"></param>
- </member>
- <member name="M:UnityEngine.GL.Viewport(UnityEngine.Rect)">
- <summary>
- <para>Set the rendering viewport.</para>
- </summary>
- <param name="pixelRect"></param>
- </member>
- <member name="T:UnityEngine.Gradient">
- <summary>
- <para>Gradient used for animating colors.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Gradient.alphaKeys">
- <summary>
- <para>All alpha keys defined in the gradient.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Gradient.colorKeys">
- <summary>
- <para>All color keys defined in the gradient.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Gradient.mode">
- <summary>
- <para>Control how the gradient is evaluated.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Gradient.#ctor">
- <summary>
- <para>Create a new Gradient object.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Gradient.Evaluate(System.Single)">
- <summary>
- <para>Calculate color at a given time.</para>
- </summary>
- <param name="time">Time of the key (0 - 1).</param>
- </member>
- <member name="M:UnityEngine.Gradient.SetKeys(UnityEngine.GradientColorKey[],UnityEngine.GradientAlphaKey[])">
- <summary>
- <para>Setup Gradient with an array of color keys and alpha keys.</para>
- </summary>
- <param name="colorKeys">Color keys of the gradient (maximum 8 color keys).</param>
- <param name="alphaKeys">Alpha keys of the gradient (maximum 8 alpha keys).</param>
- </member>
- <member name="T:UnityEngine.GradientAlphaKey">
- <summary>
- <para>Alpha key used by Gradient.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.GradientAlphaKey.alpha">
- <summary>
- <para>Alpha channel of key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.GradientAlphaKey.time">
- <summary>
- <para>Time of the key (0 - 1).</para>
- </summary>
- </member>
- <member name="M:UnityEngine.GradientAlphaKey.#ctor(System.Single,System.Single)">
- <summary>
- <para>Gradient alpha key.</para>
- </summary>
- <param name="alpha">Alpha of key (0 - 1).</param>
- <param name="time">Time of the key (0 - 1).</param>
- </member>
- <member name="T:UnityEngine.GradientColorKey">
- <summary>
- <para>Color key used by Gradient.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.GradientColorKey.color">
- <summary>
- <para>Color of key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.GradientColorKey.time">
- <summary>
- <para>Time of the key (0 - 1).</para>
- </summary>
- </member>
- <member name="M:UnityEngine.GradientColorKey.#ctor(UnityEngine.Color,System.Single)">
- <summary>
- <para>Gradient color key.</para>
- </summary>
- <param name="color">Color of key.</param>
- <param name="time">Time of the key (0 - 1).</param>
- <param name="col"></param>
- </member>
- <member name="T:UnityEngine.GradientMode">
- <summary>
- <para>Select how gradients will be evaluated.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.GradientMode.Blend">
- <summary>
- <para>Find the 2 keys adjacent to the requested evaluation time, and linearly interpolate between them to obtain a blended color.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.GradientMode.Fixed">
- <summary>
- <para>Return a fixed color, by finding the first key whose time value is greater than the requested evaluation time.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Graphics">
- <summary>
- <para>Raw interface to Unity's drawing functions.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Graphics.activeColorBuffer">
- <summary>
- <para>Currently active color buffer (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Graphics.activeColorGamut">
- <summary>
- <para>Returns the currently active color gamut.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Graphics.activeDepthBuffer">
- <summary>
- <para>Currently active depth/stencil buffer (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Graphics.activeTier">
- <summary>
- <para>Graphics Tier classification for current device.
-Changing this value affects any subsequently loaded shaders. Initially this value is auto-detected from the hardware in use.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Graphics.Blit(UnityEngine.Texture,UnityEngine.RenderTexture)">
- <summary>
- <para>Copies source texture into destination render texture with a shader.</para>
- </summary>
- <param name="source">Source texture.</param>
- <param name="dest">The destination RenderTexture. Set this to null to blit directly to screen. See description for more information.</param>
- <param name="mat">Material to use. Material's shader could do some post-processing effect, for example.</param>
- <param name="pass">If -1 (default), draws all passes in the material. Otherwise, draws given pass only.</param>
- <param name="offset">Offset applied to the source texture coordinate.</param>
- <param name="scale">Scale applied to the source texture coordinate.</param>
- </member>
- <member name="M:UnityEngine.Graphics.Blit(UnityEngine.Texture,UnityEngine.RenderTexture,UnityEngine.Material,System.Int32)">
- <summary>
- <para>Copies source texture into destination render texture with a shader.</para>
- </summary>
- <param name="source">Source texture.</param>
- <param name="dest">The destination RenderTexture. Set this to null to blit directly to screen. See description for more information.</param>
- <param name="mat">Material to use. Material's shader could do some post-processing effect, for example.</param>
- <param name="pass">If -1 (default), draws all passes in the material. Otherwise, draws given pass only.</param>
- <param name="offset">Offset applied to the source texture coordinate.</param>
- <param name="scale">Scale applied to the source texture coordinate.</param>
- </member>
- <member name="M:UnityEngine.Graphics.Blit(UnityEngine.Texture,UnityEngine.Material,System.Int32)">
- <summary>
- <para>Copies source texture into destination render texture with a shader.</para>
- </summary>
- <param name="source">Source texture.</param>
- <param name="dest">The destination RenderTexture. Set this to null to blit directly to screen. See description for more information.</param>
- <param name="mat">Material to use. Material's shader could do some post-processing effect, for example.</param>
- <param name="pass">If -1 (default), draws all passes in the material. Otherwise, draws given pass only.</param>
- <param name="offset">Offset applied to the source texture coordinate.</param>
- <param name="scale">Scale applied to the source texture coordinate.</param>
- </member>
- <member name="M:UnityEngine.Graphics.Blit(UnityEngine.Texture,UnityEngine.RenderTexture,UnityEngine.Vector2,UnityEngine.Vector2)">
- <summary>
- <para>Copies source texture into destination render texture with a shader.</para>
- </summary>
- <param name="source">Source texture.</param>
- <param name="dest">The destination RenderTexture. Set this to null to blit directly to screen. See description for more information.</param>
- <param name="mat">Material to use. Material's shader could do some post-processing effect, for example.</param>
- <param name="pass">If -1 (default), draws all passes in the material. Otherwise, draws given pass only.</param>
- <param name="offset">Offset applied to the source texture coordinate.</param>
- <param name="scale">Scale applied to the source texture coordinate.</param>
- </member>
- <member name="M:UnityEngine.Graphics.BlitMultiTap(UnityEngine.Texture,UnityEngine.RenderTexture,UnityEngine.Material,UnityEngine.Vector2[])">
- <summary>
- <para>Copies source texture into destination, for multi-tap shader.</para>
- </summary>
- <param name="source">Source texture.</param>
- <param name="dest">Destination RenderTexture, or null to blit directly to screen.</param>
- <param name="mat">Material to use for copying. Material's shader should do some post-processing effect.</param>
- <param name="offsets">Variable number of filtering offsets. Offsets are given in pixels.</param>
- </member>
- <member name="M:UnityEngine.Graphics.ClearRandomWriteTargets">
- <summary>
- <para>Clear random write targets for level pixel shaders.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Graphics.ConvertTexture(UnityEngine.Texture,UnityEngine.Texture)">
- <summary>
- <para>This function provides an efficient way to convert between textures of different formats and dimensions.
-The destination texture format should be uncompressed and correspond to a supported RenderTextureFormat.</para>
- </summary>
- <param name="src">Source texture.</param>
- <param name="dst">Destination texture.</param>
- <param name="srcElement">Source element (e.g. cubemap face). Set this to 0 for 2d source textures.</param>
- <param name="dstElement">Destination element (e.g. cubemap face or texture array element).</param>
- <returns>
- <para>True if the call succeeded.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Graphics.ConvertTexture(UnityEngine.Texture,System.Int32,UnityEngine.Texture,System.Int32)">
- <summary>
- <para>This function provides an efficient way to convert between textures of different formats and dimensions.
-The destination texture format should be uncompressed and correspond to a supported RenderTextureFormat.</para>
- </summary>
- <param name="src">Source texture.</param>
- <param name="dst">Destination texture.</param>
- <param name="srcElement">Source element (e.g. cubemap face). Set this to 0 for 2d source textures.</param>
- <param name="dstElement">Destination element (e.g. cubemap face or texture array element).</param>
- <returns>
- <para>True if the call succeeded.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Graphics.CopyTexture(UnityEngine.Texture,UnityEngine.Texture)">
- <summary>
- <para>Copy texture contents.</para>
- </summary>
- <param name="src">Source texture.</param>
- <param name="dst">Destination texture.</param>
- <param name="srcElement">Source texture element (cubemap face, texture array layer or 3D texture depth slice).</param>
- <param name="srcMip">Source texture mipmap level.</param>
- <param name="dstElement">Destination texture element (cubemap face, texture array layer or 3D texture depth slice).</param>
- <param name="dstMip">Destination texture mipmap level.</param>
- <param name="srcX">X coordinate of source texture region to copy (left side is zero).</param>
- <param name="srcY">Y coordinate of source texture region to copy (bottom is zero).</param>
- <param name="srcWidth">Width of source texture region to copy.</param>
- <param name="srcHeight">Height of source texture region to copy.</param>
- <param name="dstX">X coordinate of where to copy region in destination texture (left side is zero).</param>
- <param name="dstY">Y coordinate of where to copy region in destination texture (bottom is zero).</param>
- </member>
- <member name="M:UnityEngine.Graphics.CopyTexture(UnityEngine.Texture,System.Int32,System.Int32,UnityEngine.Texture,System.Int32,System.Int32)">
- <summary>
- <para>Copy texture contents.</para>
- </summary>
- <param name="src">Source texture.</param>
- <param name="dst">Destination texture.</param>
- <param name="srcElement">Source texture element (cubemap face, texture array layer or 3D texture depth slice).</param>
- <param name="srcMip">Source texture mipmap level.</param>
- <param name="dstElement">Destination texture element (cubemap face, texture array layer or 3D texture depth slice).</param>
- <param name="dstMip">Destination texture mipmap level.</param>
- <param name="srcX">X coordinate of source texture region to copy (left side is zero).</param>
- <param name="srcY">Y coordinate of source texture region to copy (bottom is zero).</param>
- <param name="srcWidth">Width of source texture region to copy.</param>
- <param name="srcHeight">Height of source texture region to copy.</param>
- <param name="dstX">X coordinate of where to copy region in destination texture (left side is zero).</param>
- <param name="dstY">Y coordinate of where to copy region in destination texture (bottom is zero).</param>
- </member>
- <member name="M:UnityEngine.Graphics.CopyTexture(UnityEngine.Texture,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,UnityEngine.Texture,System.Int32,System.Int32,System.Int32,System.Int32)">
- <summary>
- <para>Copy texture contents.</para>
- </summary>
- <param name="src">Source texture.</param>
- <param name="dst">Destination texture.</param>
- <param name="srcElement">Source texture element (cubemap face, texture array layer or 3D texture depth slice).</param>
- <param name="srcMip">Source texture mipmap level.</param>
- <param name="dstElement">Destination texture element (cubemap face, texture array layer or 3D texture depth slice).</param>
- <param name="dstMip">Destination texture mipmap level.</param>
- <param name="srcX">X coordinate of source texture region to copy (left side is zero).</param>
- <param name="srcY">Y coordinate of source texture region to copy (bottom is zero).</param>
- <param name="srcWidth">Width of source texture region to copy.</param>
- <param name="srcHeight">Height of source texture region to copy.</param>
- <param name="dstX">X coordinate of where to copy region in destination texture (left side is zero).</param>
- <param name="dstY">Y coordinate of where to copy region in destination texture (bottom is zero).</param>
- </member>
- <member name="M:UnityEngine.Graphics.CreateGPUFence(UnityEngine.Rendering.SynchronisationStage)">
- <summary>
- <para>Creates a GPUFence which will be passed after the last Blit, Clear, Draw, Dispatch or Texture Copy command prior to this call has been completed on the GPU.</para>
- </summary>
- <param name="stage">On some platforms there is a significant gap between the vertex processing completing and the pixel processing begining for a given draw call. This parameter allows for the fence to be passed after either the vertex or pixel processing for the proceeding draw has completed. If a compute shader dispatch was the last task submitted then this parameter is ignored.</param>
- <returns>
- <para>Returns a new GPUFence.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Graphics.DrawMesh(UnityEngine.Mesh,UnityEngine.Vector3,UnityEngine.Quaternion,UnityEngine.Material,System.Int32,UnityEngine.Camera,System.Int32,UnityEngine.MaterialPropertyBlock,System.Boolean,System.Boolean,System.Boolean)">
- <summary>
- <para>Draw a mesh.</para>
- </summary>
- <param name="mesh">The Mesh to draw.</param>
- <param name="position">Position of the mesh.</param>
- <param name="rotation">Rotation of the mesh.</param>
- <param name="matrix">Transformation matrix of the mesh (combines position, rotation and other transformations).</param>
- <param name="material">Material to use.</param>
- <param name="layer"> to use.</param>
- <param name="camera">If null (default), the mesh will be drawn in all cameras. Otherwise it will be rendered in the given camera only.</param>
- <param name="submeshIndex">Which subset of the mesh to draw. This applies only to meshes that are composed of several materials.</param>
- <param name="properties">Additional material properties to apply onto material just before this mesh will be drawn. See MaterialPropertyBlock.</param>
- <param name="castShadows">Should the mesh cast shadows?</param>
- <param name="receiveShadows">Should the mesh receive shadows?</param>
- <param name="useLightProbes">Should the mesh use light probes?</param>
- <param name="probeAnchor">If used, the mesh will use this Transform's position to sample light probes and find the matching reflection probe.</param>
- <param name="lightProbeUsage">LightProbeUsage for the mesh.</param>
- <param name="lightProbeProxyVolume"></param>
- </member>
- <member name="M:UnityEngine.Graphics.DrawMesh(UnityEngine.Mesh,UnityEngine.Vector3,UnityEngine.Quaternion,UnityEngine.Material,System.Int32,UnityEngine.Camera,System.Int32,UnityEngine.MaterialPropertyBlock,UnityEngine.Rendering.ShadowCastingMode,System.Boolean,UnityEngine.Transform,System.Boolean)">
- <summary>
- <para>Draw a mesh.</para>
- </summary>
- <param name="mesh">The Mesh to draw.</param>
- <param name="position">Position of the mesh.</param>
- <param name="rotation">Rotation of the mesh.</param>
- <param name="matrix">Transformation matrix of the mesh (combines position, rotation and other transformations).</param>
- <param name="material">Material to use.</param>
- <param name="layer"> to use.</param>
- <param name="camera">If null (default), the mesh will be drawn in all cameras. Otherwise it will be rendered in the given camera only.</param>
- <param name="submeshIndex">Which subset of the mesh to draw. This applies only to meshes that are composed of several materials.</param>
- <param name="properties">Additional material properties to apply onto material just before this mesh will be drawn. See MaterialPropertyBlock.</param>
- <param name="castShadows">Should the mesh cast shadows?</param>
- <param name="receiveShadows">Should the mesh receive shadows?</param>
- <param name="useLightProbes">Should the mesh use light probes?</param>
- <param name="probeAnchor">If used, the mesh will use this Transform's position to sample light probes and find the matching reflection probe.</param>
- <param name="lightProbeUsage">LightProbeUsage for the mesh.</param>
- <param name="lightProbeProxyVolume"></param>
- </member>
- <member name="M:UnityEngine.Graphics.DrawMesh(UnityEngine.Mesh,UnityEngine.Matrix4x4,UnityEngine.Material,System.Int32,UnityEngine.Camera,System.Int32,UnityEngine.MaterialPropertyBlock,System.Boolean,System.Boolean,System.Boolean)">
- <summary>
- <para>Draw a mesh.</para>
- </summary>
- <param name="mesh">The Mesh to draw.</param>
- <param name="position">Position of the mesh.</param>
- <param name="rotation">Rotation of the mesh.</param>
- <param name="matrix">Transformation matrix of the mesh (combines position, rotation and other transformations).</param>
- <param name="material">Material to use.</param>
- <param name="layer"> to use.</param>
- <param name="camera">If null (default), the mesh will be drawn in all cameras. Otherwise it will be rendered in the given camera only.</param>
- <param name="submeshIndex">Which subset of the mesh to draw. This applies only to meshes that are composed of several materials.</param>
- <param name="properties">Additional material properties to apply onto material just before this mesh will be drawn. See MaterialPropertyBlock.</param>
- <param name="castShadows">Should the mesh cast shadows?</param>
- <param name="receiveShadows">Should the mesh receive shadows?</param>
- <param name="useLightProbes">Should the mesh use light probes?</param>
- <param name="probeAnchor">If used, the mesh will use this Transform's position to sample light probes and find the matching reflection probe.</param>
- <param name="lightProbeUsage">LightProbeUsage for the mesh.</param>
- <param name="lightProbeProxyVolume"></param>
- </member>
- <member name="M:UnityEngine.Graphics.DrawMesh(UnityEngine.Mesh,UnityEngine.Matrix4x4,UnityEngine.Material,System.Int32,UnityEngine.Camera,System.Int32,UnityEngine.MaterialPropertyBlock,UnityEngine.Rendering.ShadowCastingMode,System.Boolean,UnityEngine.Transform,System.Boolean)">
- <summary>
- <para>Draw a mesh.</para>
- </summary>
- <param name="mesh">The Mesh to draw.</param>
- <param name="position">Position of the mesh.</param>
- <param name="rotation">Rotation of the mesh.</param>
- <param name="matrix">Transformation matrix of the mesh (combines position, rotation and other transformations).</param>
- <param name="material">Material to use.</param>
- <param name="layer"> to use.</param>
- <param name="camera">If null (default), the mesh will be drawn in all cameras. Otherwise it will be rendered in the given camera only.</param>
- <param name="submeshIndex">Which subset of the mesh to draw. This applies only to meshes that are composed of several materials.</param>
- <param name="properties">Additional material properties to apply onto material just before this mesh will be drawn. See MaterialPropertyBlock.</param>
- <param name="castShadows">Should the mesh cast shadows?</param>
- <param name="receiveShadows">Should the mesh receive shadows?</param>
- <param name="useLightProbes">Should the mesh use light probes?</param>
- <param name="probeAnchor">If used, the mesh will use this Transform's position to sample light probes and find the matching reflection probe.</param>
- <param name="lightProbeUsage">LightProbeUsage for the mesh.</param>
- <param name="lightProbeProxyVolume"></param>
- </member>
- <member name="M:UnityEngine.Graphics.DrawMesh(UnityEngine.Mesh,UnityEngine.Matrix4x4,UnityEngine.Material,System.Int32,UnityEngine.Camera,System.Int32,UnityEngine.MaterialPropertyBlock,UnityEngine.Rendering.ShadowCastingMode,System.Boolean,UnityEngine.Transform,UnityEngine.Rendering.LightProbeUsage)">
- <summary>
- <para>Draw a mesh.</para>
- </summary>
- <param name="mesh">The Mesh to draw.</param>
- <param name="position">Position of the mesh.</param>
- <param name="rotation">Rotation of the mesh.</param>
- <param name="matrix">Transformation matrix of the mesh (combines position, rotation and other transformations).</param>
- <param name="material">Material to use.</param>
- <param name="layer"> to use.</param>
- <param name="camera">If null (default), the mesh will be drawn in all cameras. Otherwise it will be rendered in the given camera only.</param>
- <param name="submeshIndex">Which subset of the mesh to draw. This applies only to meshes that are composed of several materials.</param>
- <param name="properties">Additional material properties to apply onto material just before this mesh will be drawn. See MaterialPropertyBlock.</param>
- <param name="castShadows">Should the mesh cast shadows?</param>
- <param name="receiveShadows">Should the mesh receive shadows?</param>
- <param name="useLightProbes">Should the mesh use light probes?</param>
- <param name="probeAnchor">If used, the mesh will use this Transform's position to sample light probes and find the matching reflection probe.</param>
- <param name="lightProbeUsage">LightProbeUsage for the mesh.</param>
- <param name="lightProbeProxyVolume"></param>
- </member>
- <member name="M:UnityEngine.Graphics.DrawMeshInstanced(UnityEngine.Mesh,System.Int32,UnityEngine.Material,UnityEngine.Matrix4x4[],System.Int32,UnityEngine.MaterialPropertyBlock,UnityEngine.Rendering.ShadowCastingMode,System.Boolean,System.Int32,UnityEngine.Camera,UnityEngine.Rendering.LightProbeUsage)">
- <summary>
- <para>Draw the same mesh multiple times using GPU instancing.</para>
- </summary>
- <param name="mesh">The Mesh to draw.</param>
- <param name="submeshIndex">Which subset of the mesh to draw. This applies only to meshes that are composed of several materials.</param>
- <param name="material">Material to use.</param>
- <param name="matrices">The array of object transformation matrices.</param>
- <param name="count">The number of instances to be drawn.</param>
- <param name="properties">Additional material properties to apply. See MaterialPropertyBlock.</param>
- <param name="castShadows">Should the meshes cast shadows?</param>
- <param name="receiveShadows">Should the meshes receive shadows?</param>
- <param name="layer"> to use.</param>
- <param name="camera">If null (default), the mesh will be drawn in all cameras. Otherwise it will be drawn in the given camera only.</param>
- <param name="lightProbeUsage">LightProbeUsage for the instances.</param>
- <param name="lightProbeProxyVolume"></param>
- </member>
- <member name="M:UnityEngine.Graphics.DrawMeshInstanced(UnityEngine.Mesh,System.Int32,UnityEngine.Material,System.Collections.Generic.List`1&lt;UnityEngine.Matrix4x4&gt;,UnityEngine.MaterialPropertyBlock,UnityEngine.Rendering.ShadowCastingMode,System.Boolean,System.Int32,UnityEngine.Camera,UnityEngine.Rendering.LightProbeUsage)">
- <summary>
- <para>Draw the same mesh multiple times using GPU instancing.</para>
- </summary>
- <param name="mesh">The Mesh to draw.</param>
- <param name="submeshIndex">Which subset of the mesh to draw. This applies only to meshes that are composed of several materials.</param>
- <param name="material">Material to use.</param>
- <param name="matrices">The array of object transformation matrices.</param>
- <param name="count">The number of instances to be drawn.</param>
- <param name="properties">Additional material properties to apply. See MaterialPropertyBlock.</param>
- <param name="castShadows">Should the meshes cast shadows?</param>
- <param name="receiveShadows">Should the meshes receive shadows?</param>
- <param name="layer"> to use.</param>
- <param name="camera">If null (default), the mesh will be drawn in all cameras. Otherwise it will be drawn in the given camera only.</param>
- <param name="lightProbeUsage">LightProbeUsage for the instances.</param>
- <param name="lightProbeProxyVolume"></param>
- </member>
- <member name="M:UnityEngine.Graphics.DrawMeshInstancedIndirect(UnityEngine.Mesh,System.Int32,UnityEngine.Material,UnityEngine.Bounds,UnityEngine.ComputeBuffer,System.Int32,UnityEngine.MaterialPropertyBlock,UnityEngine.Rendering.ShadowCastingMode,System.Boolean,System.Int32,UnityEngine.Camera,UnityEngine.Rendering.LightProbeUsage)">
- <summary>
- <para>Draw the same mesh multiple times using GPU instancing.</para>
- </summary>
- <param name="mesh">The Mesh to draw.</param>
- <param name="submeshIndex">Which subset of the mesh to draw. This applies only to meshes that are composed of several materials.</param>
- <param name="material">Material to use.</param>
- <param name="bounds">The bounding volume surrounding the instances you intend to draw.</param>
- <param name="bufferWithArgs">The GPU buffer containing the arguments for how many instances of this mesh to draw.</param>
- <param name="argsOffset">The byte offset into the buffer, where the draw arguments start.</param>
- <param name="properties">Additional material properties to apply. See MaterialPropertyBlock.</param>
- <param name="castShadows">Should the mesh cast shadows?</param>
- <param name="receiveShadows">Should the mesh receive shadows?</param>
- <param name="layer"> to use.</param>
- <param name="camera">If null (default), the mesh will be drawn in all cameras. Otherwise it will be drawn in the given camera only.</param>
- <param name="lightProbeUsage">LightProbeUsage for the instances.</param>
- <param name="lightProbeProxyVolume"></param>
- </member>
- <member name="M:UnityEngine.Graphics.DrawMeshNow(UnityEngine.Mesh,UnityEngine.Vector3,UnityEngine.Quaternion)">
- <summary>
- <para>Draw a mesh immediately.</para>
- </summary>
- <param name="mesh">The Mesh to draw.</param>
- <param name="position">Position of the mesh.</param>
- <param name="rotation">Rotation of the mesh.</param>
- <param name="matrix">Transformation matrix of the mesh (combines position, rotation and other transformations). Note that the mesh will not be displayed correctly if matrix has negative scale.</param>
- <param name="materialIndex">Subset of the mesh to draw.</param>
- </member>
- <member name="M:UnityEngine.Graphics.DrawMeshNow(UnityEngine.Mesh,UnityEngine.Vector3,UnityEngine.Quaternion,System.Int32)">
- <summary>
- <para>Draw a mesh immediately.</para>
- </summary>
- <param name="mesh">The Mesh to draw.</param>
- <param name="position">Position of the mesh.</param>
- <param name="rotation">Rotation of the mesh.</param>
- <param name="matrix">Transformation matrix of the mesh (combines position, rotation and other transformations). Note that the mesh will not be displayed correctly if matrix has negative scale.</param>
- <param name="materialIndex">Subset of the mesh to draw.</param>
- </member>
- <member name="M:UnityEngine.Graphics.DrawMeshNow(UnityEngine.Mesh,UnityEngine.Matrix4x4)">
- <summary>
- <para>Draw a mesh immediately.</para>
- </summary>
- <param name="mesh">The Mesh to draw.</param>
- <param name="position">Position of the mesh.</param>
- <param name="rotation">Rotation of the mesh.</param>
- <param name="matrix">Transformation matrix of the mesh (combines position, rotation and other transformations). Note that the mesh will not be displayed correctly if matrix has negative scale.</param>
- <param name="materialIndex">Subset of the mesh to draw.</param>
- </member>
- <member name="M:UnityEngine.Graphics.DrawMeshNow(UnityEngine.Mesh,UnityEngine.Matrix4x4,System.Int32)">
- <summary>
- <para>Draw a mesh immediately.</para>
- </summary>
- <param name="mesh">The Mesh to draw.</param>
- <param name="position">Position of the mesh.</param>
- <param name="rotation">Rotation of the mesh.</param>
- <param name="matrix">Transformation matrix of the mesh (combines position, rotation and other transformations). Note that the mesh will not be displayed correctly if matrix has negative scale.</param>
- <param name="materialIndex">Subset of the mesh to draw.</param>
- </member>
- <member name="M:UnityEngine.Graphics.DrawProcedural(UnityEngine.MeshTopology,System.Int32,System.Int32)">
- <summary>
- <para>Draws a fully procedural geometry on the GPU.</para>
- </summary>
- <param name="topology"></param>
- <param name="vertexCount"></param>
- <param name="instanceCount"></param>
- </member>
- <member name="M:UnityEngine.Graphics.DrawProceduralIndirect(UnityEngine.MeshTopology,UnityEngine.ComputeBuffer,System.Int32)">
- <summary>
- <para>Draws a fully procedural geometry on the GPU.</para>
- </summary>
- <param name="topology">Topology of the procedural geometry.</param>
- <param name="bufferWithArgs">Buffer with draw arguments.</param>
- <param name="argsOffset">Byte offset where in the buffer the draw arguments are.</param>
- </member>
- <member name="M:UnityEngine.Graphics.DrawTexture(UnityEngine.Rect,UnityEngine.Texture,UnityEngine.Material)">
- <summary>
- <para>Draw a texture in screen coordinates.</para>
- </summary>
- <param name="screenRect">Rectangle on the screen to use for the texture. In pixel coordinates with (0,0) in the upper-left corner.</param>
- <param name="texture">Texture to draw.</param>
- <param name="sourceRect">Region of the texture to use. In normalized coordinates with (0,0) in the bottom-left corner.</param>
- <param name="leftBorder">Number of pixels from the left that are not affected by scale.</param>
- <param name="rightBorder">Number of pixels from the right that are not affected by scale.</param>
- <param name="topBorder">Number of pixels from the top that are not affected by scale.</param>
- <param name="bottomBorder">Number of pixels from the bottom that are not affected by scale.</param>
- <param name="color">Color that modulates the output. The neutral value is (0.5, 0.5, 0.5, 0.5). Set as vertex color for the shader.</param>
- <param name="mat">Custom Material that can be used to draw the texture. If null is passed, a default material with the Internal-GUITexture.shader is used.</param>
- <param name="pass">If -1 (default), draws all passes in the material. Otherwise, draws given pass only.</param>
- </member>
- <member name="M:UnityEngine.Graphics.DrawTexture(UnityEngine.Rect,UnityEngine.Texture,UnityEngine.Material,System.Int32)">
- <summary>
- <para>Draw a texture in screen coordinates.</para>
- </summary>
- <param name="screenRect">Rectangle on the screen to use for the texture. In pixel coordinates with (0,0) in the upper-left corner.</param>
- <param name="texture">Texture to draw.</param>
- <param name="sourceRect">Region of the texture to use. In normalized coordinates with (0,0) in the bottom-left corner.</param>
- <param name="leftBorder">Number of pixels from the left that are not affected by scale.</param>
- <param name="rightBorder">Number of pixels from the right that are not affected by scale.</param>
- <param name="topBorder">Number of pixels from the top that are not affected by scale.</param>
- <param name="bottomBorder">Number of pixels from the bottom that are not affected by scale.</param>
- <param name="color">Color that modulates the output. The neutral value is (0.5, 0.5, 0.5, 0.5). Set as vertex color for the shader.</param>
- <param name="mat">Custom Material that can be used to draw the texture. If null is passed, a default material with the Internal-GUITexture.shader is used.</param>
- <param name="pass">If -1 (default), draws all passes in the material. Otherwise, draws given pass only.</param>
- </member>
- <member name="M:UnityEngine.Graphics.DrawTexture(UnityEngine.Rect,UnityEngine.Texture,System.Int32,System.Int32,System.Int32,System.Int32,UnityEngine.Material,System.Int32)">
- <summary>
- <para>Draw a texture in screen coordinates.</para>
- </summary>
- <param name="screenRect">Rectangle on the screen to use for the texture. In pixel coordinates with (0,0) in the upper-left corner.</param>
- <param name="texture">Texture to draw.</param>
- <param name="sourceRect">Region of the texture to use. In normalized coordinates with (0,0) in the bottom-left corner.</param>
- <param name="leftBorder">Number of pixels from the left that are not affected by scale.</param>
- <param name="rightBorder">Number of pixels from the right that are not affected by scale.</param>
- <param name="topBorder">Number of pixels from the top that are not affected by scale.</param>
- <param name="bottomBorder">Number of pixels from the bottom that are not affected by scale.</param>
- <param name="color">Color that modulates the output. The neutral value is (0.5, 0.5, 0.5, 0.5). Set as vertex color for the shader.</param>
- <param name="mat">Custom Material that can be used to draw the texture. If null is passed, a default material with the Internal-GUITexture.shader is used.</param>
- <param name="pass">If -1 (default), draws all passes in the material. Otherwise, draws given pass only.</param>
- </member>
- <member name="M:UnityEngine.Graphics.DrawTexture(UnityEngine.Rect,UnityEngine.Texture,UnityEngine.Rect,System.Int32,System.Int32,System.Int32,System.Int32,UnityEngine.Material,System.Int32)">
- <summary>
- <para>Draw a texture in screen coordinates.</para>
- </summary>
- <param name="screenRect">Rectangle on the screen to use for the texture. In pixel coordinates with (0,0) in the upper-left corner.</param>
- <param name="texture">Texture to draw.</param>
- <param name="sourceRect">Region of the texture to use. In normalized coordinates with (0,0) in the bottom-left corner.</param>
- <param name="leftBorder">Number of pixels from the left that are not affected by scale.</param>
- <param name="rightBorder">Number of pixels from the right that are not affected by scale.</param>
- <param name="topBorder">Number of pixels from the top that are not affected by scale.</param>
- <param name="bottomBorder">Number of pixels from the bottom that are not affected by scale.</param>
- <param name="color">Color that modulates the output. The neutral value is (0.5, 0.5, 0.5, 0.5). Set as vertex color for the shader.</param>
- <param name="mat">Custom Material that can be used to draw the texture. If null is passed, a default material with the Internal-GUITexture.shader is used.</param>
- <param name="pass">If -1 (default), draws all passes in the material. Otherwise, draws given pass only.</param>
- </member>
- <member name="M:UnityEngine.Graphics.DrawTexture(UnityEngine.Rect,UnityEngine.Texture,UnityEngine.Rect,System.Int32,System.Int32,System.Int32,System.Int32,UnityEngine.Color,UnityEngine.Material,System.Int32)">
- <summary>
- <para>Draw a texture in screen coordinates.</para>
- </summary>
- <param name="screenRect">Rectangle on the screen to use for the texture. In pixel coordinates with (0,0) in the upper-left corner.</param>
- <param name="texture">Texture to draw.</param>
- <param name="sourceRect">Region of the texture to use. In normalized coordinates with (0,0) in the bottom-left corner.</param>
- <param name="leftBorder">Number of pixels from the left that are not affected by scale.</param>
- <param name="rightBorder">Number of pixels from the right that are not affected by scale.</param>
- <param name="topBorder">Number of pixels from the top that are not affected by scale.</param>
- <param name="bottomBorder">Number of pixels from the bottom that are not affected by scale.</param>
- <param name="color">Color that modulates the output. The neutral value is (0.5, 0.5, 0.5, 0.5). Set as vertex color for the shader.</param>
- <param name="mat">Custom Material that can be used to draw the texture. If null is passed, a default material with the Internal-GUITexture.shader is used.</param>
- <param name="pass">If -1 (default), draws all passes in the material. Otherwise, draws given pass only.</param>
- </member>
- <member name="M:UnityEngine.Graphics.DrawTexture(UnityEngine.Rect,UnityEngine.Texture,System.Int32,System.Int32,System.Int32,System.Int32,UnityEngine.Material)">
- <summary>
- <para>Draw a texture in screen coordinates.</para>
- </summary>
- <param name="screenRect">Rectangle on the screen to use for the texture. In pixel coordinates with (0,0) in the upper-left corner.</param>
- <param name="texture">Texture to draw.</param>
- <param name="sourceRect">Region of the texture to use. In normalized coordinates with (0,0) in the bottom-left corner.</param>
- <param name="leftBorder">Number of pixels from the left that are not affected by scale.</param>
- <param name="rightBorder">Number of pixels from the right that are not affected by scale.</param>
- <param name="topBorder">Number of pixels from the top that are not affected by scale.</param>
- <param name="bottomBorder">Number of pixels from the bottom that are not affected by scale.</param>
- <param name="color">Color that modulates the output. The neutral value is (0.5, 0.5, 0.5, 0.5). Set as vertex color for the shader.</param>
- <param name="mat">Custom Material that can be used to draw the texture. If null is passed, a default material with the Internal-GUITexture.shader is used.</param>
- <param name="pass">If -1 (default), draws all passes in the material. Otherwise, draws given pass only.</param>
- </member>
- <member name="M:UnityEngine.Graphics.DrawTexture(UnityEngine.Rect,UnityEngine.Texture,UnityEngine.Rect,System.Int32,System.Int32,System.Int32,System.Int32,UnityEngine.Material)">
- <summary>
- <para>Draw a texture in screen coordinates.</para>
- </summary>
- <param name="screenRect">Rectangle on the screen to use for the texture. In pixel coordinates with (0,0) in the upper-left corner.</param>
- <param name="texture">Texture to draw.</param>
- <param name="sourceRect">Region of the texture to use. In normalized coordinates with (0,0) in the bottom-left corner.</param>
- <param name="leftBorder">Number of pixels from the left that are not affected by scale.</param>
- <param name="rightBorder">Number of pixels from the right that are not affected by scale.</param>
- <param name="topBorder">Number of pixels from the top that are not affected by scale.</param>
- <param name="bottomBorder">Number of pixels from the bottom that are not affected by scale.</param>
- <param name="color">Color that modulates the output. The neutral value is (0.5, 0.5, 0.5, 0.5). Set as vertex color for the shader.</param>
- <param name="mat">Custom Material that can be used to draw the texture. If null is passed, a default material with the Internal-GUITexture.shader is used.</param>
- <param name="pass">If -1 (default), draws all passes in the material. Otherwise, draws given pass only.</param>
- </member>
- <member name="M:UnityEngine.Graphics.DrawTexture(UnityEngine.Rect,UnityEngine.Texture,UnityEngine.Rect,System.Int32,System.Int32,System.Int32,System.Int32,UnityEngine.Color,UnityEngine.Material)">
- <summary>
- <para>Draw a texture in screen coordinates.</para>
- </summary>
- <param name="screenRect">Rectangle on the screen to use for the texture. In pixel coordinates with (0,0) in the upper-left corner.</param>
- <param name="texture">Texture to draw.</param>
- <param name="sourceRect">Region of the texture to use. In normalized coordinates with (0,0) in the bottom-left corner.</param>
- <param name="leftBorder">Number of pixels from the left that are not affected by scale.</param>
- <param name="rightBorder">Number of pixels from the right that are not affected by scale.</param>
- <param name="topBorder">Number of pixels from the top that are not affected by scale.</param>
- <param name="bottomBorder">Number of pixels from the bottom that are not affected by scale.</param>
- <param name="color">Color that modulates the output. The neutral value is (0.5, 0.5, 0.5, 0.5). Set as vertex color for the shader.</param>
- <param name="mat">Custom Material that can be used to draw the texture. If null is passed, a default material with the Internal-GUITexture.shader is used.</param>
- <param name="pass">If -1 (default), draws all passes in the material. Otherwise, draws given pass only.</param>
- </member>
- <member name="M:UnityEngine.Graphics.ExecuteCommandBuffer(UnityEngine.Rendering.CommandBuffer)">
- <summary>
- <para>Execute a command buffer.</para>
- </summary>
- <param name="buffer">The buffer to execute.</param>
- </member>
- <member name="M:UnityEngine.Graphics.ExecuteCommandBufferAsync(UnityEngine.Rendering.CommandBuffer,UnityEngine.Rendering.ComputeQueueType)">
- <summary>
- <para>Executes a command buffer on an async compute queue with the queue selected based on the ComputeQueueType parameter passed.
-
-It is required that all of the commands within the command buffer be of a type suitable for execution on the async compute queues. If the buffer contains any commands that are not appropriate then an error will be logged and displayed in the editor window. Specifically the following commands are permitted in a CommandBuffer intended for async execution:
-
-CommandBuffer.BeginSample
-
-CommandBuffer.CopyCounterValue
-
-CommandBuffer.CopyTexture
-
-CommandBuffer.CreateGPUFence
-
-CommandBuffer.DispatchCompute
-
-CommandBuffer.EndSample
-
-CommandBuffer.IssuePluginEvent
-
-CommandBuffer.SetComputeBufferParam
-
-CommandBuffer.SetComputeFloatParam
-
-CommandBuffer.SetComputeFloatParams
-
-CommandBuffer.SetComputeTextureParam
-
-CommandBuffer.SetComputeVectorParam
-
-CommandBuffer.WaitOnGPUFence
-
-All of the commands within the buffer are guaranteed to be executed on the same queue. If the target platform does not support async compute queues then the work is dispatched on the graphics queue.</para>
- </summary>
- <param name="buffer">The CommandBuffer to be executed.</param>
- <param name="queueType">Describes the desired async compute queue the suuplied CommandBuffer should be executed on.</param>
- </member>
- <member name="M:UnityEngine.Graphics.SetRandomWriteTarget(System.Int32,UnityEngine.ComputeBuffer,System.Boolean)">
- <summary>
- <para>Set random write target for level pixel shaders.</para>
- </summary>
- <param name="index">Index of the random write target in the shader.</param>
- <param name="uav">RenderTexture to set as write target.</param>
- <param name="preserveCounterValue">Whether to leave the append/consume counter value unchanged.</param>
- </member>
- <member name="M:UnityEngine.Graphics.SetRandomWriteTarget(System.Int32,UnityEngine.RenderTexture)">
- <summary>
- <para>Set random write target for level pixel shaders.</para>
- </summary>
- <param name="index">Index of the random write target in the shader.</param>
- <param name="uav">RenderTexture to set as write target.</param>
- <param name="preserveCounterValue">Whether to leave the append/consume counter value unchanged.</param>
- </member>
- <member name="M:UnityEngine.Graphics.SetRenderTarget(UnityEngine.RenderTexture,System.Int32,UnityEngine.CubemapFace,System.Int32)">
- <summary>
- <para>Sets current render target.</para>
- </summary>
- <param name="rt">RenderTexture to set as active render target.</param>
- <param name="mipLevel">Mipmap level to render into (use 0 if not mipmapped).</param>
- <param name="face">Cubemap face to render into (use Unknown if not a cubemap).</param>
- <param name="depthSlice">Depth slice to render into (use 0 if not a 3D or 2DArray render target).</param>
- <param name="colorBuffer">Color buffer to render into.</param>
- <param name="depthBuffer">Depth buffer to render into.</param>
- <param name="colorBuffers">Color buffers to render into (for multiple render target effects).</param>
- <param name="setup">Full render target setup information.</param>
- </member>
- <member name="M:UnityEngine.Graphics.SetRenderTarget(UnityEngine.RenderBuffer[],UnityEngine.RenderBuffer)">
- <summary>
- <para>Sets current render target.</para>
- </summary>
- <param name="rt">RenderTexture to set as active render target.</param>
- <param name="mipLevel">Mipmap level to render into (use 0 if not mipmapped).</param>
- <param name="face">Cubemap face to render into (use Unknown if not a cubemap).</param>
- <param name="depthSlice">Depth slice to render into (use 0 if not a 3D or 2DArray render target).</param>
- <param name="colorBuffer">Color buffer to render into.</param>
- <param name="depthBuffer">Depth buffer to render into.</param>
- <param name="colorBuffers">Color buffers to render into (for multiple render target effects).</param>
- <param name="setup">Full render target setup information.</param>
- </member>
- <member name="M:UnityEngine.Graphics.SetRenderTarget(UnityEngine.RenderBuffer,UnityEngine.RenderBuffer,System.Int32,UnityEngine.CubemapFace,System.Int32)">
- <summary>
- <para>Sets current render target.</para>
- </summary>
- <param name="rt">RenderTexture to set as active render target.</param>
- <param name="mipLevel">Mipmap level to render into (use 0 if not mipmapped).</param>
- <param name="face">Cubemap face to render into (use Unknown if not a cubemap).</param>
- <param name="depthSlice">Depth slice to render into (use 0 if not a 3D or 2DArray render target).</param>
- <param name="colorBuffer">Color buffer to render into.</param>
- <param name="depthBuffer">Depth buffer to render into.</param>
- <param name="colorBuffers">Color buffers to render into (for multiple render target effects).</param>
- <param name="setup">Full render target setup information.</param>
- </member>
- <member name="M:UnityEngine.Graphics.SetRenderTarget(UnityEngine.RenderTargetSetup)">
- <summary>
- <para>Sets current render target.</para>
- </summary>
- <param name="rt">RenderTexture to set as active render target.</param>
- <param name="mipLevel">Mipmap level to render into (use 0 if not mipmapped).</param>
- <param name="face">Cubemap face to render into (use Unknown if not a cubemap).</param>
- <param name="depthSlice">Depth slice to render into (use 0 if not a 3D or 2DArray render target).</param>
- <param name="colorBuffer">Color buffer to render into.</param>
- <param name="depthBuffer">Depth buffer to render into.</param>
- <param name="colorBuffers">Color buffers to render into (for multiple render target effects).</param>
- <param name="setup">Full render target setup information.</param>
- </member>
- <member name="M:UnityEngine.Graphics.WaitOnGPUFence(UnityEngine.Rendering.GPUFence,UnityEngine.Rendering.SynchronisationStage)">
- <summary>
- <para>Instructs the GPU's processing of the graphics queue to wait until the given GPUFence is passed.</para>
- </summary>
- <param name="fence">The GPUFence that the GPU will be instructed to wait upon before proceeding with its processing of the graphics queue.</param>
- <param name="stage">On some platforms there is a significant gap between the vertex processing completing and the pixel processing begining for a given draw call. This parameter allows for requested wait to be before the next items vertex or pixel processing begins. If a compute shader dispatch is the next item to be submitted then this parameter is ignored.</param>
- </member>
- <member name="T:UnityEngine.GUIElement">
- <summary>
- <para>Base class for images &amp; text strings displayed in a GUI.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.GUIElement.GetScreenRect()">
- <summary>
- <para>Returns bounding rectangle of GUIElement in screen coordinates.</para>
- </summary>
- <param name="camera"></param>
- </member>
- <member name="M:UnityEngine.GUIElement.GetScreenRect(UnityEngine.Camera)">
- <summary>
- <para>Returns bounding rectangle of GUIElement in screen coordinates.</para>
- </summary>
- <param name="camera"></param>
- </member>
- <member name="M:UnityEngine.GUIElement.HitTest(UnityEngine.Vector3)">
- <summary>
- <para>Is a point on screen inside the element?</para>
- </summary>
- <param name="screenPosition"></param>
- <param name="camera"></param>
- </member>
- <member name="M:UnityEngine.GUIElement.HitTest(UnityEngine.Vector3,UnityEngine.Camera)">
- <summary>
- <para>Is a point on screen inside the element?</para>
- </summary>
- <param name="screenPosition"></param>
- <param name="camera"></param>
- </member>
- <member name="T:UnityEngine.GUILayer">
- <summary>
- <para>Component added to a camera to make it render 2D GUI elements.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.GUILayer.HitTest(UnityEngine.Vector3)">
- <summary>
- <para>Get the GUI element at a specific screen position.</para>
- </summary>
- <param name="screenPosition"></param>
- </member>
- <member name="T:UnityEngine.GUITexture">
- <summary>
- <para>A texture image used in a 2D GUI.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUITexture.border">
- <summary>
- <para>The border defines the number of pixels from the edge that are not affected by scale.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUITexture.color">
- <summary>
- <para>The color of the GUI texture.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUITexture.pixelInset">
- <summary>
- <para>Pixel inset used for pixel adjustments for size and position.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUITexture.texture">
- <summary>
- <para>The texture used for drawing.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Gyroscope">
- <summary>
- <para>Interface into the Gyroscope.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Gyroscope.attitude">
- <summary>
- <para>Returns the attitude (ie, orientation in space) of the device.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Gyroscope.enabled">
- <summary>
- <para>Sets or retrieves the enabled status of this gyroscope.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Gyroscope.gravity">
- <summary>
- <para>Returns the gravity acceleration vector expressed in the device's reference frame.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Gyroscope.rotationRate">
- <summary>
- <para>Returns rotation rate as measured by the device's gyroscope.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Gyroscope.rotationRateUnbiased">
- <summary>
- <para>Returns unbiased rotation rate as measured by the device's gyroscope.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Gyroscope.updateInterval">
- <summary>
- <para>Sets or retrieves gyroscope interval in seconds.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Gyroscope.userAcceleration">
- <summary>
- <para>Returns the acceleration that the user is giving to the device.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Hash128">
- <summary>
- <para>Represent the hash value.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Hash128.isValid">
- <summary>
- <para>Get if the hash value is valid or not. (Read Only)</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Hash128.Compute(System.String)">
- <summary>
- <para>Compute a hash of the input string.</para>
- </summary>
- <param name="hashString"></param>
- </member>
- <member name="M:UnityEngine.Hash128.#ctor(System.UInt32,System.UInt32,System.UInt32,System.UInt32)">
- <summary>
- <para>Construct the Hash128.</para>
- </summary>
- <param name="u32_0"></param>
- <param name="u32_1"></param>
- <param name="u32_2"></param>
- <param name="u32_3"></param>
- </member>
- <member name="M:UnityEngine.Hash128.Parse(System.String)">
- <summary>
- <para>Convert the input string to Hash128.</para>
- </summary>
- <param name="hashString"></param>
- </member>
- <member name="M:UnityEngine.Hash128.ToString">
- <summary>
- <para>Convert Hash128 to string.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.HeaderAttribute">
- <summary>
- <para>Use this PropertyAttribute to add a header above some fields in the Inspector.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HeaderAttribute.header">
- <summary>
- <para>The header text.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.HeaderAttribute.#ctor(System.String)">
- <summary>
- <para>Add a header above some fields in the Inspector.</para>
- </summary>
- <param name="header">The header text.</param>
- </member>
- <member name="T:UnityEngine.HelpURLAttribute">
- <summary>
- <para>Provide a custom documentation URL for a class.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.HelpURLAttribute.#ctor(System.String)">
- <summary>
- <para>Initialize the HelpURL attribute with a documentation url.</para>
- </summary>
- <param name="url">The custom documentation URL for this class.</param>
- </member>
- <member name="P:UnityEngine.HelpURLAttribute.URL">
- <summary>
- <para>The documentation URL specified for this class.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.HideFlags">
- <summary>
- <para>Bit mask that controls object destruction, saving and visibility in inspectors.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HideFlags.DontSave">
- <summary>
- <para>The object will not be saved to the scene. It will not be destroyed when a new scene is loaded. It is a shortcut for HideFlags.DontSaveInBuild | HideFlags.DontSaveInEditor | HideFlags.DontUnloadUnusedAsset.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HideFlags.DontSaveInBuild">
- <summary>
- <para>The object will not be saved when building a player.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HideFlags.DontSaveInEditor">
- <summary>
- <para>The object will not be saved to the scene in the editor.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HideFlags.DontUnloadUnusedAsset">
- <summary>
- <para>The object will not be unloaded by Resources.UnloadUnusedAssets.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HideFlags.HideAndDontSave">
- <summary>
- <para>The GameObject is not shown in the Hierarchy, not saved to to Scenes, and not unloaded by Resources.UnloadUnusedAssets.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HideFlags.HideInHierarchy">
- <summary>
- <para>The object will not appear in the hierarchy.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HideFlags.HideInInspector">
- <summary>
- <para>It is not possible to view it in the inspector.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HideFlags.None">
- <summary>
- <para>A normal, visible object. This is the default.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HideFlags.NotEditable">
- <summary>
- <para>The object is not be editable in the inspector.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.HideInInspector">
- <summary>
- <para>Makes a variable not show up in the inspector but be serialized.</para>
- </summary>
- </member>
- <member name="?:UnityEngine.IExposedPropertyTable">
- <summary>
- <para>Interface for objects used as resolvers on ExposedReferences.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.IExposedPropertyTable.ClearReferenceValue(UnityEngine.PropertyName)">
- <summary>
- <para>Remove a value for the given reference.</para>
- </summary>
- <param name="id">Identifier of the ExposedReference.</param>
- </member>
- <member name="M:UnityEngine.IExposedPropertyTable.GetReferenceValue(UnityEngine.PropertyName,System.Boolean&amp;)">
- <summary>
- <para>Retrieves a value for the given identifier.</para>
- </summary>
- <param name="id">Identifier of the ExposedReference.</param>
- <param name="idValid">Is the identifier valid?</param>
- <returns>
- <para>The value stored in the table.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.IExposedPropertyTable.SetReferenceValue(UnityEngine.PropertyName,UnityEngine.Object)">
- <summary>
- <para>Assigns a value for an ExposedReference.</para>
- </summary>
- <param name="id">Identifier of the ExposedReference.</param>
- <param name="value">The value to assigned to the ExposedReference.</param>
- </member>
- <member name="?:UnityEngine.ILogger">
- <summary>
- <para>Interface for custom logger implementation.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ILogger.filterLogType">
- <summary>
- <para>To selective enable debug log message.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ILogger.logEnabled">
- <summary>
- <para>To runtime toggle debug logging [ON/OFF].</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ILogger.logHandler">
- <summary>
- <para>Set Logger.ILogHandler.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.ILogger.IsLogTypeAllowed(UnityEngine.LogType)">
- <summary>
- <para>Check logging is enabled based on the LogType.</para>
- </summary>
- <param name="logType"></param>
- <returns>
- <para>Retrun true in case logs of LogType will be logged otherwise returns false.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.ILogger.Log(UnityEngine.LogType,System.Object)">
- <summary>
- <para>Logs message to the Unity Console using default logger.</para>
- </summary>
- <param name="logType"></param>
- <param name="message"></param>
- <param name="context"></param>
- <param name="tag"></param>
- </member>
- <member name="M:UnityEngine.ILogger.Log(UnityEngine.LogType,System.Object,UnityEngine.Object)">
- <summary>
- <para>Logs message to the Unity Console using default logger.</para>
- </summary>
- <param name="logType"></param>
- <param name="message"></param>
- <param name="context"></param>
- <param name="tag"></param>
- </member>
- <member name="M:UnityEngine.ILogger.Log(UnityEngine.LogType,System.String,System.Object)">
- <summary>
- <para>Logs message to the Unity Console using default logger.</para>
- </summary>
- <param name="logType"></param>
- <param name="message"></param>
- <param name="context"></param>
- <param name="tag"></param>
- </member>
- <member name="M:UnityEngine.ILogger.Log(UnityEngine.LogType,System.String,System.Object,UnityEngine.Object)">
- <summary>
- <para>Logs message to the Unity Console using default logger.</para>
- </summary>
- <param name="logType"></param>
- <param name="message"></param>
- <param name="context"></param>
- <param name="tag"></param>
- </member>
- <member name="M:UnityEngine.ILogger.Log(System.Object)">
- <summary>
- <para>Logs message to the Unity Console using default logger.</para>
- </summary>
- <param name="logType"></param>
- <param name="message"></param>
- <param name="context"></param>
- <param name="tag"></param>
- </member>
- <member name="M:UnityEngine.ILogger.Log(System.String,System.Object)">
- <summary>
- <para>Logs message to the Unity Console using default logger.</para>
- </summary>
- <param name="logType"></param>
- <param name="message"></param>
- <param name="context"></param>
- <param name="tag"></param>
- </member>
- <member name="M:UnityEngine.ILogger.Log(System.String,System.Object,UnityEngine.Object)">
- <summary>
- <para>Logs message to the Unity Console using default logger.</para>
- </summary>
- <param name="logType"></param>
- <param name="message"></param>
- <param name="context"></param>
- <param name="tag"></param>
- </member>
- <member name="M:UnityEngine.ILogger.LogError(System.String,System.Object)">
- <summary>
- <para>A variant of ILogger.Log that logs an error message.</para>
- </summary>
- <param name="tag"></param>
- <param name="message"></param>
- <param name="context"></param>
- </member>
- <member name="M:UnityEngine.ILogger.LogError(System.String,System.Object,UnityEngine.Object)">
- <summary>
- <para>A variant of ILogger.Log that logs an error message.</para>
- </summary>
- <param name="tag"></param>
- <param name="message"></param>
- <param name="context"></param>
- </member>
- <member name="M:UnityEngine.ILogger.LogException(System.Exception)">
- <summary>
- <para>A variant of ILogger.Log that logs an exception message.</para>
- </summary>
- <param name="exception"></param>
- </member>
- <member name="M:UnityEngine.ILogger.LogFormat(UnityEngine.LogType,System.String,System.Object[])">
- <summary>
- <para>Logs a formatted message.</para>
- </summary>
- <param name="logType"></param>
- <param name="format"></param>
- <param name="args"></param>
- </member>
- <member name="M:UnityEngine.ILogger.LogWarning(System.String,System.Object)">
- <summary>
- <para>A variant of Logger.Log that logs an warning message.</para>
- </summary>
- <param name="tag"></param>
- <param name="message"></param>
- <param name="context"></param>
- </member>
- <member name="M:UnityEngine.ILogger.LogWarning(System.String,System.Object,UnityEngine.Object)">
- <summary>
- <para>A variant of Logger.Log that logs an warning message.</para>
- </summary>
- <param name="tag"></param>
- <param name="message"></param>
- <param name="context"></param>
- </member>
- <member name="?:UnityEngine.ILogHandler">
- <summary>
- <para>Interface for custom log handler implementation.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.ILogHandler.LogException(System.Exception,UnityEngine.Object)">
- <summary>
- <para>A variant of ILogHandler.LogFormat that logs an exception message.</para>
- </summary>
- <param name="exception">Runtime Exception.</param>
- <param name="context">Object to which the message applies.</param>
- </member>
- <member name="M:UnityEngine.ILogHandler.LogFormat(UnityEngine.LogType,UnityEngine.Object,System.String,System.Object[])">
- <summary>
- <para>Logs a formatted message.</para>
- </summary>
- <param name="logType">The type of the log message.</param>
- <param name="context">Object to which the message applies.</param>
- <param name="format">A composite format string.</param>
- <param name="args">Format arguments.</param>
- </member>
- <member name="T:UnityEngine.ImageEffectAfterScale">
- <summary>
- <para>Any Image Effect with this attribute will be rendered after Dynamic Resolution stage.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ImageEffectAllowedInSceneView">
- <summary>
- <para>Any Image Effect with this attribute can be rendered into the scene view camera.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ImageEffectOpaque">
- <summary>
- <para>Any Image Effect with this attribute will be rendered after opaque geometry but before transparent geometry.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ImageEffectTransformsToLDR">
- <summary>
- <para>When using HDR rendering it can sometime be desirable to switch to LDR rendering during ImageEffect rendering.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.IMECompositionMode">
- <summary>
- <para>Controls IME input.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.IMECompositionMode.Auto">
- <summary>
- <para>Enable IME input only when a text field is selected (default).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.IMECompositionMode.Off">
- <summary>
- <para>Disable IME input.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.IMECompositionMode.On">
- <summary>
- <para>Enable IME input.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Input">
- <summary>
- <para>Interface into the Input system.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Input.acceleration">
- <summary>
- <para>Last measured linear acceleration of a device in three-dimensional space. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Input.accelerationEventCount">
- <summary>
- <para>Number of acceleration measurements which occurred during last frame.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Input.accelerationEvents">
- <summary>
- <para>Returns list of acceleration measurements which occurred during the last frame. (Read Only) (Allocates temporary variables).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Input.anyKey">
- <summary>
- <para>Is any key or mouse button currently held down? (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Input.anyKeyDown">
- <summary>
- <para>Returns true the first frame the user hits any key or mouse button. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Input.backButtonLeavesApp">
- <summary>
- <para>Should Back button quit the application?
-
-Only usable on Android, Windows Phone or Windows Tablets.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Input.compass">
- <summary>
- <para>Property for accessing compass (handheld devices only). (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Input.compensateSensors">
- <summary>
- <para>This property controls if input sensors should be compensated for screen orientation.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Input.compositionCursorPos">
- <summary>
- <para>The current text input position used by IMEs to open windows.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Input.compositionString">
- <summary>
- <para>The current IME composition string being typed by the user.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Input.deviceOrientation">
- <summary>
- <para>Device physical orientation as reported by OS. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Input.eatKeyPressOnTextFieldFocus">
- <summary>
- <para>Property indicating whether keypresses are eaten by a textinput if it has focus (default true).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Input.gyro">
- <summary>
- <para>Returns default gyroscope.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Input.imeCompositionMode">
- <summary>
- <para>Controls enabling and disabling of IME input composition.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Input.imeIsSelected">
- <summary>
- <para>Does the user have an IME keyboard input source selected?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Input.inputString">
- <summary>
- <para>Returns the keyboard input entered this frame. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Input.location">
- <summary>
- <para>Property for accessing device location (handheld devices only). (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Input.mousePosition">
- <summary>
- <para>The current mouse position in pixel coordinates. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Input.mousePresent">
- <summary>
- <para>Indicates if a mouse device is detected.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Input.mouseScrollDelta">
- <summary>
- <para>The current mouse scroll delta. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Input.multiTouchEnabled">
- <summary>
- <para>Property indicating whether the system handles multiple touches.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Input.simulateMouseWithTouches">
- <summary>
- <para>Enables/Disables mouse simulation with touches. By default this option is enabled.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Input.stylusTouchSupported">
- <summary>
- <para>Returns true when Stylus Touch is supported by a device or platform.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Input.touchCount">
- <summary>
- <para>Number of touches. Guaranteed not to change throughout the frame. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Input.touches">
- <summary>
- <para>Returns list of objects representing status of all touches during last frame. (Read Only) (Allocates temporary variables).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Input.touchPressureSupported">
- <summary>
- <para>Bool value which let's users check if touch pressure is supported.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Input.touchSupported">
- <summary>
- <para>Returns whether the device on which application is currently running supports touch input.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Input.GetAccelerationEvent(System.Int32)">
- <summary>
- <para>Returns specific acceleration measurement which occurred during last frame. (Does not allocate temporary variables).</para>
- </summary>
- <param name="index"></param>
- </member>
- <member name="M:UnityEngine.Input.GetAxis(System.String)">
- <summary>
- <para>Returns the value of the virtual axis identified by axisName.</para>
- </summary>
- <param name="axisName"></param>
- </member>
- <member name="M:UnityEngine.Input.GetAxisRaw(System.String)">
- <summary>
- <para>Returns the value of the virtual axis identified by axisName with no smoothing filtering applied.</para>
- </summary>
- <param name="axisName"></param>
- </member>
- <member name="M:UnityEngine.Input.GetButton(System.String)">
- <summary>
- <para>Returns true while the virtual button identified by buttonName is held down.</para>
- </summary>
- <param name="buttonName">The name of the button such as Jump.</param>
- <returns>
- <para>True when an axis has been pressed and not released.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Input.GetButtonDown(System.String)">
- <summary>
- <para>Returns true during the frame the user pressed down the virtual button identified by buttonName.</para>
- </summary>
- <param name="buttonName"></param>
- </member>
- <member name="M:UnityEngine.Input.GetButtonUp(System.String)">
- <summary>
- <para>Returns true the first frame the user releases the virtual button identified by buttonName.</para>
- </summary>
- <param name="buttonName"></param>
- </member>
- <member name="M:UnityEngine.Input.GetJoystickNames">
- <summary>
- <para>Returns an array of strings describing the connected joysticks.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Input.GetKey(System.String)">
- <summary>
- <para>Returns true while the user holds down the key identified by name. Think auto fire.</para>
- </summary>
- <param name="name"></param>
- </member>
- <member name="M:UnityEngine.Input.GetKey(UnityEngine.KeyCode)">
- <summary>
- <para>Returns true while the user holds down the key identified by the key KeyCode enum parameter.</para>
- </summary>
- <param name="key"></param>
- </member>
- <member name="M:UnityEngine.Input.GetKeyDown(System.String)">
- <summary>
- <para>Returns true during the frame the user starts pressing down the key identified by name.</para>
- </summary>
- <param name="name"></param>
- </member>
- <member name="M:UnityEngine.Input.GetKeyDown(UnityEngine.KeyCode)">
- <summary>
- <para>Returns true during the frame the user starts pressing down the key identified by the key KeyCode enum parameter.</para>
- </summary>
- <param name="key"></param>
- </member>
- <member name="M:UnityEngine.Input.GetKeyUp(System.String)">
- <summary>
- <para>Returns true during the frame the user releases the key identified by name.</para>
- </summary>
- <param name="name"></param>
- </member>
- <member name="M:UnityEngine.Input.GetKeyUp(UnityEngine.KeyCode)">
- <summary>
- <para>Returns true during the frame the user releases the key identified by the key KeyCode enum parameter.</para>
- </summary>
- <param name="key"></param>
- </member>
- <member name="M:UnityEngine.Input.GetMouseButton(System.Int32)">
- <summary>
- <para>Returns whether the given mouse button is held down.</para>
- </summary>
- <param name="button"></param>
- </member>
- <member name="M:UnityEngine.Input.GetMouseButtonDown(System.Int32)">
- <summary>
- <para>Returns true during the frame the user pressed the given mouse button.</para>
- </summary>
- <param name="button"></param>
- </member>
- <member name="M:UnityEngine.Input.GetMouseButtonUp(System.Int32)">
- <summary>
- <para>Returns true during the frame the user releases the given mouse button.</para>
- </summary>
- <param name="button"></param>
- </member>
- <member name="M:UnityEngine.Input.GetTouch(System.Int32)">
- <summary>
- <para>Returns object representing status of a specific touch. (Does not allocate temporary variables).</para>
- </summary>
- <param name="index"></param>
- </member>
- <member name="M:UnityEngine.Input.IsJoystickPreconfigured(System.String)">
- <summary>
- <para>Determine whether a particular joystick model has been preconfigured by Unity. (Linux-only).</para>
- </summary>
- <param name="joystickName">The name of the joystick to check (returned by Input.GetJoystickNames).</param>
- <returns>
- <para>True if the joystick layout has been preconfigured; false otherwise.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Input.ResetInputAxes">
- <summary>
- <para>Resets all input. After ResetInputAxes all axes return to 0 and all buttons return to 0 for one frame.</para>
- </summary>
- </member>
- <member name="?:UnityEngine.ISerializationCallbackReceiver">
- <summary>
- <para>Interface to receive callbacks upon serialization and deserialization.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.ISerializationCallbackReceiver.OnAfterDeserialize">
- <summary>
- <para>Implement this method to receive a callback after Unity deserializes your object.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.ISerializationCallbackReceiver.OnBeforeSerialize">
- <summary>
- <para>Implement this method to receive a callback before Unity serializes your object.</para>
- </summary>
- </member>
- <member name="?:UnityEngine.Jobs.IJobParallelForTransform">
- <summary>
- <para>IJobParallelForTransform.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Jobs.IJobParallelForTransform.Execute(System.Int32,UnityEngine.Jobs.TransformAccess)">
- <summary>
- <para>Execute.</para>
- </summary>
- <param name="index">Index.</param>
- <param name="transform">TransformAccessArray.</param>
- </member>
- <member name="T:UnityEngine.Jobs.IJobParallelForTransformExtensions">
- <summary>
- <para>Extension methods for IJobParallelForTransform.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Jobs.IJobParallelForTransformExtensions.Schedule(T,UnityEngine.Jobs.TransformAccessArray,Unity.Jobs.JobHandle)">
- <summary>
- <para>Schedule.</para>
- </summary>
- <param name="jobData">Job data.</param>
- <param name="transforms">TransformAccessArray.</param>
- <param name="dependsOn">Job handle dependency.</param>
- <returns>
- <para>Job handle.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.Jobs.TransformAccess">
- <summary>
- <para>Position, rotation and scale of an object.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Jobs.TransformAccess.localPosition">
- <summary>
- <para>The scale of the transform relative to the parent.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Jobs.TransformAccess.localRotation">
- <summary>
- <para>The rotation of the transform relative to the parent transform's rotation.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Jobs.TransformAccess.localScale">
- <summary>
- <para>The scale of the transform relative to the parent.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Jobs.TransformAccess.position">
- <summary>
- <para>The position of the transform in world space.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Jobs.TransformAccess.rotation">
- <summary>
- <para>The rotation of the transform in world space stored as a Quaternion.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Jobs.TransformAccessArray">
- <summary>
- <para>TransformAccessArray.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Jobs.TransformAccessArray.capacity">
- <summary>
- <para>Returns array capacity.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Jobs.TransformAccessArray.isCreated">
- <summary>
- <para>isCreated.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Jobs.TransformAccessArray.length">
- <summary>
- <para>Length.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Jobs.TransformAccessArray.Add(UnityEngine.Transform)">
- <summary>
- <para>Add.</para>
- </summary>
- <param name="transform">Transform.</param>
- </member>
- <member name="M:UnityEngine.Jobs.TransformAccessArray.Allocate(System.Int32,System.Int32,UnityEngine.Jobs.TransformAccessArray&amp;)">
- <summary>
- <para>Allocate.</para>
- </summary>
- <param name="capacity">Capacity.</param>
- <param name="desiredJobCount">Desired job count.</param>
- <param name="array">TransformAccessArray.</param>
- </member>
- <member name="M:UnityEngine.Jobs.TransformAccessArray.#ctor(UnityEngine.Transform[],System.Int32)">
- <summary>
- <para>Constructor.</para>
- </summary>
- <param name="transforms">Transforms.</param>
- <param name="desiredJobCount">Desired job count.</param>
- <param name="capacity">Capacity.</param>
- </member>
- <member name="M:UnityEngine.Jobs.TransformAccessArray.#ctor(System.Int32,System.Int32)">
- <summary>
- <para>Constructor.</para>
- </summary>
- <param name="transforms">Transforms.</param>
- <param name="desiredJobCount">Desired job count.</param>
- <param name="capacity">Capacity.</param>
- </member>
- <member name="M:UnityEngine.Jobs.TransformAccessArray.Dispose">
- <summary>
- <para>Dispose.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Jobs.TransformAccessArray.RemoveAtSwapBack(System.Int32)">
- <summary>
- <para>Remove item at index.</para>
- </summary>
- <param name="index">Index.</param>
- </member>
- <member name="M:UnityEngine.Jobs.TransformAccessArray.SetTransforms(UnityEngine.Transform[])">
- <summary>
- <para>Set transforms.</para>
- </summary>
- <param name="transforms">Transforms.</param>
- </member>
- <member name="P:UnityEngine.Jobs.TransformAccessArray.this">
- <summary>
- <para>Array indexer.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.KeyCode">
- <summary>
- <para>Key codes returned by Event.keyCode. These map directly to a physical key on the keyboard.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.A">
- <summary>
- <para>'a' key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Alpha0">
- <summary>
- <para>The '0' key on the top of the alphanumeric keyboard.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Alpha1">
- <summary>
- <para>The '1' key on the top of the alphanumeric keyboard.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Alpha2">
- <summary>
- <para>The '2' key on the top of the alphanumeric keyboard.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Alpha3">
- <summary>
- <para>The '3' key on the top of the alphanumeric keyboard.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Alpha4">
- <summary>
- <para>The '4' key on the top of the alphanumeric keyboard.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Alpha5">
- <summary>
- <para>The '5' key on the top of the alphanumeric keyboard.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Alpha6">
- <summary>
- <para>The '6' key on the top of the alphanumeric keyboard.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Alpha7">
- <summary>
- <para>The '7' key on the top of the alphanumeric keyboard.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Alpha8">
- <summary>
- <para>The '8' key on the top of the alphanumeric keyboard.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Alpha9">
- <summary>
- <para>The '9' key on the top of the alphanumeric keyboard.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.AltGr">
- <summary>
- <para>Alt Gr key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Ampersand">
- <summary>
- <para>Ampersand key '&amp;'.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Asterisk">
- <summary>
- <para>Asterisk key '*'.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.At">
- <summary>
- <para>At key '@'.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.B">
- <summary>
- <para>'b' key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.BackQuote">
- <summary>
- <para>Back quote key '`'.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Backslash">
- <summary>
- <para>Backslash key '\'.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Backspace">
- <summary>
- <para>The backspace key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Break">
- <summary>
- <para>Break key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.C">
- <summary>
- <para>'c' key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.CapsLock">
- <summary>
- <para>Capslock key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Caret">
- <summary>
- <para>Caret key '^'.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Clear">
- <summary>
- <para>The Clear key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Colon">
- <summary>
- <para>Colon ':' key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Comma">
- <summary>
- <para>Comma ',' key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.D">
- <summary>
- <para>'d' key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Delete">
- <summary>
- <para>The forward delete key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Dollar">
- <summary>
- <para>Dollar sign key '$'.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.DoubleQuote">
- <summary>
- <para>Double quote key '"'.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.DownArrow">
- <summary>
- <para>Down arrow key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.E">
- <summary>
- <para>'e' key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.End">
- <summary>
- <para>End key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Equals">
- <summary>
- <para>Equals '=' key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Escape">
- <summary>
- <para>Escape key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Exclaim">
- <summary>
- <para>Exclamation mark key '!'.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.F">
- <summary>
- <para>'f' key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.F1">
- <summary>
- <para>F1 function key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.F10">
- <summary>
- <para>F10 function key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.F11">
- <summary>
- <para>F11 function key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.F12">
- <summary>
- <para>F12 function key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.F13">
- <summary>
- <para>F13 function key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.F14">
- <summary>
- <para>F14 function key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.F15">
- <summary>
- <para>F15 function key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.F2">
- <summary>
- <para>F2 function key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.F3">
- <summary>
- <para>F3 function key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.F4">
- <summary>
- <para>F4 function key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.F5">
- <summary>
- <para>F5 function key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.F6">
- <summary>
- <para>F6 function key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.F7">
- <summary>
- <para>F7 function key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.F8">
- <summary>
- <para>F8 function key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.F9">
- <summary>
- <para>F9 function key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.G">
- <summary>
- <para>'g' key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Greater">
- <summary>
- <para>Greater than '&gt;' key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.H">
- <summary>
- <para>'h' key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Hash">
- <summary>
- <para>Hash key '#'.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Help">
- <summary>
- <para>Help key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Home">
- <summary>
- <para>Home key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.I">
- <summary>
- <para>'i' key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Insert">
- <summary>
- <para>Insert key key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.J">
- <summary>
- <para>'j' key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick1Button0">
- <summary>
- <para>Button 0 on first joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick1Button1">
- <summary>
- <para>Button 1 on first joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick1Button10">
- <summary>
- <para>Button 10 on first joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick1Button11">
- <summary>
- <para>Button 11 on first joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick1Button12">
- <summary>
- <para>Button 12 on first joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick1Button13">
- <summary>
- <para>Button 13 on first joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick1Button14">
- <summary>
- <para>Button 14 on first joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick1Button15">
- <summary>
- <para>Button 15 on first joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick1Button16">
- <summary>
- <para>Button 16 on first joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick1Button17">
- <summary>
- <para>Button 17 on first joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick1Button18">
- <summary>
- <para>Button 18 on first joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick1Button19">
- <summary>
- <para>Button 19 on first joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick1Button2">
- <summary>
- <para>Button 2 on first joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick1Button3">
- <summary>
- <para>Button 3 on first joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick1Button4">
- <summary>
- <para>Button 4 on first joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick1Button5">
- <summary>
- <para>Button 5 on first joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick1Button6">
- <summary>
- <para>Button 6 on first joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick1Button7">
- <summary>
- <para>Button 7 on first joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick1Button8">
- <summary>
- <para>Button 8 on first joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick1Button9">
- <summary>
- <para>Button 9 on first joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick2Button0">
- <summary>
- <para>Button 0 on second joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick2Button1">
- <summary>
- <para>Button 1 on second joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick2Button10">
- <summary>
- <para>Button 10 on second joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick2Button11">
- <summary>
- <para>Button 11 on second joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick2Button12">
- <summary>
- <para>Button 12 on second joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick2Button13">
- <summary>
- <para>Button 13 on second joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick2Button14">
- <summary>
- <para>Button 14 on second joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick2Button15">
- <summary>
- <para>Button 15 on second joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick2Button16">
- <summary>
- <para>Button 16 on second joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick2Button17">
- <summary>
- <para>Button 17 on second joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick2Button18">
- <summary>
- <para>Button 18 on second joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick2Button19">
- <summary>
- <para>Button 19 on second joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick2Button2">
- <summary>
- <para>Button 2 on second joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick2Button3">
- <summary>
- <para>Button 3 on second joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick2Button4">
- <summary>
- <para>Button 4 on second joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick2Button5">
- <summary>
- <para>Button 5 on second joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick2Button6">
- <summary>
- <para>Button 6 on second joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick2Button7">
- <summary>
- <para>Button 7 on second joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick2Button8">
- <summary>
- <para>Button 8 on second joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick2Button9">
- <summary>
- <para>Button 9 on second joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick3Button0">
- <summary>
- <para>Button 0 on third joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick3Button1">
- <summary>
- <para>Button 1 on third joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick3Button10">
- <summary>
- <para>Button 10 on third joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick3Button11">
- <summary>
- <para>Button 11 on third joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick3Button12">
- <summary>
- <para>Button 12 on third joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick3Button13">
- <summary>
- <para>Button 13 on third joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick3Button14">
- <summary>
- <para>Button 14 on third joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick3Button15">
- <summary>
- <para>Button 15 on third joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick3Button16">
- <summary>
- <para>Button 16 on third joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick3Button17">
- <summary>
- <para>Button 17 on third joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick3Button18">
- <summary>
- <para>Button 18 on third joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick3Button19">
- <summary>
- <para>Button 19 on third joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick3Button2">
- <summary>
- <para>Button 2 on third joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick3Button3">
- <summary>
- <para>Button 3 on third joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick3Button4">
- <summary>
- <para>Button 4 on third joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick3Button5">
- <summary>
- <para>Button 5 on third joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick3Button6">
- <summary>
- <para>Button 6 on third joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick3Button7">
- <summary>
- <para>Button 7 on third joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick3Button8">
- <summary>
- <para>Button 8 on third joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick3Button9">
- <summary>
- <para>Button 9 on third joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick4Button0">
- <summary>
- <para>Button 0 on forth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick4Button1">
- <summary>
- <para>Button 1 on forth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick4Button10">
- <summary>
- <para>Button 10 on forth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick4Button11">
- <summary>
- <para>Button 11 on forth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick4Button12">
- <summary>
- <para>Button 12 on forth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick4Button13">
- <summary>
- <para>Button 13 on forth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick4Button14">
- <summary>
- <para>Button 14 on forth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick4Button15">
- <summary>
- <para>Button 15 on forth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick4Button16">
- <summary>
- <para>Button 16 on forth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick4Button17">
- <summary>
- <para>Button 17 on forth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick4Button18">
- <summary>
- <para>Button 18 on forth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick4Button19">
- <summary>
- <para>Button 19 on forth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick4Button2">
- <summary>
- <para>Button 2 on forth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick4Button3">
- <summary>
- <para>Button 3 on forth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick4Button4">
- <summary>
- <para>Button 4 on forth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick4Button5">
- <summary>
- <para>Button 5 on forth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick4Button6">
- <summary>
- <para>Button 6 on forth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick4Button7">
- <summary>
- <para>Button 7 on forth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick4Button8">
- <summary>
- <para>Button 8 on forth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick4Button9">
- <summary>
- <para>Button 9 on forth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick5Button0">
- <summary>
- <para>Button 0 on fifth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick5Button1">
- <summary>
- <para>Button 1 on fifth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick5Button10">
- <summary>
- <para>Button 10 on fifth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick5Button11">
- <summary>
- <para>Button 11 on fifth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick5Button12">
- <summary>
- <para>Button 12 on fifth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick5Button13">
- <summary>
- <para>Button 13 on fifth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick5Button14">
- <summary>
- <para>Button 14 on fifth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick5Button15">
- <summary>
- <para>Button 15 on fifth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick5Button16">
- <summary>
- <para>Button 16 on fifth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick5Button17">
- <summary>
- <para>Button 17 on fifth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick5Button18">
- <summary>
- <para>Button 18 on fifth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick5Button19">
- <summary>
- <para>Button 19 on fifth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick5Button2">
- <summary>
- <para>Button 2 on fifth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick5Button3">
- <summary>
- <para>Button 3 on fifth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick5Button4">
- <summary>
- <para>Button 4 on fifth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick5Button5">
- <summary>
- <para>Button 5 on fifth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick5Button6">
- <summary>
- <para>Button 6 on fifth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick5Button7">
- <summary>
- <para>Button 7 on fifth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick5Button8">
- <summary>
- <para>Button 8 on fifth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick5Button9">
- <summary>
- <para>Button 9 on fifth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick6Button0">
- <summary>
- <para>Button 0 on sixth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick6Button1">
- <summary>
- <para>Button 1 on sixth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick6Button10">
- <summary>
- <para>Button 10 on sixth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick6Button11">
- <summary>
- <para>Button 11 on sixth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick6Button12">
- <summary>
- <para>Button 12 on sixth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick6Button13">
- <summary>
- <para>Button 13 on sixth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick6Button14">
- <summary>
- <para>Button 14 on sixth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick6Button15">
- <summary>
- <para>Button 15 on sixth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick6Button16">
- <summary>
- <para>Button 16 on sixth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick6Button17">
- <summary>
- <para>Button 17 on sixth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick6Button18">
- <summary>
- <para>Button 18 on sixth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick6Button19">
- <summary>
- <para>Button 19 on sixth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick6Button2">
- <summary>
- <para>Button 2 on sixth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick6Button3">
- <summary>
- <para>Button 3 on sixth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick6Button4">
- <summary>
- <para>Button 4 on sixth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick6Button5">
- <summary>
- <para>Button 5 on sixth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick6Button6">
- <summary>
- <para>Button 6 on sixth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick6Button7">
- <summary>
- <para>Button 7 on sixth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick6Button8">
- <summary>
- <para>Button 8 on sixth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick6Button9">
- <summary>
- <para>Button 9 on sixth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick7Button0">
- <summary>
- <para>Button 0 on seventh joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick7Button1">
- <summary>
- <para>Button 1 on seventh joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick7Button10">
- <summary>
- <para>Button 10 on seventh joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick7Button11">
- <summary>
- <para>Button 11 on seventh joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick7Button12">
- <summary>
- <para>Button 12 on seventh joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick7Button13">
- <summary>
- <para>Button 13 on seventh joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick7Button14">
- <summary>
- <para>Button 14 on seventh joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick7Button15">
- <summary>
- <para>Button 15 on seventh joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick7Button16">
- <summary>
- <para>Button 16 on seventh joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick7Button17">
- <summary>
- <para>Button 17 on seventh joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick7Button18">
- <summary>
- <para>Button 18 on seventh joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick7Button19">
- <summary>
- <para>Button 19 on seventh joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick7Button2">
- <summary>
- <para>Button 2 on seventh joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick7Button3">
- <summary>
- <para>Button 3 on seventh joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick7Button4">
- <summary>
- <para>Button 4 on seventh joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick7Button5">
- <summary>
- <para>Button 5 on seventh joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick7Button6">
- <summary>
- <para>Button 6 on seventh joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick7Button7">
- <summary>
- <para>Button 7 on seventh joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick7Button8">
- <summary>
- <para>Button 8 on seventh joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick7Button9">
- <summary>
- <para>Button 9 on seventh joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick8Button0">
- <summary>
- <para>Button 0 on eighth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick8Button1">
- <summary>
- <para>Button 1 on eighth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick8Button10">
- <summary>
- <para>Button 10 on eighth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick8Button11">
- <summary>
- <para>Button 11 on eighth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick8Button12">
- <summary>
- <para>Button 12 on eighth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick8Button13">
- <summary>
- <para>Button 13 on eighth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick8Button14">
- <summary>
- <para>Button 14 on eighth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick8Button15">
- <summary>
- <para>Button 15 on eighth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick8Button16">
- <summary>
- <para>Button 16 on eighth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick8Button17">
- <summary>
- <para>Button 17 on eighth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick8Button18">
- <summary>
- <para>Button 18 on eighth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick8Button19">
- <summary>
- <para>Button 19 on eighth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick8Button2">
- <summary>
- <para>Button 2 on eighth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick8Button3">
- <summary>
- <para>Button 3 on eighth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick8Button4">
- <summary>
- <para>Button 4 on eighth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick8Button5">
- <summary>
- <para>Button 5 on eighth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick8Button6">
- <summary>
- <para>Button 6 on eighth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick8Button7">
- <summary>
- <para>Button 7 on eighth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick8Button8">
- <summary>
- <para>Button 8 on eighth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Joystick8Button9">
- <summary>
- <para>Button 9 on eighth joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.JoystickButton0">
- <summary>
- <para>Button 0 on any joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.JoystickButton1">
- <summary>
- <para>Button 1 on any joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.JoystickButton10">
- <summary>
- <para>Button 10 on any joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.JoystickButton11">
- <summary>
- <para>Button 11 on any joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.JoystickButton12">
- <summary>
- <para>Button 12 on any joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.JoystickButton13">
- <summary>
- <para>Button 13 on any joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.JoystickButton14">
- <summary>
- <para>Button 14 on any joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.JoystickButton15">
- <summary>
- <para>Button 15 on any joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.JoystickButton16">
- <summary>
- <para>Button 16 on any joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.JoystickButton17">
- <summary>
- <para>Button 17 on any joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.JoystickButton18">
- <summary>
- <para>Button 18 on any joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.JoystickButton19">
- <summary>
- <para>Button 19 on any joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.JoystickButton2">
- <summary>
- <para>Button 2 on any joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.JoystickButton3">
- <summary>
- <para>Button 3 on any joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.JoystickButton4">
- <summary>
- <para>Button 4 on any joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.JoystickButton5">
- <summary>
- <para>Button 5 on any joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.JoystickButton6">
- <summary>
- <para>Button 6 on any joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.JoystickButton7">
- <summary>
- <para>Button 7 on any joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.JoystickButton8">
- <summary>
- <para>Button 8 on any joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.JoystickButton9">
- <summary>
- <para>Button 9 on any joystick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.K">
- <summary>
- <para>'k' key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Keypad0">
- <summary>
- <para>Numeric keypad 0.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Keypad1">
- <summary>
- <para>Numeric keypad 1.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Keypad2">
- <summary>
- <para>Numeric keypad 2.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Keypad3">
- <summary>
- <para>Numeric keypad 3.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Keypad4">
- <summary>
- <para>Numeric keypad 4.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Keypad5">
- <summary>
- <para>Numeric keypad 5.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Keypad6">
- <summary>
- <para>Numeric keypad 6.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Keypad7">
- <summary>
- <para>Numeric keypad 7.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Keypad8">
- <summary>
- <para>Numeric keypad 8.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Keypad9">
- <summary>
- <para>Numeric keypad 9.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.KeypadDivide">
- <summary>
- <para>Numeric keypad '/'.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.KeypadEnter">
- <summary>
- <para>Numeric keypad enter.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.KeypadEquals">
- <summary>
- <para>Numeric keypad '='.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.KeypadMinus">
- <summary>
- <para>Numeric keypad '-'.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.KeypadMultiply">
- <summary>
- <para>Numeric keypad '*'.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.KeypadPeriod">
- <summary>
- <para>Numeric keypad '.'.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.KeypadPlus">
- <summary>
- <para>Numeric keypad '+'.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.L">
- <summary>
- <para>'l' key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.LeftAlt">
- <summary>
- <para>Left Alt key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.LeftApple">
- <summary>
- <para>Left Command key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.LeftArrow">
- <summary>
- <para>Left arrow key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.LeftBracket">
- <summary>
- <para>Left square bracket key '['.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.LeftCommand">
- <summary>
- <para>Left Command key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.LeftControl">
- <summary>
- <para>Left Control key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.LeftParen">
- <summary>
- <para>Left Parenthesis key '('.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.LeftShift">
- <summary>
- <para>Left shift key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.LeftWindows">
- <summary>
- <para>Left Windows key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Less">
- <summary>
- <para>Less than '&lt;' key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.M">
- <summary>
- <para>'m' key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Menu">
- <summary>
- <para>Menu key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Minus">
- <summary>
- <para>Minus '-' key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Mouse0">
- <summary>
- <para>The Left (or primary) mouse button.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Mouse1">
- <summary>
- <para>Right mouse button (or secondary mouse button).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Mouse2">
- <summary>
- <para>Middle mouse button (or third button).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Mouse3">
- <summary>
- <para>Additional (fourth) mouse button.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Mouse4">
- <summary>
- <para>Additional (fifth) mouse button.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Mouse5">
- <summary>
- <para>Additional (or sixth) mouse button.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Mouse6">
- <summary>
- <para>Additional (or seventh) mouse button.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.N">
- <summary>
- <para>'n' key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.None">
- <summary>
- <para>Not assigned (never returned as the result of a keystroke).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Numlock">
- <summary>
- <para>Numlock key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.O">
- <summary>
- <para>'o' key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.P">
- <summary>
- <para>'p' key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.PageDown">
- <summary>
- <para>Page down.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.PageUp">
- <summary>
- <para>Page up.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Pause">
- <summary>
- <para>Pause on PC machines.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Period">
- <summary>
- <para>Period '.' key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Plus">
- <summary>
- <para>Plus key '+'.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Print">
- <summary>
- <para>Print key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Q">
- <summary>
- <para>'q' key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Question">
- <summary>
- <para>Question mark '?' key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Quote">
- <summary>
- <para>Quote key '.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.R">
- <summary>
- <para>'r' key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Return">
- <summary>
- <para>Return key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.RightAlt">
- <summary>
- <para>Right Alt key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.RightApple">
- <summary>
- <para>Right Command key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.RightArrow">
- <summary>
- <para>Right arrow key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.RightBracket">
- <summary>
- <para>Right square bracket key ']'.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.RightCommand">
- <summary>
- <para>Right Command key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.RightControl">
- <summary>
- <para>Right Control key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.RightParen">
- <summary>
- <para>Right Parenthesis key ')'.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.RightShift">
- <summary>
- <para>Right shift key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.RightWindows">
- <summary>
- <para>Right Windows key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.S">
- <summary>
- <para>'s' key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.ScrollLock">
- <summary>
- <para>Scroll lock key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Semicolon">
- <summary>
- <para>Semicolon ';' key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Slash">
- <summary>
- <para>Slash '/' key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Space">
- <summary>
- <para>Space key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.SysReq">
- <summary>
- <para>Sys Req key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.T">
- <summary>
- <para>'t' key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Tab">
- <summary>
- <para>The tab key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.U">
- <summary>
- <para>'u' key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Underscore">
- <summary>
- <para>Underscore '_' key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.UpArrow">
- <summary>
- <para>Up arrow key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.V">
- <summary>
- <para>'v' key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.W">
- <summary>
- <para>'w' key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.X">
- <summary>
- <para>'x' key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Y">
- <summary>
- <para>'y' key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.KeyCode.Z">
- <summary>
- <para>'z' key.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Keyframe">
- <summary>
- <para>A single keyframe that can be injected into an animation curve.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Keyframe.inTangent">
- <summary>
- <para>Sets the incoming tangent for this key. The incoming tangent affects the slope of the curve from the previous key to this key.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Keyframe.inWeight">
- <summary>
- <para>Sets the incoming weight for this key. The incoming weight affects the slope of the curve from the previous key to this key.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Keyframe.outTangent">
- <summary>
- <para>Sets the outgoing tangent for this key. The outgoing tangent affects the slope of the curve from this key to the next key.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Keyframe.outWeight">
- <summary>
- <para>Sets the outgoing weight for this key. The outgoing weight affects the slope of the curve from this key to the next key.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Keyframe.tangentMode">
- <summary>
- <para>TangentMode is deprecated. Use AnimationUtility.SetKeyLeftTangentMode or AnimationUtility.SetKeyRightTangentMode instead.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Keyframe.time">
- <summary>
- <para>The time of the keyframe.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Keyframe.value">
- <summary>
- <para>The value of the curve at keyframe.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Keyframe.weightedMode">
- <summary>
- <para>Weighted mode for the keyframe.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Keyframe.#ctor(System.Single,System.Single)">
- <summary>
- <para>Create a keyframe.</para>
- </summary>
- <param name="time"></param>
- <param name="value"></param>
- </member>
- <member name="M:UnityEngine.Keyframe.#ctor(System.Single,System.Single,System.Single,System.Single)">
- <summary>
- <para>Create a keyframe.</para>
- </summary>
- <param name="time"></param>
- <param name="value"></param>
- <param name="inTangent"></param>
- <param name="outTangent"></param>
- </member>
- <member name="M:UnityEngine.Keyframe.#ctor(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)">
- <summary>
- <para>Create a keyframe.</para>
- </summary>
- <param name="time"></param>
- <param name="value"></param>
- <param name="inTangent"></param>
- <param name="outTangent"></param>
- <param name="inWeight"></param>
- <param name="outWeight"></param>
- </member>
- <member name="T:UnityEngine.LayerMask">
- <summary>
- <para>LayerMask allow you to display the LayerMask popup menu in the inspector.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.LayerMask.value">
- <summary>
- <para>Converts a layer mask value to an integer value.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.LayerMask.GetMask(System.String[])">
- <summary>
- <para>Given a set of layer names as defined by either a Builtin or a User Layer in the, returns the equivalent layer mask for all of them.</para>
- </summary>
- <param name="layerNames">List of layer names to convert to a layer mask.</param>
- <returns>
- <para>The layer mask created from the layerNames.</para>
- </returns>
- </member>
- <member name="?:UnityEngine.LayerMask.implop_LayerMask(int)(System.Int32)">
- <summary>
- <para>Implicitly converts an integer to a LayerMask.</para>
- </summary>
- <param name="intVal"></param>
- </member>
- <member name="M:UnityEngine.LayerMask.LayerToName(System.Int32)">
- <summary>
- <para>Given a layer number, returns the name of the layer as defined in either a Builtin or a User Layer in the.</para>
- </summary>
- <param name="layer"></param>
- </member>
- <member name="M:UnityEngine.LayerMask.NameToLayer(System.String)">
- <summary>
- <para>Given a layer name, returns the layer index as defined by either a Builtin or a User Layer in the.</para>
- </summary>
- <param name="layerName"></param>
- </member>
- <member name="T:UnityEngine.LensFlare">
- <summary>
- <para>Script interface for a.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.LensFlare.brightness">
- <summary>
- <para>The strength of the flare.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.LensFlare.color">
- <summary>
- <para>The color of the flare.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.LensFlare.fadeSpeed">
- <summary>
- <para>The fade speed of the flare.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.LensFlare.flare">
- <summary>
- <para>The to use.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Light">
- <summary>
- <para>Script interface for.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Light.bakingOutput">
- <summary>
- <para>This property describes the output of the last Global Illumination bake.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Light.bounceIntensity">
- <summary>
- <para>The multiplier that defines the strength of the bounce lighting.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Light.color">
- <summary>
- <para>The color of the light.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Light.colorTemperature">
- <summary>
- <para>
- The color temperature of the light.
- Correlated Color Temperature (abbreviated as CCT) is multiplied with the color filter when calculating the final color of a light source. The color temperature of the electromagnetic radiation emitted from an ideal black body is defined as its surface temperature in Kelvin. White is 6500K according to the D65 standard. Candle light is 1800K.
- If you want to use lightsUseCCT, lightsUseLinearIntensity has to be enabled to ensure physically correct output.
- See Also: GraphicsSettings.lightsUseLinearIntensity, GraphicsSettings.lightsUseCCT.
- </para>
- </summary>
- </member>
- <member name="P:UnityEngine.Light.commandBufferCount">
- <summary>
- <para>Number of command buffers set up on this light (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Light.cookie">
- <summary>
- <para>The cookie texture projected by the light.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Light.cookieSize">
- <summary>
- <para>The size of a directional light's cookie.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Light.cullingMask">
- <summary>
- <para>This is used to light certain objects in the scene selectively.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Light.flare">
- <summary>
- <para>The to use for this light.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Light.intensity">
- <summary>
- <para>The Intensity of a light is multiplied with the Light color.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Light.layerShadowCullDistances">
- <summary>
- <para>Per-light, per-layer shadow culling distances.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Light.lightShadowCasterMode">
- <summary>
- <para>Allows you to override the global Shadowmask Mode per light. Only use this with render pipelines that can handle per light Shadowmask modes. Incompatible with the legacy renderers.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Light.range">
- <summary>
- <para>The range of the light.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Light.renderMode">
- <summary>
- <para>How to render the light.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Light.shadowBias">
- <summary>
- <para>Shadow mapping constant bias.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Light.shadowCustomResolution">
- <summary>
- <para>The custom resolution of the shadow map.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Light.shadowNearPlane">
- <summary>
- <para>Near plane value to use for shadow frustums.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Light.shadowNormalBias">
- <summary>
- <para>Shadow mapping normal-based bias.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Light.shadowResolution">
- <summary>
- <para>The resolution of the shadow map.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Light.shadows">
- <summary>
- <para>How this light casts shadows</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Light.shadowStrength">
- <summary>
- <para>Strength of light's shadows.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Light.spotAngle">
- <summary>
- <para>The angle of the light's spotlight cone in degrees.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Light.type">
- <summary>
- <para>The type of the light.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Light.AddCommandBuffer(UnityEngine.Rendering.LightEvent,UnityEngine.Rendering.CommandBuffer)">
- <summary>
- <para>Add a command buffer to be executed at a specified place.</para>
- </summary>
- <param name="evt">When to execute the command buffer during rendering.</param>
- <param name="buffer">The buffer to execute.</param>
- <param name="shadowPassMask">A mask specifying which shadow passes to execute the buffer for.</param>
- </member>
- <member name="M:UnityEngine.Light.AddCommandBuffer(UnityEngine.Rendering.LightEvent,UnityEngine.Rendering.CommandBuffer,UnityEngine.Rendering.ShadowMapPass)">
- <summary>
- <para>Add a command buffer to be executed at a specified place.</para>
- </summary>
- <param name="evt">When to execute the command buffer during rendering.</param>
- <param name="buffer">The buffer to execute.</param>
- <param name="shadowPassMask">A mask specifying which shadow passes to execute the buffer for.</param>
- </member>
- <member name="M:UnityEngine.Light.AddCommandBufferAsync(UnityEngine.Rendering.LightEvent,UnityEngine.Rendering.CommandBuffer,UnityEngine.Rendering.ComputeQueueType)">
- <summary>
- <para>Adds a command buffer to the GPU's async compute queues and executes that command buffer when graphics processing reaches a given point.</para>
- </summary>
- <param name="evt">The point during the graphics processing at which this command buffer should commence on the GPU.</param>
- <param name="buffer">The buffer to execute.</param>
- <param name="queueType">The desired async compute queue type to execute the buffer on.</param>
- <param name="shadowPassMask">A mask specifying which shadow passes to execute the buffer for.</param>
- </member>
- <member name="M:UnityEngine.Light.AddCommandBufferAsync(UnityEngine.Rendering.LightEvent,UnityEngine.Rendering.CommandBuffer,UnityEngine.Rendering.ShadowMapPass,UnityEngine.Rendering.ComputeQueueType)">
- <summary>
- <para>Adds a command buffer to the GPU's async compute queues and executes that command buffer when graphics processing reaches a given point.</para>
- </summary>
- <param name="evt">The point during the graphics processing at which this command buffer should commence on the GPU.</param>
- <param name="buffer">The buffer to execute.</param>
- <param name="queueType">The desired async compute queue type to execute the buffer on.</param>
- <param name="shadowPassMask">A mask specifying which shadow passes to execute the buffer for.</param>
- </member>
- <member name="M:UnityEngine.Light.GetCommandBuffers(UnityEngine.Rendering.LightEvent)">
- <summary>
- <para>Get command buffers to be executed at a specified place.</para>
- </summary>
- <param name="evt">When to execute the command buffer during rendering.</param>
- <returns>
- <para>Array of command buffers.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Light.RemoveAllCommandBuffers">
- <summary>
- <para>Remove all command buffers set on this light.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Light.RemoveCommandBuffer(UnityEngine.Rendering.LightEvent,UnityEngine.Rendering.CommandBuffer)">
- <summary>
- <para>Remove command buffer from execution at a specified place.</para>
- </summary>
- <param name="evt">When to execute the command buffer during rendering.</param>
- <param name="buffer">The buffer to execute.</param>
- </member>
- <member name="M:UnityEngine.Light.RemoveCommandBuffers(UnityEngine.Rendering.LightEvent)">
- <summary>
- <para>Remove command buffers from execution at a specified place.</para>
- </summary>
- <param name="evt">When to execute the command buffer during rendering.</param>
- </member>
- <member name="M:UnityEngine.Light.SetLightDirty">
- <summary>
- <para>Sets a light dirty to notify the light baking backends to update their internal light representation.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.LightBakingOutput">
- <summary>
- <para>Struct describing the result of a Global Illumination bake for a given light.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.LightBakingOutput.isBaked">
- <summary>
- <para>Is the light contribution already stored in lightmaps and/or lightprobes?</para>
- </summary>
- </member>
- <member name="F:UnityEngine.LightBakingOutput.lightmapBakeType">
- <summary>
- <para>This property describes what part of a light's contribution was baked.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.LightBakingOutput.mixedLightingMode">
- <summary>
- <para>In case of a LightmapBakeType.Mixed light, describes what Mixed mode was used to bake the light, irrelevant otherwise.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.LightBakingOutput.occlusionMaskChannel">
- <summary>
- <para>In case of a LightmapBakeType.Mixed light, contains the index of the occlusion mask channel to use if any, otherwise -1.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.LightBakingOutput.probeOcclusionLightIndex">
- <summary>
- <para>In case of a LightmapBakeType.Mixed light, contains the index of the light as seen from the occlusion probes point of view if any, otherwise -1.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.LightmapBakeType">
- <summary>
- <para>Enum describing what part of a light contribution can be baked.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.LightmapBakeType.Baked">
- <summary>
- <para>Baked lights cannot move or change in any way during run time. All lighting for static objects gets baked into lightmaps. Lighting and shadows for dynamic objects gets baked into Light Probes.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.LightmapBakeType.Mixed">
- <summary>
- <para>Mixed lights allow a mix of realtime and baked lighting, based on the Mixed Lighting Mode used. These lights cannot move, but can change color and intensity at run time. Changes to color and intensity only affect direct lighting as indirect lighting gets baked. If using Subtractive mode, changes to color or intensity are not calculated at run time on static objects.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.LightmapBakeType.Realtime">
- <summary>
- <para>Realtime lights cast run time light and shadows. They can change position, orientation, color, brightness, and many other properties at run time. No lighting gets baked into lightmaps or light probes..</para>
- </summary>
- </member>
- <member name="T:UnityEngine.LightmapData">
- <summary>
- <para>Data of a lightmap.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.LightmapData.lightmapColor">
- <summary>
- <para>Lightmap storing color of incoming light.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.LightmapData.lightmapDir">
- <summary>
- <para>Lightmap storing dominant direction of incoming light.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.LightmapData.shadowMask">
- <summary>
- <para>Texture storing occlusion mask per light (ShadowMask, up to four lights).</para>
- </summary>
- </member>
- <member name="T:UnityEngine.LightmapSettings">
- <summary>
- <para>Stores lightmaps of the scene.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.LightmapSettings.lightmaps">
- <summary>
- <para>Lightmap array.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.LightmapSettings.lightmapsMode">
- <summary>
- <para>Non-directional, Directional or Directional Specular lightmaps rendering mode.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.LightmapSettings.lightProbes">
- <summary>
- <para>Holds all data needed by the light probes.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.LightmapsMode">
- <summary>
- <para>Lightmap (and lighting) configuration mode, controls how lightmaps interact with lighting and what kind of information they store.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.LightmapsMode.CombinedDirectional">
- <summary>
- <para>Directional information for direct light is combined with directional information for indirect light, encoded as 2 lightmaps.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.LightmapsMode.NonDirectional">
- <summary>
- <para>Light intensity (no directional information), encoded as 1 lightmap.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.LightmapsModeLegacy">
- <summary>
- <para>Single, dual, or directional lightmaps rendering mode, used only in GIWorkflowMode.Legacy</para>
- </summary>
- </member>
- <member name="F:UnityEngine.LightmapsModeLegacy.Directional">
- <summary>
- <para>Directional rendering mode.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.LightmapsModeLegacy.Dual">
- <summary>
- <para>Dual lightmap rendering mode.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.LightmapsModeLegacy.Single">
- <summary>
- <para>Single, traditional lightmap rendering mode.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.LightProbeGroup">
- <summary>
- <para>Light Probe Group.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.LightProbeGroup.probePositions">
- <summary>
- <para>Editor only function to access and modify probe positions.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.LightProbeProxyVolume">
- <summary>
- <para>The Light Probe Proxy Volume component offers the possibility to use higher resolution lighting for large non-static GameObjects.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.LightProbeProxyVolume.boundingBoxMode">
- <summary>
- <para>The bounding box mode for generating the 3D grid of interpolated Light Probes.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.LightProbeProxyVolume.boundsGlobal">
- <summary>
- <para>The world-space bounding box in which the 3D grid of interpolated Light Probes is generated.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.LightProbeProxyVolume.gridResolutionX">
- <summary>
- <para>The 3D grid resolution on the z-axis.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.LightProbeProxyVolume.gridResolutionY">
- <summary>
- <para>The 3D grid resolution on the y-axis.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.LightProbeProxyVolume.gridResolutionZ">
- <summary>
- <para>The 3D grid resolution on the z-axis.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.LightProbeProxyVolume.isFeatureSupported">
- <summary>
- <para>Checks if Light Probe Proxy Volumes are supported.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.LightProbeProxyVolume.originCustom">
- <summary>
- <para>The local-space origin of the bounding box in which the 3D grid of interpolated Light Probes is generated.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.LightProbeProxyVolume.probeDensity">
- <summary>
- <para>Interpolated Light Probe density.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.LightProbeProxyVolume.probePositionMode">
- <summary>
- <para>The mode in which the interpolated Light Probe positions are generated.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.LightProbeProxyVolume.qualityMode">
- <summary>
- <para>Determines how many Spherical Harmonics bands will be evaluated to compute the ambient color.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.LightProbeProxyVolume.refreshMode">
- <summary>
- <para>Sets the way the Light Probe Proxy Volume refreshes.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.LightProbeProxyVolume.resolutionMode">
- <summary>
- <para>The resolution mode for generating the grid of interpolated Light Probes.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.LightProbeProxyVolume.sizeCustom">
- <summary>
- <para>The size of the bounding box in which the 3D grid of interpolated Light Probes is generated.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.LightProbeProxyVolume.BoundingBoxMode">
- <summary>
- <para>The bounding box mode for generating a grid of interpolated Light Probes.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.LightProbeProxyVolume.BoundingBoxMode.AutomaticLocal">
- <summary>
- <para>The bounding box encloses the current Renderer and all the relevant Renderers down the hierarchy, in local space.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.LightProbeProxyVolume.BoundingBoxMode.AutomaticWorld">
- <summary>
- <para>The bounding box encloses the current Renderer and all the relevant Renderers down the hierarchy, in world space.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.LightProbeProxyVolume.BoundingBoxMode.Custom">
- <summary>
- <para>A custom local-space bounding box is used. The user is able to edit the bounding box.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.LightProbeProxyVolume.ProbePositionMode">
- <summary>
- <para>The mode in which the interpolated Light Probe positions are generated.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.LightProbeProxyVolume.ProbePositionMode.CellCenter">
- <summary>
- <para>Divide the volume in cells based on resolution, and generate interpolated Light Probe positions in the center of the cells.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.LightProbeProxyVolume.ProbePositionMode.CellCorner">
- <summary>
- <para>Divide the volume in cells based on resolution, and generate interpolated Light Probes positions in the corner/edge of the cells.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.LightProbeProxyVolume.QualityMode">
- <summary>
- <para>An enum describing the Quality option used by the Light Probe Proxy Volume component.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.LightProbeProxyVolume.QualityMode.Low">
- <summary>
- <para>This option will use only two SH coefficients bands: L0 and L1. The coefficients are sampled from the Light Probe Proxy Volume 3D Texture. Using this option might increase the draw call batch sizes by not having to change the L2 coefficients per Renderer.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.LightProbeProxyVolume.QualityMode.Normal">
- <summary>
- <para>This option will use L0 and L1 SH coefficients from the Light Probe Proxy Volume 3D Texture. The L2 coefficients are constant per Renderer. By having to provide the L2 coefficients, draw call batches might be broken.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.LightProbeProxyVolume.RefreshMode">
- <summary>
- <para>An enum describing the way a Light Probe Proxy Volume refreshes in the Player.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.LightProbeProxyVolume.RefreshMode.Automatic">
- <summary>
- <para>Automatically detects updates in Light Probes and triggers an update of the Light Probe volume.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.LightProbeProxyVolume.RefreshMode.EveryFrame">
- <summary>
- <para>Causes Unity to update the Light Probe Proxy Volume every frame.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.LightProbeProxyVolume.RefreshMode.ViaScripting">
- <summary>
- <para>Use this option to indicate that the Light Probe Proxy Volume is never to be automatically updated by Unity.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.LightProbeProxyVolume.ResolutionMode">
- <summary>
- <para>The resolution mode for generating a grid of interpolated Light Probes.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.LightProbeProxyVolume.ResolutionMode.Automatic">
- <summary>
- <para>The automatic mode uses a number of interpolated Light Probes per unit area, and uses the bounding volume size to compute the resolution. The final resolution value is a power of 2.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.LightProbeProxyVolume.ResolutionMode.Custom">
- <summary>
- <para>The custom mode allows you to specify the 3D grid resolution.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.LightProbeProxyVolume.Update">
- <summary>
- <para>Triggers an update of the Light Probe Proxy Volume.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.LightProbes">
- <summary>
- <para>Stores light probes for the scene.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.LightProbes.bakedProbes">
- <summary>
- <para>Coefficients of baked light probes.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.LightProbes.cellCount">
- <summary>
- <para>The number of cells space is divided into (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.LightProbes.count">
- <summary>
- <para>The number of light probes (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.LightProbes.positions">
- <summary>
- <para>Positions of the baked light probes (Read Only).</para>
- </summary>
- </member>
- <member name="M:UnityEngine.LightProbes.CalculateInterpolatedLightAndOcclusionProbes(UnityEngine.Vector3[],UnityEngine.Rendering.SphericalHarmonicsL2[],UnityEngine.Vector4[])">
- <summary>
- <para>Calculate light probes and occlusion probes at the given world space positions.</para>
- </summary>
- <param name="positions">The array of world space positions used to evaluate the probes.</param>
- <param name="lightProbes">The array where the resulting light probes are written to.</param>
- <param name="occlusionProbes">The array where the resulting occlusion probes are written to.</param>
- </member>
- <member name="M:UnityEngine.LightProbes.CalculateInterpolatedLightAndOcclusionProbes(System.Collections.Generic.List`1&lt;UnityEngine.Vector3&gt;,System.Collections.Generic.List`1&lt;UnityEngine.Rendering.SphericalHarmonicsL2&gt;,System.Collections.Generic.List`1&lt;UnityEngine.Vector4&gt;)">
- <summary>
- <para>Calculate light probes and occlusion probes at the given world space positions.</para>
- </summary>
- <param name="positions">The array of world space positions used to evaluate the probes.</param>
- <param name="lightProbes">The array where the resulting light probes are written to.</param>
- <param name="occlusionProbes">The array where the resulting occlusion probes are written to.</param>
- </member>
- <member name="M:UnityEngine.LightProbes.GetInterpolatedProbe(UnityEngine.Vector3,UnityEngine.Renderer,UnityEngine.Rendering.SphericalHarmonicsL2&amp;)">
- <summary>
- <para>Returns an interpolated probe for the given position for both realtime and baked light probes combined.</para>
- </summary>
- <param name="position"></param>
- <param name="renderer"></param>
- <param name="probe"></param>
- </member>
- <member name="T:UnityEngine.LightRenderMode">
- <summary>
- <para>How the Light is rendered.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.LightRenderMode.Auto">
- <summary>
- <para>Automatically choose the render mode.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.LightRenderMode.ForcePixel">
- <summary>
- <para>Force the Light to be a pixel light.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.LightRenderMode.ForceVertex">
- <summary>
- <para>Force the Light to be a vertex light.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.LightShadowCasterMode">
- <summary>
- <para>Allows mixed lights to control shadow caster culling when Shadowmasks are present.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.LightShadowCasterMode.Default">
- <summary>
- <para>Use the global Shadowmask Mode from the quality settings.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.LightShadowCasterMode.Everything">
- <summary>
- <para>Render all shadow casters into the shadow map. This corresponds with the distance Shadowmask mode.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.LightShadowCasterMode.NonLightmappedOnly">
- <summary>
- <para>Render only non-lightmapped objects into the shadow map. This corresponds with the Shadowmask mode.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.LightShadows">
- <summary>
- <para>Shadow casting options for a Light.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.LightShadows.Hard">
- <summary>
- <para>Cast "hard" shadows (with no shadow filtering).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.LightShadows.None">
- <summary>
- <para>Do not cast shadows (default).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.LightShadows.Soft">
- <summary>
- <para>Cast "soft" shadows (with 4x PCF filtering).</para>
- </summary>
- </member>
- <member name="T:UnityEngine.LightType">
- <summary>
- <para>The type of a Light.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.LightType.Area">
- <summary>
- <para>The light is an area light. It affects only lightmaps and lightprobes.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.LightType.Directional">
- <summary>
- <para>The light is a directional light.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.LightType.Point">
- <summary>
- <para>The light is a point light.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.LightType.Spot">
- <summary>
- <para>The light is a spot light.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.LineAlignment">
- <summary>
- <para>Control the direction lines face, when using the LineRenderer or TrailRenderer.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.LineAlignment.Local">
- <summary>
- <para>Lines face the direction of the Transform Component.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.LineAlignment.TransformZ">
- <summary>
- <para>Lines face the Z axis of the Transform Component.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.LineAlignment.View">
- <summary>
- <para>Lines face the camera.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.LineRenderer">
- <summary>
- <para>The line renderer is used to draw free-floating lines in 3D space.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.LineRenderer.alignment">
- <summary>
- <para>Select whether the line will face the camera, or the orientation of the Transform Component.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.LineRenderer.colorGradient">
- <summary>
- <para>Set the color gradient describing the color of the line at various points along its length.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.LineRenderer.endColor">
- <summary>
- <para>Set the color at the end of the line.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.LineRenderer.endWidth">
- <summary>
- <para>Set the width at the end of the line.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.LineRenderer.generateLightingData">
- <summary>
- <para>Configures a line to generate Normals and Tangents. With this data, Scene lighting can affect the line via Normal Maps and the Unity Standard Shader, or your own custom-built Shaders.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.LineRenderer.loop">
- <summary>
- <para>Connect the start and end positions of the line together to form a continuous loop.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.LineRenderer.numCapVertices">
- <summary>
- <para>Set this to a value greater than 0, to get rounded corners on each end of the line.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.LineRenderer.numCornerVertices">
- <summary>
- <para>Set this to a value greater than 0, to get rounded corners between each segment of the line.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.LineRenderer.numPositions">
- <summary>
- <para>Set the number of line segments.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.LineRenderer.positionCount">
- <summary>
- <para>Set the number of line segments.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.LineRenderer.startColor">
- <summary>
- <para>Set the color at the start of the line.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.LineRenderer.startWidth">
- <summary>
- <para>Set the width at the start of the line.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.LineRenderer.textureMode">
- <summary>
- <para>Choose whether the U coordinate of the line texture is tiled or stretched.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.LineRenderer.useWorldSpace">
- <summary>
- <para>If enabled, the lines are defined in world space.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.LineRenderer.widthCurve">
- <summary>
- <para>Set the curve describing the width of the line at various points along its length.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.LineRenderer.widthMultiplier">
- <summary>
- <para>Set an overall multiplier that is applied to the LineRenderer.widthCurve to get the final width of the line.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.LineRenderer.BakeMesh(UnityEngine.Mesh,System.Boolean)">
- <summary>
- <para>Creates a snapshot of LineRenderer and stores it in mesh.</para>
- </summary>
- <param name="mesh">A static mesh that will receive the snapshot of the line.</param>
- <param name="camera">The camera used for determining which way view space lines will face.</param>
- <param name="useTransform">Include the rotation and scale of the Transform in the baked mesh.</param>
- </member>
- <member name="M:UnityEngine.LineRenderer.BakeMesh(UnityEngine.Mesh)">
- <summary>
- <para>Creates a snapshot of LineRenderer and stores it in mesh.</para>
- </summary>
- <param name="mesh">A static mesh that will receive the snapshot of the line.</param>
- <param name="camera">The camera used for determining which way view space lines will face.</param>
- <param name="useTransform">Include the rotation and scale of the Transform in the baked mesh.</param>
- </member>
- <member name="M:UnityEngine.LineRenderer.BakeMesh(UnityEngine.Mesh,UnityEngine.Camera,System.Boolean)">
- <summary>
- <para>Creates a snapshot of LineRenderer and stores it in mesh.</para>
- </summary>
- <param name="mesh">A static mesh that will receive the snapshot of the line.</param>
- <param name="camera">The camera used for determining which way view space lines will face.</param>
- <param name="useTransform">Include the rotation and scale of the Transform in the baked mesh.</param>
- </member>
- <member name="M:UnityEngine.LineRenderer.BakeMesh(UnityEngine.Mesh,UnityEngine.Camera)">
- <summary>
- <para>Creates a snapshot of LineRenderer and stores it in mesh.</para>
- </summary>
- <param name="mesh">A static mesh that will receive the snapshot of the line.</param>
- <param name="camera">The camera used for determining which way view space lines will face.</param>
- <param name="useTransform">Include the rotation and scale of the Transform in the baked mesh.</param>
- </member>
- <member name="M:UnityEngine.LineRenderer.GetPosition(System.Int32)">
- <summary>
- <para>Get the position of a vertex in the line.</para>
- </summary>
- <param name="index">The index of the position to retrieve.</param>
- <returns>
- <para>The position at the specified index in the array.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.LineRenderer.GetPositions(UnityEngine.Vector3[])">
- <summary>
- <para>Get the positions of all vertices in the line.</para>
- </summary>
- <param name="positions">The array of positions to retrieve. The array passed should be of at least numPositions in size.</param>
- <returns>
- <para>How many positions were actually stored in the output array.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.LineRenderer.SetColors(UnityEngine.Color,UnityEngine.Color)">
- <summary>
- <para>Set the line color at the start and at the end.</para>
- </summary>
- <param name="start"></param>
- <param name="end"></param>
- </member>
- <member name="M:UnityEngine.LineRenderer.SetPosition(System.Int32,UnityEngine.Vector3)">
- <summary>
- <para>Set the position of a vertex in the line.</para>
- </summary>
- <param name="index">Which position to set.</param>
- <param name="position">The new position.</param>
- </member>
- <member name="M:UnityEngine.LineRenderer.SetPositions(UnityEngine.Vector3[])">
- <summary>
- <para>Set the positions of all vertices in the line.</para>
- </summary>
- <param name="positions">The array of positions to set.</param>
- </member>
- <member name="M:UnityEngine.LineRenderer.SetVertexCount(System.Int32)">
- <summary>
- <para>Set the number of line segments.</para>
- </summary>
- <param name="count"></param>
- </member>
- <member name="M:UnityEngine.LineRenderer.SetWidth(System.Single,System.Single)">
- <summary>
- <para>Set the line width at the start and at the end.</para>
- </summary>
- <param name="start"></param>
- <param name="end"></param>
- </member>
- <member name="M:UnityEngine.LineRenderer.Simplify(System.Single)">
- <summary>
- <para>Generates a simplified version of the original line by removing points that fall within the specified tolerance.</para>
- </summary>
- <param name="tolerance">This value is used to evaluate which points should be removed from the line. A higher value results in a simpler line (less points). A positive value close to zero results in a line with little to no reduction. A value of zero or less has no effect.</param>
- </member>
- <member name="T:UnityEngine.LineTextureMode">
- <summary>
- <para>Choose how textures are applied to Lines and Trails.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.LineTextureMode.DistributePerSegment">
- <summary>
- <para>Map the texture once along the entire length of the line, assuming all vertices are evenly spaced.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.LineTextureMode.RepeatPerSegment">
- <summary>
- <para>Repeat the texture along the line, repeating at a rate of once per line segment. To adjust the tiling rate, use Material.SetTextureScale.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.LineTextureMode.Stretch">
- <summary>
- <para>Map the texture once along the entire length of the line.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.LineTextureMode.Tile">
- <summary>
- <para>Repeat the texture along the line, based on its length in world units. To set the tiling rate, use Material.SetTextureScale.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.LineUtility">
- <summary>
- <para>A collection of common line functions.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.LineUtility.Simplify(System.Collections.Generic.List`1&lt;UnityEngine.Vector3&gt;,System.Single,System.Collections.Generic.List`1&lt;System.Int32&gt;)">
- <summary>
- <para>Generates a simplified version of the original line by removing points that fall within the specified tolerance.</para>
- </summary>
- <param name="points">The points that make up the original line.</param>
- <param name="tolerance">This value is used to evaluate which points should be removed from the line. A higher value results in a simpler line (less points). A positive value close to zero results in a line with little to no reduction. A value of zero or less has no effect.</param>
- <param name="pointsToKeep">Populated by this function. Contains the indexes of the points that should be generate a simplified version..</param>
- <param name="simplifiedPoints">Populated by this function. Contains the points that form the simplified line.</param>
- </member>
- <member name="M:UnityEngine.LineUtility.Simplify(System.Collections.Generic.List`1&lt;UnityEngine.Vector3&gt;,System.Single,System.Collections.Generic.List`1&lt;UnityEngine.Vector3&gt;)">
- <summary>
- <para>Generates a simplified version of the original line by removing points that fall within the specified tolerance.</para>
- </summary>
- <param name="points">The points that make up the original line.</param>
- <param name="tolerance">This value is used to evaluate which points should be removed from the line. A higher value results in a simpler line (less points). A positive value close to zero results in a line with little to no reduction. A value of zero or less has no effect.</param>
- <param name="pointsToKeep">Populated by this function. Contains the indexes of the points that should be generate a simplified version..</param>
- <param name="simplifiedPoints">Populated by this function. Contains the points that form the simplified line.</param>
- </member>
- <member name="M:UnityEngine.LineUtility.Simplify(System.Collections.Generic.List`1&lt;UnityEngine.Vector2&gt;,System.Single,System.Collections.Generic.List`1&lt;System.Int32&gt;)">
- <summary>
- <para>Generates a simplified version of the original line by removing points that fall within the specified tolerance.</para>
- </summary>
- <param name="points">The points that make up the original line.</param>
- <param name="tolerance">This value is used to evaluate which points should be removed from the line. A higher value results in a simpler line (less points). A positive value close to zero results in a line with little to no reduction. A value of zero or less has no effect.</param>
- <param name="pointsToKeep">Populated by this function. Contains the indexes of the points that should be generate a simplified version..</param>
- <param name="simplifiedPoints">Populated by this function. Contains the points that form the simplified line.</param>
- </member>
- <member name="M:UnityEngine.LineUtility.Simplify(System.Collections.Generic.List`1&lt;UnityEngine.Vector2&gt;,System.Single,System.Collections.Generic.List`1&lt;UnityEngine.Vector2&gt;)">
- <summary>
- <para>Generates a simplified version of the original line by removing points that fall within the specified tolerance.</para>
- </summary>
- <param name="points">The points that make up the original line.</param>
- <param name="tolerance">This value is used to evaluate which points should be removed from the line. A higher value results in a simpler line (less points). A positive value close to zero results in a line with little to no reduction. A value of zero or less has no effect.</param>
- <param name="pointsToKeep">Populated by this function. Contains the indexes of the points that should be generate a simplified version..</param>
- <param name="simplifiedPoints">Populated by this function. Contains the points that form the simplified line.</param>
- </member>
- <member name="T:UnityEngine.LocationInfo">
- <summary>
- <para>Structure describing device location.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.LocationInfo.altitude">
- <summary>
- <para>Geographical device location altitude.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.LocationInfo.horizontalAccuracy">
- <summary>
- <para>Horizontal accuracy of the location.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.LocationInfo.latitude">
- <summary>
- <para>Geographical device location latitude.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.LocationInfo.longitude">
- <summary>
- <para>Geographical device location latitude.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.LocationInfo.timestamp">
- <summary>
- <para>Timestamp (in seconds since 1970) when location was last time updated.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.LocationInfo.verticalAccuracy">
- <summary>
- <para>Vertical accuracy of the location.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.LocationService">
- <summary>
- <para>Interface into location functionality.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.LocationService.isEnabledByUser">
- <summary>
- <para>Specifies whether location service is enabled in user settings.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.LocationService.lastData">
- <summary>
- <para>Last measured device geographical location.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.LocationService.status">
- <summary>
- <para>Returns location service status.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.LocationService.Start()">
- <summary>
- <para>Starts location service updates. Last location coordinates could be.</para>
- </summary>
- <param name="desiredAccuracyInMeters"></param>
- <param name="updateDistanceInMeters"></param>
- </member>
- <member name="M:UnityEngine.LocationService.Start(System.Single)">
- <summary>
- <para>Starts location service updates. Last location coordinates could be.</para>
- </summary>
- <param name="desiredAccuracyInMeters"></param>
- <param name="updateDistanceInMeters"></param>
- </member>
- <member name="M:UnityEngine.LocationService.Start(System.Single,System.Single)">
- <summary>
- <para>Starts location service updates. Last location coordinates could be.</para>
- </summary>
- <param name="desiredAccuracyInMeters"></param>
- <param name="updateDistanceInMeters"></param>
- </member>
- <member name="M:UnityEngine.LocationService.Stop">
- <summary>
- <para>Stops location service updates. This could be useful for saving battery life.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.LocationServiceStatus">
- <summary>
- <para>Describes location service status.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.LocationServiceStatus.Failed">
- <summary>
- <para>Location service failed (user denied access to location service).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.LocationServiceStatus.Initializing">
- <summary>
- <para>Location service is initializing, some time later it will switch to.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.LocationServiceStatus.Running">
- <summary>
- <para>Location service is running and locations could be queried.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.LocationServiceStatus.Stopped">
- <summary>
- <para>Location service is stopped.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.LOD">
- <summary>
- <para>Structure for building a LOD for passing to the SetLODs function.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.LOD.fadeTransitionWidth">
- <summary>
- <para>Width of the cross-fade transition zone (proportion to the current LOD's whole length) [0-1]. Only used if it's not animated.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.LOD.renderers">
- <summary>
- <para>List of renderers for this LOD level.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.LOD.screenRelativeTransitionHeight">
- <summary>
- <para>The screen relative height to use for the transition [0-1].</para>
- </summary>
- </member>
- <member name="M:UnityEngine.LOD.#ctor(System.Single,UnityEngine.Renderer[])">
- <summary>
- <para>Construct a LOD.</para>
- </summary>
- <param name="screenRelativeTransitionHeight">The screen relative height to use for the transition [0-1].</param>
- <param name="renderers">An array of renderers to use for this LOD level.</param>
- </member>
- <member name="T:UnityEngine.LODFadeMode">
- <summary>
- <para>The LOD fade modes. Modes other than LODFadeMode.None will result in Unity calculating a blend factor for blending/interpolating between two neighbouring LODs and pass it to your shader.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.LODFadeMode.CrossFade">
- <summary>
- <para>Perform cross-fade style blending between the current LOD and the next LOD if the distance to camera falls in the range specified by the LOD.fadeTransitionWidth of each LOD.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.LODFadeMode.None">
- <summary>
- <para>Indicates the LOD fading is turned off.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.LODFadeMode.SpeedTree">
- <summary>
- <para>By specifying this mode, your LODGroup will perform a SpeedTree-style LOD fading scheme:
-
-
-* For all the mesh LODs other than the last (most crude) mesh LOD, the fade factor is calculated as the percentage of the object's current screen height, compared to the whole range of the LOD. It is 1, if the camera is right at the position where the previous LOD switches out and 0, if the next LOD is just about to switch in.
-
-
-* For the last mesh LOD and the billboard LOD, the cross-fade mode is used.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.LODGroup">
- <summary>
- <para>LODGroup lets you group multiple Renderers into LOD levels.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.LODGroup.animateCrossFading">
- <summary>
- <para>Specify if the cross-fading should be animated by time. The animation duration is specified globally as crossFadeAnimationDuration.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.LODGroup.crossFadeAnimationDuration">
- <summary>
- <para>The cross-fading animation duration in seconds. ArgumentException will be thrown if it is set to zero or a negative value.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.LODGroup.enabled">
- <summary>
- <para>Enable / Disable the LODGroup - Disabling will turn off all renderers.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.LODGroup.fadeMode">
- <summary>
- <para>The LOD fade mode used.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.LODGroup.localReferencePoint">
- <summary>
- <para>The local reference point against which the LOD distance is calculated.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.LODGroup.lodCount">
- <summary>
- <para>The number of LOD levels.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.LODGroup.size">
- <summary>
- <para>The size of the LOD object in local space.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.LODGroup.ForceLOD(System.Int32)">
- <summary>
- <para></para>
- </summary>
- <param name="index">The LOD level to use. Passing index &lt; 0 will return to standard LOD processing.</param>
- </member>
- <member name="M:UnityEngine.LODGroup.GetLODs">
- <summary>
- <para>Returns the array of LODs.</para>
- </summary>
- <returns>
- <para>The LOD array.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.LODGroup.RecalculateBounds">
- <summary>
- <para>Recalculate the bounding region for the LODGroup (Relatively slow, do not call often).</para>
- </summary>
- </member>
- <member name="M:UnityEngine.LODGroup.SetLODs(UnityEngine.LOD[])">
- <summary>
- <para>Set the LODs for the LOD group. This will remove any existing LODs configured on the LODGroup.</para>
- </summary>
- <param name="lods">The LODs to use for this group.</param>
- </member>
- <member name="T:UnityEngine.Logger">
- <summary>
- <para>Initializes a new instance of the Logger.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Logger.filterLogType">
- <summary>
- <para>To selective enable debug log message.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Logger.logEnabled">
- <summary>
- <para>To runtime toggle debug logging [ON/OFF].</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Logger.logHandler">
- <summary>
- <para>Set Logger.ILogHandler.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Logger.#ctor(UnityEngine.ILogHandler)">
- <summary>
- <para>Create a custom Logger.</para>
- </summary>
- <param name="logHandler">Pass in default log handler or custom log handler.</param>
- </member>
- <member name="M:UnityEngine.Logger.IsLogTypeAllowed(UnityEngine.LogType)">
- <summary>
- <para>Check logging is enabled based on the LogType.</para>
- </summary>
- <param name="logType">The type of the log message.</param>
- <returns>
- <para>Retrun true in case logs of LogType will be logged otherwise returns false.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Logger.Log(UnityEngine.LogType,System.Object)">
- <summary>
- <para>Logs message to the Unity Console using default logger.</para>
- </summary>
- <param name="logType">The type of the log message.</param>
- <param name="tag">Used to identify the source of a log message. It usually identifies the class where the log call occurs.</param>
- <param name="message">String or object to be converted to string representation for display.</param>
- <param name="context">Object to which the message applies.</param>
- </member>
- <member name="M:UnityEngine.Logger.Log(UnityEngine.LogType,System.Object,UnityEngine.Object)">
- <summary>
- <para>Logs message to the Unity Console using default logger.</para>
- </summary>
- <param name="logType">The type of the log message.</param>
- <param name="tag">Used to identify the source of a log message. It usually identifies the class where the log call occurs.</param>
- <param name="message">String or object to be converted to string representation for display.</param>
- <param name="context">Object to which the message applies.</param>
- </member>
- <member name="M:UnityEngine.Logger.Log(UnityEngine.LogType,System.String,System.Object)">
- <summary>
- <para>Logs message to the Unity Console using default logger.</para>
- </summary>
- <param name="logType">The type of the log message.</param>
- <param name="tag">Used to identify the source of a log message. It usually identifies the class where the log call occurs.</param>
- <param name="message">String or object to be converted to string representation for display.</param>
- <param name="context">Object to which the message applies.</param>
- </member>
- <member name="M:UnityEngine.Logger.Log(UnityEngine.LogType,System.String,System.Object,UnityEngine.Object)">
- <summary>
- <para>Logs message to the Unity Console using default logger.</para>
- </summary>
- <param name="logType">The type of the log message.</param>
- <param name="tag">Used to identify the source of a log message. It usually identifies the class where the log call occurs.</param>
- <param name="message">String or object to be converted to string representation for display.</param>
- <param name="context">Object to which the message applies.</param>
- </member>
- <member name="M:UnityEngine.Logger.Log(System.Object)">
- <summary>
- <para>Logs message to the Unity Console using default logger.</para>
- </summary>
- <param name="logType">The type of the log message.</param>
- <param name="tag">Used to identify the source of a log message. It usually identifies the class where the log call occurs.</param>
- <param name="message">String or object to be converted to string representation for display.</param>
- <param name="context">Object to which the message applies.</param>
- </member>
- <member name="M:UnityEngine.Logger.Log(System.String,System.Object)">
- <summary>
- <para>Logs message to the Unity Console using default logger.</para>
- </summary>
- <param name="logType">The type of the log message.</param>
- <param name="tag">Used to identify the source of a log message. It usually identifies the class where the log call occurs.</param>
- <param name="message">String or object to be converted to string representation for display.</param>
- <param name="context">Object to which the message applies.</param>
- </member>
- <member name="M:UnityEngine.Logger.Log(System.String,System.Object,UnityEngine.Object)">
- <summary>
- <para>Logs message to the Unity Console using default logger.</para>
- </summary>
- <param name="logType">The type of the log message.</param>
- <param name="tag">Used to identify the source of a log message. It usually identifies the class where the log call occurs.</param>
- <param name="message">String or object to be converted to string representation for display.</param>
- <param name="context">Object to which the message applies.</param>
- </member>
- <member name="M:UnityEngine.Logger.LogError(System.String,System.Object)">
- <summary>
- <para>A variant of Logger.Log that logs an error message.</para>
- </summary>
- <param name="tag">Used to identify the source of a log message. It usually identifies the class where the log call occurs.</param>
- <param name="message">String or object to be converted to string representation for display.</param>
- <param name="context">Object to which the message applies.</param>
- </member>
- <member name="M:UnityEngine.Logger.LogError(System.String,System.Object,UnityEngine.Object)">
- <summary>
- <para>A variant of Logger.Log that logs an error message.</para>
- </summary>
- <param name="tag">Used to identify the source of a log message. It usually identifies the class where the log call occurs.</param>
- <param name="message">String or object to be converted to string representation for display.</param>
- <param name="context">Object to which the message applies.</param>
- </member>
- <member name="M:UnityEngine.Logger.LogException(System.Exception)">
- <summary>
- <para>A variant of Logger.Log that logs an exception message.</para>
- </summary>
- <param name="exception">Runtime Exception.</param>
- <param name="context">Object to which the message applies.</param>
- </member>
- <member name="M:UnityEngine.Logger.LogException(System.Exception,UnityEngine.Object)">
- <summary>
- <para>A variant of Logger.Log that logs an exception message.</para>
- </summary>
- <param name="exception">Runtime Exception.</param>
- <param name="context">Object to which the message applies.</param>
- </member>
- <member name="M:UnityEngine.Logger.LogFormat(UnityEngine.LogType,System.String,System.Object[])">
- <summary>
- <para>Logs a formatted message.</para>
- </summary>
- <param name="logType">The type of the log message.</param>
- <param name="context">Object to which the message applies.</param>
- <param name="format">A composite format string.</param>
- <param name="args">Format arguments.</param>
- </member>
- <member name="M:UnityEngine.Logger.LogFormat(UnityEngine.LogType,UnityEngine.Object,System.String,System.Object[])">
- <summary>
- <para>Logs a formatted message.</para>
- </summary>
- <param name="logType">The type of the log message.</param>
- <param name="context">Object to which the message applies.</param>
- <param name="format">A composite format string.</param>
- <param name="args">Format arguments.</param>
- </member>
- <member name="M:UnityEngine.Logger.LogWarning(System.String,System.Object)">
- <summary>
- <para>A variant of Logger.Log that logs an warning message.</para>
- </summary>
- <param name="tag">Used to identify the source of a log message. It usually identifies the class where the log call occurs.</param>
- <param name="message">String or object to be converted to string representation for display.</param>
- <param name="context">Object to which the message applies.</param>
- </member>
- <member name="M:UnityEngine.Logger.LogWarning(System.String,System.Object,UnityEngine.Object)">
- <summary>
- <para>A variant of Logger.Log that logs an warning message.</para>
- </summary>
- <param name="tag">Used to identify the source of a log message. It usually identifies the class where the log call occurs.</param>
- <param name="message">String or object to be converted to string representation for display.</param>
- <param name="context">Object to which the message applies.</param>
- </member>
- <member name="T:UnityEngine.LogType">
- <summary>
- <para>The type of the log message in Debug.unityLogger.Log or delegate registered with Application.RegisterLogCallback.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.LogType.Assert">
- <summary>
- <para>LogType used for Asserts. (These could also indicate an error inside Unity itself.)</para>
- </summary>
- </member>
- <member name="F:UnityEngine.LogType.Error">
- <summary>
- <para>LogType used for Errors.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.LogType.Exception">
- <summary>
- <para>LogType used for Exceptions.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.LogType.Log">
- <summary>
- <para>LogType used for regular log messages.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.LogType.Warning">
- <summary>
- <para>LogType used for Warnings.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Material">
- <summary>
- <para>The material class.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Material.color">
- <summary>
- <para>The main material's color.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Material.doubleSidedGI">
- <summary>
- <para>Gets and sets whether the Double Sided Global Illumination setting is enabled for this material.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Material.enableInstancing">
- <summary>
- <para>Gets and sets whether GPU instancing is enabled for this material.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Material.globalIlluminationFlags">
- <summary>
- <para>Defines how the material should interact with lightmaps and lightprobes.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Material.mainTexture">
- <summary>
- <para>The material's texture.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Material.mainTextureOffset">
- <summary>
- <para>The texture offset of the main texture.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Material.mainTextureScale">
- <summary>
- <para>The texture scale of the main texture.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Material.passCount">
- <summary>
- <para>How many passes are in this material (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Material.renderQueue">
- <summary>
- <para>Render queue of this material.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Material.shader">
- <summary>
- <para>The shader used by the material.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Material.shaderKeywords">
- <summary>
- <para>Additional shader keywords set by this material.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Material.CopyPropertiesFromMaterial(UnityEngine.Material)">
- <summary>
- <para>Copy properties from other material into this material.</para>
- </summary>
- <param name="mat"></param>
- </member>
- <member name="M:UnityEngine.Material.#ctor(System.String)">
- <summary>
- <para></para>
- </summary>
- <param name="contents"></param>
- </member>
- <member name="M:UnityEngine.Material.#ctor(UnityEngine.Shader)">
- <summary>
- <para>Create a temporary Material.</para>
- </summary>
- <param name="shader">Create a material with a given Shader.</param>
- <param name="source">Create a material by copying all properties from another material.</param>
- </member>
- <member name="M:UnityEngine.Material.#ctor(UnityEngine.Material)">
- <summary>
- <para>Create a temporary Material.</para>
- </summary>
- <param name="shader">Create a material with a given Shader.</param>
- <param name="source">Create a material by copying all properties from another material.</param>
- </member>
- <member name="M:UnityEngine.Material.DisableKeyword(System.String)">
- <summary>
- <para>Unset a shader keyword.</para>
- </summary>
- <param name="keyword"></param>
- </member>
- <member name="M:UnityEngine.Material.EnableKeyword(System.String)">
- <summary>
- <para>Sets a shader keyword that is enabled by this material.</para>
- </summary>
- <param name="keyword"></param>
- </member>
- <member name="M:UnityEngine.Material.FindPass(System.String)">
- <summary>
- <para>Returns the index of the pass passName.</para>
- </summary>
- <param name="passName"></param>
- </member>
- <member name="M:UnityEngine.Material.GetColor(System.String)">
- <summary>
- <para>Get a named color value.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- </member>
- <member name="M:UnityEngine.Material.GetColor(System.Int32)">
- <summary>
- <para>Get a named color value.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- </member>
- <member name="M:UnityEngine.Material.GetColorArray(System.String)">
- <summary>
- <para>Get a named color array.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- </member>
- <member name="M:UnityEngine.Material.GetColorArray(System.Int32)">
- <summary>
- <para>Get a named color array.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- </member>
- <member name="M:UnityEngine.Material.GetColorArray(System.String,System.Collections.Generic.List`1&lt;UnityEngine.Color&gt;)">
- <summary>
- <para>Fetch a named color array into a list.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- <param name="values">The list to hold the returned array.</param>
- </member>
- <member name="M:UnityEngine.Material.GetColorArray(System.Int32,System.Collections.Generic.List`1&lt;UnityEngine.Color&gt;)">
- <summary>
- <para>Fetch a named color array into a list.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- <param name="values">The list to hold the returned array.</param>
- </member>
- <member name="M:UnityEngine.Material.GetFloat(System.String)">
- <summary>
- <para>Get a named float value.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- </member>
- <member name="M:UnityEngine.Material.GetFloat(System.Int32)">
- <summary>
- <para>Get a named float value.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- </member>
- <member name="M:UnityEngine.Material.GetFloatArray(System.String)">
- <summary>
- <para>Get a named float array.</para>
- </summary>
- <param name="name">The name of the property.</param>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- </member>
- <member name="M:UnityEngine.Material.GetFloatArray(System.Int32)">
- <summary>
- <para>Get a named float array.</para>
- </summary>
- <param name="name">The name of the property.</param>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- </member>
- <member name="M:UnityEngine.Material.GetFloatArray(System.String,System.Collections.Generic.List`1&lt;System.Single&gt;)">
- <summary>
- <para>Fetch a named float array into a list.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- <param name="values">The list to hold the returned array.</param>
- </member>
- <member name="M:UnityEngine.Material.GetFloatArray(System.Int32,System.Collections.Generic.List`1&lt;System.Single&gt;)">
- <summary>
- <para>Fetch a named float array into a list.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- <param name="values">The list to hold the returned array.</param>
- </member>
- <member name="M:UnityEngine.Material.GetInt(System.String)">
- <summary>
- <para>Get a named integer value.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- </member>
- <member name="M:UnityEngine.Material.GetInt(System.Int32)">
- <summary>
- <para>Get a named integer value.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- </member>
- <member name="M:UnityEngine.Material.GetMatrix(System.String)">
- <summary>
- <para>Get a named matrix value from the shader.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- </member>
- <member name="M:UnityEngine.Material.GetMatrix(System.Int32)">
- <summary>
- <para>Get a named matrix value from the shader.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- </member>
- <member name="M:UnityEngine.Material.GetMatrixArray(System.String)">
- <summary>
- <para>Get a named matrix array.</para>
- </summary>
- <param name="name">The name of the property.</param>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- </member>
- <member name="M:UnityEngine.Material.GetMatrixArray(System.Int32)">
- <summary>
- <para>Get a named matrix array.</para>
- </summary>
- <param name="name">The name of the property.</param>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- </member>
- <member name="M:UnityEngine.Material.GetMatrixArray(System.String,System.Collections.Generic.List`1&lt;UnityEngine.Matrix4x4&gt;)">
- <summary>
- <para>Fetch a named matrix array into a list.</para>
- </summary>
- <param name="name">The name of the property.</param>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="values">The list to hold the returned array.</param>
- </member>
- <member name="M:UnityEngine.Material.GetMatrixArray(System.Int32,System.Collections.Generic.List`1&lt;UnityEngine.Matrix4x4&gt;)">
- <summary>
- <para>Fetch a named matrix array into a list.</para>
- </summary>
- <param name="name">The name of the property.</param>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="values">The list to hold the returned array.</param>
- </member>
- <member name="M:UnityEngine.Material.GetPassName(System.Int32)">
- <summary>
- <para>Returns the name of the shader pass at index pass.</para>
- </summary>
- <param name="pass"></param>
- </member>
- <member name="M:UnityEngine.Material.GetShaderPassEnabled(System.String)">
- <summary>
- <para>Checks whether a given Shader pass is enabled on this Material.</para>
- </summary>
- <param name="passName">Shader pass name (case insensitive).</param>
- <returns>
- <para>True if the Shader pass is enabled.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Material.GetTag(System.String,System.Boolean)">
- <summary>
- <para>Get the value of material's shader tag.</para>
- </summary>
- <param name="tag"></param>
- <param name="searchFallbacks"></param>
- <param name="defaultValue"></param>
- </member>
- <member name="M:UnityEngine.Material.GetTag(System.String,System.Boolean,System.String)">
- <summary>
- <para>Get the value of material's shader tag.</para>
- </summary>
- <param name="tag"></param>
- <param name="searchFallbacks"></param>
- <param name="defaultValue"></param>
- </member>
- <member name="M:UnityEngine.Material.GetTexture(System.String)">
- <summary>
- <para>Get a named texture.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- </member>
- <member name="M:UnityEngine.Material.GetTexture(System.Int32)">
- <summary>
- <para>Get a named texture.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- </member>
- <member name="M:UnityEngine.Material.GetTextureOffset(System.String)">
- <summary>
- <para>Gets the placement offset of texture propertyName.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- </member>
- <member name="M:UnityEngine.Material.GetTextureOffset(System.Int32)">
- <summary>
- <para>Gets the placement offset of texture propertyName.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- </member>
- <member name="M:UnityEngine.Material.GetTexturePropertyNameIDs">
- <summary>
- <para>Return the name IDs of all texture properties exposed on this material.</para>
- </summary>
- <param name="outNames">IDs of all texture properties exposed on this material.</param>
- <returns>
- <para>IDs of all texture properties exposed on this material.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Material.GetTexturePropertyNameIDs(System.Collections.Generic.List`1&lt;System.Int32&gt;)">
- <summary>
- <para>Return the name IDs of all texture properties exposed on this material.</para>
- </summary>
- <param name="outNames">IDs of all texture properties exposed on this material.</param>
- <returns>
- <para>IDs of all texture properties exposed on this material.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Material.GetTexturePropertyNames">
- <summary>
- <para>Returns the names of all texture properties exposed on this material.</para>
- </summary>
- <param name="outNames">Names of all texture properties exposed on this material.</param>
- <returns>
- <para>Names of all texture properties exposed on this material.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Material.GetTexturePropertyNames(System.Collections.Generic.List`1&lt;System.String&gt;)">
- <summary>
- <para>Returns the names of all texture properties exposed on this material.</para>
- </summary>
- <param name="outNames">Names of all texture properties exposed on this material.</param>
- <returns>
- <para>Names of all texture properties exposed on this material.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Material.GetTextureScale(System.String)">
- <summary>
- <para>Gets the placement scale of texture propertyName.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- </member>
- <member name="M:UnityEngine.Material.GetTextureScale(System.Int32)">
- <summary>
- <para>Gets the placement scale of texture propertyName.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- </member>
- <member name="M:UnityEngine.Material.GetVector(System.String)">
- <summary>
- <para>Get a named vector value.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- </member>
- <member name="M:UnityEngine.Material.GetVector(System.Int32)">
- <summary>
- <para>Get a named vector value.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- </member>
- <member name="M:UnityEngine.Material.GetVectorArray(System.String)">
- <summary>
- <para>Get a named vector array.</para>
- </summary>
- <param name="name">The name of the property.</param>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- </member>
- <member name="M:UnityEngine.Material.GetVectorArray(System.Int32)">
- <summary>
- <para>Get a named vector array.</para>
- </summary>
- <param name="name">The name of the property.</param>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- </member>
- <member name="M:UnityEngine.Material.GetVectorArray(System.String,System.Collections.Generic.List`1&lt;UnityEngine.Vector4&gt;)">
- <summary>
- <para>Fetch a named vector array into a list.</para>
- </summary>
- <param name="name">The name of the property.</param>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="values">The list to hold the returned array.</param>
- </member>
- <member name="M:UnityEngine.Material.GetVectorArray(System.Int32,System.Collections.Generic.List`1&lt;UnityEngine.Vector4&gt;)">
- <summary>
- <para>Fetch a named vector array into a list.</para>
- </summary>
- <param name="name">The name of the property.</param>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="values">The list to hold the returned array.</param>
- </member>
- <member name="M:UnityEngine.Material.HasProperty(System.String)">
- <summary>
- <para>Checks if material's shader has a property of a given name.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- </member>
- <member name="M:UnityEngine.Material.HasProperty(System.Int32)">
- <summary>
- <para>Checks if material's shader has a property of a given name.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- </member>
- <member name="M:UnityEngine.Material.IsKeywordEnabled(System.String)">
- <summary>
- <para>Is the shader keyword enabled on this material?</para>
- </summary>
- <param name="keyword"></param>
- </member>
- <member name="M:UnityEngine.Material.Lerp(UnityEngine.Material,UnityEngine.Material,System.Single)">
- <summary>
- <para>Interpolate properties between two materials.</para>
- </summary>
- <param name="start"></param>
- <param name="end"></param>
- <param name="t"></param>
- </member>
- <member name="M:UnityEngine.Material.SetBuffer(System.String,UnityEngine.ComputeBuffer)">
- <summary>
- <para>Sets a named ComputeBuffer value.</para>
- </summary>
- <param name="nameID">Property name ID, use Shader.PropertyToID to get it.</param>
- <param name="name">Property name.</param>
- <param name="value">The ComputeBuffer value to set.</param>
- </member>
- <member name="M:UnityEngine.Material.SetBuffer(System.Int32,UnityEngine.ComputeBuffer)">
- <summary>
- <para>Sets a named ComputeBuffer value.</para>
- </summary>
- <param name="nameID">Property name ID, use Shader.PropertyToID to get it.</param>
- <param name="name">Property name.</param>
- <param name="value">The ComputeBuffer value to set.</param>
- </member>
- <member name="M:UnityEngine.Material.SetColor(System.String,UnityEngine.Color)">
- <summary>
- <para>Sets a named color value.</para>
- </summary>
- <param name="nameID">Property name ID, use Shader.PropertyToID to get it.</param>
- <param name="name">Property name, e.g. "_Color".</param>
- <param name="value">Color value to set.</param>
- </member>
- <member name="M:UnityEngine.Material.SetColor(System.Int32,UnityEngine.Color)">
- <summary>
- <para>Sets a named color value.</para>
- </summary>
- <param name="nameID">Property name ID, use Shader.PropertyToID to get it.</param>
- <param name="name">Property name, e.g. "_Color".</param>
- <param name="value">Color value to set.</param>
- </member>
- <member name="M:UnityEngine.Material.SetColorArray(System.String,UnityEngine.Color[])">
- <summary>
- <para>Sets a color array property.</para>
- </summary>
- <param name="name">Property name.</param>
- <param name="nameID">Property name ID, use Shader.PropertyToID to get it.</param>
- <param name="values">Array of values to set.</param>
- </member>
- <member name="M:UnityEngine.Material.SetColorArray(System.Int32,UnityEngine.Color[])">
- <summary>
- <para>Sets a color array property.</para>
- </summary>
- <param name="name">Property name.</param>
- <param name="nameID">Property name ID, use Shader.PropertyToID to get it.</param>
- <param name="values">Array of values to set.</param>
- </member>
- <member name="M:UnityEngine.Material.SetColorArray(System.String,System.Collections.Generic.List`1&lt;UnityEngine.Color&gt;)">
- <summary>
- <para>Sets a color array property.</para>
- </summary>
- <param name="name">Property name.</param>
- <param name="nameID">Property name ID, use Shader.PropertyToID to get it.</param>
- <param name="values">Array of values to set.</param>
- </member>
- <member name="M:UnityEngine.Material.SetColorArray(System.Int32,System.Collections.Generic.List`1&lt;UnityEngine.Color&gt;)">
- <summary>
- <para>Sets a color array property.</para>
- </summary>
- <param name="name">Property name.</param>
- <param name="nameID">Property name ID, use Shader.PropertyToID to get it.</param>
- <param name="values">Array of values to set.</param>
- </member>
- <member name="M:UnityEngine.Material.SetFloat(System.String,System.Single)">
- <summary>
- <para>Sets a named float value.</para>
- </summary>
- <param name="nameID">Property name ID, use Shader.PropertyToID to get it.</param>
- <param name="value">Float value to set.</param>
- <param name="name">Property name, e.g. "_Glossiness".</param>
- </member>
- <member name="M:UnityEngine.Material.SetFloat(System.Int32,System.Single)">
- <summary>
- <para>Sets a named float value.</para>
- </summary>
- <param name="nameID">Property name ID, use Shader.PropertyToID to get it.</param>
- <param name="value">Float value to set.</param>
- <param name="name">Property name, e.g. "_Glossiness".</param>
- </member>
- <member name="M:UnityEngine.Material.SetFloatArray(System.String,System.Single[])">
- <summary>
- <para>Sets a float array property.</para>
- </summary>
- <param name="name">Property name.</param>
- <param name="nameID">Property name ID. Use Shader.PropertyToID to get this ID.</param>
- <param name="values">Array of values to set.</param>
- </member>
- <member name="M:UnityEngine.Material.SetFloatArray(System.Int32,System.Single[])">
- <summary>
- <para>Sets a float array property.</para>
- </summary>
- <param name="name">Property name.</param>
- <param name="nameID">Property name ID. Use Shader.PropertyToID to get this ID.</param>
- <param name="values">Array of values to set.</param>
- </member>
- <member name="M:UnityEngine.Material.SetFloatArray(System.String,System.Collections.Generic.List`1&lt;System.Single&gt;)">
- <summary>
- <para>Sets a float array property.</para>
- </summary>
- <param name="name">Property name.</param>
- <param name="nameID">Property name ID. Use Shader.PropertyToID to get this ID.</param>
- <param name="values">Array of values to set.</param>
- </member>
- <member name="M:UnityEngine.Material.SetFloatArray(System.Int32,System.Collections.Generic.List`1&lt;System.Single&gt;)">
- <summary>
- <para>Sets a float array property.</para>
- </summary>
- <param name="name">Property name.</param>
- <param name="nameID">Property name ID. Use Shader.PropertyToID to get this ID.</param>
- <param name="values">Array of values to set.</param>
- </member>
- <member name="M:UnityEngine.Material.SetInt(System.String,System.Int32)">
- <summary>
- <para>Sets a named integer value.</para>
- </summary>
- <param name="nameID">Property name ID, use Shader.PropertyToID to get it.</param>
- <param name="value">Integer value to set.</param>
- <param name="name">Property name, e.g. "_SrcBlend".</param>
- </member>
- <member name="M:UnityEngine.Material.SetInt(System.Int32,System.Int32)">
- <summary>
- <para>Sets a named integer value.</para>
- </summary>
- <param name="nameID">Property name ID, use Shader.PropertyToID to get it.</param>
- <param name="value">Integer value to set.</param>
- <param name="name">Property name, e.g. "_SrcBlend".</param>
- </member>
- <member name="M:UnityEngine.Material.SetMatrix(System.String,UnityEngine.Matrix4x4)">
- <summary>
- <para>Sets a named matrix for the shader.</para>
- </summary>
- <param name="nameID">Property name ID, use Shader.PropertyToID to get it.</param>
- <param name="name">Property name, e.g. "_CubemapRotation".</param>
- <param name="value">Matrix value to set.</param>
- </member>
- <member name="M:UnityEngine.Material.SetMatrix(System.Int32,UnityEngine.Matrix4x4)">
- <summary>
- <para>Sets a named matrix for the shader.</para>
- </summary>
- <param name="nameID">Property name ID, use Shader.PropertyToID to get it.</param>
- <param name="name">Property name, e.g. "_CubemapRotation".</param>
- <param name="value">Matrix value to set.</param>
- </member>
- <member name="M:UnityEngine.Material.SetMatrixArray(System.String,UnityEngine.Matrix4x4[])">
- <summary>
- <para>Sets a matrix array property.</para>
- </summary>
- <param name="name">Property name.</param>
- <param name="values">Array of values to set.</param>
- <param name="nameID">Property name ID, use Shader.PropertyToID to get it.</param>
- </member>
- <member name="M:UnityEngine.Material.SetMatrixArray(System.Int32,UnityEngine.Matrix4x4[])">
- <summary>
- <para>Sets a matrix array property.</para>
- </summary>
- <param name="name">Property name.</param>
- <param name="values">Array of values to set.</param>
- <param name="nameID">Property name ID, use Shader.PropertyToID to get it.</param>
- </member>
- <member name="M:UnityEngine.Material.SetMatrixArray(System.String,System.Collections.Generic.List`1&lt;UnityEngine.Matrix4x4&gt;)">
- <summary>
- <para>Sets a matrix array property.</para>
- </summary>
- <param name="name">Property name.</param>
- <param name="values">Array of values to set.</param>
- <param name="nameID">Property name ID, use Shader.PropertyToID to get it.</param>
- </member>
- <member name="M:UnityEngine.Material.SetMatrixArray(System.Int32,System.Collections.Generic.List`1&lt;UnityEngine.Matrix4x4&gt;)">
- <summary>
- <para>Sets a matrix array property.</para>
- </summary>
- <param name="name">Property name.</param>
- <param name="values">Array of values to set.</param>
- <param name="nameID">Property name ID, use Shader.PropertyToID to get it.</param>
- </member>
- <member name="M:UnityEngine.Material.SetOverrideTag(System.String,System.String)">
- <summary>
- <para>Sets an override tag/value on the material.</para>
- </summary>
- <param name="tag">Name of the tag to set.</param>
- <param name="val">Name of the value to set. Empty string to clear the override flag.</param>
- </member>
- <member name="M:UnityEngine.Material.SetPass(System.Int32)">
- <summary>
- <para>Activate the given pass for rendering.</para>
- </summary>
- <param name="pass">Shader pass number to setup.</param>
- <returns>
- <para>If false is returned, no rendering should be done.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Material.SetShaderPassEnabled(System.String,System.Boolean)">
- <summary>
- <para>Enables or disables a Shader pass on a per-Material level.</para>
- </summary>
- <param name="passName">Shader pass name (case insensitive).</param>
- <param name="enabled">Flag indicating whether this Shader pass should be enabled.</param>
- </member>
- <member name="M:UnityEngine.Material.SetTexture(System.String,UnityEngine.Texture)">
- <summary>
- <para>Sets a named texture.</para>
- </summary>
- <param name="nameID">Property name ID, use Shader.PropertyToID to get it.</param>
- <param name="name">Property name, e.g. "_MainTex".</param>
- <param name="value">Texture to set.</param>
- </member>
- <member name="M:UnityEngine.Material.SetTexture(System.Int32,UnityEngine.Texture)">
- <summary>
- <para>Sets a named texture.</para>
- </summary>
- <param name="nameID">Property name ID, use Shader.PropertyToID to get it.</param>
- <param name="name">Property name, e.g. "_MainTex".</param>
- <param name="value">Texture to set.</param>
- </member>
- <member name="M:UnityEngine.Material.SetTextureOffset(System.String,UnityEngine.Vector2)">
- <summary>
- <para>Sets the placement offset of texture propertyName.</para>
- </summary>
- <param name="nameID">Property name ID, use Shader.PropertyToID to get it.</param>
- <param name="name">Property name, for example: "_MainTex".</param>
- <param name="value">Texture placement offset.</param>
- </member>
- <member name="M:UnityEngine.Material.SetTextureOffset(System.Int32,UnityEngine.Vector2)">
- <summary>
- <para>Sets the placement offset of texture propertyName.</para>
- </summary>
- <param name="nameID">Property name ID, use Shader.PropertyToID to get it.</param>
- <param name="name">Property name, for example: "_MainTex".</param>
- <param name="value">Texture placement offset.</param>
- </member>
- <member name="M:UnityEngine.Material.SetTextureScale(System.String,UnityEngine.Vector2)">
- <summary>
- <para>Sets the placement scale of texture propertyName.</para>
- </summary>
- <param name="nameID">Property name ID, use Shader.PropertyToID to get it.</param>
- <param name="name">Property name, e.g. "_MainTex".</param>
- <param name="value">Texture placement scale.</param>
- </member>
- <member name="M:UnityEngine.Material.SetTextureScale(System.Int32,UnityEngine.Vector2)">
- <summary>
- <para>Sets the placement scale of texture propertyName.</para>
- </summary>
- <param name="nameID">Property name ID, use Shader.PropertyToID to get it.</param>
- <param name="name">Property name, e.g. "_MainTex".</param>
- <param name="value">Texture placement scale.</param>
- </member>
- <member name="M:UnityEngine.Material.SetVector(System.String,UnityEngine.Vector4)">
- <summary>
- <para>Sets a named vector value.</para>
- </summary>
- <param name="nameID">Property name ID, use Shader.PropertyToID to get it.</param>
- <param name="name">Property name, e.g. "_WaveAndDistance".</param>
- <param name="value">Vector value to set.</param>
- </member>
- <member name="M:UnityEngine.Material.SetVector(System.Int32,UnityEngine.Vector4)">
- <summary>
- <para>Sets a named vector value.</para>
- </summary>
- <param name="nameID">Property name ID, use Shader.PropertyToID to get it.</param>
- <param name="name">Property name, e.g. "_WaveAndDistance".</param>
- <param name="value">Vector value to set.</param>
- </member>
- <member name="M:UnityEngine.Material.SetVectorArray(System.String,UnityEngine.Vector4[])">
- <summary>
- <para>Sets a vector array property.</para>
- </summary>
- <param name="name">Property name.</param>
- <param name="values">Array of values to set.</param>
- <param name="nameID">Property name ID, use Shader.PropertyToID to get it.</param>
- </member>
- <member name="M:UnityEngine.Material.SetVectorArray(System.Int32,UnityEngine.Vector4[])">
- <summary>
- <para>Sets a vector array property.</para>
- </summary>
- <param name="name">Property name.</param>
- <param name="values">Array of values to set.</param>
- <param name="nameID">Property name ID, use Shader.PropertyToID to get it.</param>
- </member>
- <member name="M:UnityEngine.Material.SetVectorArray(System.String,System.Collections.Generic.List`1&lt;UnityEngine.Vector4&gt;)">
- <summary>
- <para>Sets a vector array property.</para>
- </summary>
- <param name="name">Property name.</param>
- <param name="values">Array of values to set.</param>
- <param name="nameID">Property name ID, use Shader.PropertyToID to get it.</param>
- </member>
- <member name="M:UnityEngine.Material.SetVectorArray(System.Int32,System.Collections.Generic.List`1&lt;UnityEngine.Vector4&gt;)">
- <summary>
- <para>Sets a vector array property.</para>
- </summary>
- <param name="name">Property name.</param>
- <param name="values">Array of values to set.</param>
- <param name="nameID">Property name ID, use Shader.PropertyToID to get it.</param>
- </member>
- <member name="T:UnityEngine.MaterialGlobalIlluminationFlags">
- <summary>
- <para>How the material interacts with lightmaps and lightprobes.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.MaterialGlobalIlluminationFlags.AnyEmissive">
- <summary>
- <para>Helper Mask to be used to query the enum only based on whether realtime GI or baked GI is set, ignoring all other bits.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.MaterialGlobalIlluminationFlags.BakedEmissive">
- <summary>
- <para>The emissive lighting affects baked Global Illumination. It emits lighting into baked lightmaps and baked lightprobes.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.MaterialGlobalIlluminationFlags.EmissiveIsBlack">
- <summary>
- <para>The emissive lighting is guaranteed to be black. This lets the lightmapping system know that it doesn't have to extract emissive lighting information from the material and can simply assume it is completely black.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.MaterialGlobalIlluminationFlags.None">
- <summary>
- <para>The emissive lighting does not affect Global Illumination at all.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.MaterialGlobalIlluminationFlags.RealtimeEmissive">
- <summary>
- <para>The emissive lighting will affect realtime Global Illumination. It emits lighting into realtime lightmaps and realtime lightprobes.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.MaterialPropertyBlock">
- <summary>
- <para>A block of material values to apply.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.MaterialPropertyBlock.isEmpty">
- <summary>
- <para>Is the material property block empty? (Read Only)</para>
- </summary>
- </member>
- <member name="M:UnityEngine.MaterialPropertyBlock.Clear">
- <summary>
- <para>Clear material property values.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.MaterialPropertyBlock.CopyProbeOcclusionArrayFrom(UnityEngine.Vector4[])">
- <summary>
- <para>This function copies the entire source array into a Vector4 property array named unity_ProbesOcclusion for use with instanced rendering.</para>
- </summary>
- <param name="occlusionProbes">The array of probe occlusion values to copy from.</param>
- </member>
- <member name="M:UnityEngine.MaterialPropertyBlock.CopyProbeOcclusionArrayFrom(System.Collections.Generic.List`1&lt;UnityEngine.Vector4&gt;)">
- <summary>
- <para>This function copies the entire source array into a Vector4 property array named unity_ProbesOcclusion for use with instanced rendering.</para>
- </summary>
- <param name="occlusionProbes">The array of probe occlusion values to copy from.</param>
- </member>
- <member name="M:UnityEngine.MaterialPropertyBlock.CopyProbeOcclusionArrayFrom(UnityEngine.Vector4[],System.Int32,System.Int32,System.Int32)">
- <summary>
- <para>This function copies the source array into a Vector4 property array named unity_ProbesOcclusion with the specified source and destination range for use with instanced rendering.</para>
- </summary>
- <param name="occlusionProbes">The array of probe occlusion values to copy from.</param>
- <param name="sourceStart">The index of the first element in the source array to copy from.</param>
- <param name="destStart">The index of the first element in the destination MaterialPropertyBlock array to copy to.</param>
- <param name="count">The number of elements to copy.</param>
- </member>
- <member name="M:UnityEngine.MaterialPropertyBlock.CopyProbeOcclusionArrayFrom(System.Collections.Generic.List`1&lt;UnityEngine.Vector4&gt;,System.Int32,System.Int32,System.Int32)">
- <summary>
- <para>This function copies the source array into a Vector4 property array named unity_ProbesOcclusion with the specified source and destination range for use with instanced rendering.</para>
- </summary>
- <param name="occlusionProbes">The array of probe occlusion values to copy from.</param>
- <param name="sourceStart">The index of the first element in the source array to copy from.</param>
- <param name="destStart">The index of the first element in the destination MaterialPropertyBlock array to copy to.</param>
- <param name="count">The number of elements to copy.</param>
- </member>
- <member name="M:UnityEngine.MaterialPropertyBlock.CopySHCoefficientArraysFrom(System.Collections.Generic.List`1&lt;UnityEngine.Rendering.SphericalHarmonicsL2&gt;)">
- <summary>
- <para>This function converts and copies the entire source array into 7 Vector4 property arrays named unity_SHAr, unity_SHAg, unity_SHAb, unity_SHBr, unity_SHBg, unity_SHBb and unity_SHC for use with instanced rendering.</para>
- </summary>
- <param name="lightProbes">The array of SH values to copy from.</param>
- </member>
- <member name="M:UnityEngine.MaterialPropertyBlock.CopySHCoefficientArraysFrom(UnityEngine.Rendering.SphericalHarmonicsL2[])">
- <summary>
- <para>This function converts and copies the entire source array into 7 Vector4 property arrays named unity_SHAr, unity_SHAg, unity_SHAb, unity_SHBr, unity_SHBg, unity_SHBb and unity_SHC for use with instanced rendering.</para>
- </summary>
- <param name="lightProbes">The array of SH values to copy from.</param>
- </member>
- <member name="M:UnityEngine.MaterialPropertyBlock.CopySHCoefficientArraysFrom(UnityEngine.Rendering.SphericalHarmonicsL2[],System.Int32,System.Int32,System.Int32)">
- <summary>
- <para>This function converts and copies the source array into 7 Vector4 property arrays named unity_SHAr, unity_SHAg, unity_SHAb, unity_SHBr, unity_SHBg, unity_SHBb and unity_SHC with the specified source and destination range for use with instanced rendering.</para>
- </summary>
- <param name="lightProbes">The array of SH values to copy from.</param>
- <param name="sourceStart">The index of the first element in the source array to copy from.</param>
- <param name="destStart">The index of the first element in the destination MaterialPropertyBlock array to copy to.</param>
- <param name="count">The number of elements to copy.</param>
- </member>
- <member name="M:UnityEngine.MaterialPropertyBlock.CopySHCoefficientArraysFrom(System.Collections.Generic.List`1&lt;UnityEngine.Rendering.SphericalHarmonicsL2&gt;,System.Int32,System.Int32,System.Int32)">
- <summary>
- <para>This function converts and copies the source array into 7 Vector4 property arrays named unity_SHAr, unity_SHAg, unity_SHAb, unity_SHBr, unity_SHBg, unity_SHBb and unity_SHC with the specified source and destination range for use with instanced rendering.</para>
- </summary>
- <param name="lightProbes">The array of SH values to copy from.</param>
- <param name="sourceStart">The index of the first element in the source array to copy from.</param>
- <param name="destStart">The index of the first element in the destination MaterialPropertyBlock array to copy to.</param>
- <param name="count">The number of elements to copy.</param>
- </member>
- <member name="M:UnityEngine.MaterialPropertyBlock.GetColor(System.String)">
- <summary>
- <para>Get a color from the property block.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- </member>
- <member name="M:UnityEngine.MaterialPropertyBlock.GetColor(System.Int32)">
- <summary>
- <para>Get a color from the property block.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- </member>
- <member name="M:UnityEngine.MaterialPropertyBlock.GetFloat(System.String)">
- <summary>
- <para>Get a float from the property block.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- </member>
- <member name="M:UnityEngine.MaterialPropertyBlock.GetFloat(System.Int32)">
- <summary>
- <para>Get a float from the property block.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- </member>
- <member name="M:UnityEngine.MaterialPropertyBlock.GetFloatArray(System.String)">
- <summary>
- <para>Get a float array from the property block.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- </member>
- <member name="M:UnityEngine.MaterialPropertyBlock.GetFloatArray(System.Int32)">
- <summary>
- <para>Get a float array from the property block.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- </member>
- <member name="M:UnityEngine.MaterialPropertyBlock.GetFloatArray(System.String,System.Collections.Generic.List`1&lt;System.Single&gt;)">
- <summary>
- <para>Fetch a float array from the property block into a list.</para>
- </summary>
- <param name="values">The list to hold the returned array.</param>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- </member>
- <member name="M:UnityEngine.MaterialPropertyBlock.GetFloatArray(System.Int32,System.Collections.Generic.List`1&lt;System.Single&gt;)">
- <summary>
- <para>Fetch a float array from the property block into a list.</para>
- </summary>
- <param name="values">The list to hold the returned array.</param>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- </member>
- <member name="M:UnityEngine.MaterialPropertyBlock.GetInt(System.String)">
- <summary>
- <para>Get an int from the property block.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- </member>
- <member name="M:UnityEngine.MaterialPropertyBlock.GetInt(System.Int32)">
- <summary>
- <para>Get an int from the property block.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- </member>
- <member name="M:UnityEngine.MaterialPropertyBlock.GetMatrix(System.String)">
- <summary>
- <para>Get a matrix from the property block.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- </member>
- <member name="M:UnityEngine.MaterialPropertyBlock.GetMatrix(System.Int32)">
- <summary>
- <para>Get a matrix from the property block.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- </member>
- <member name="M:UnityEngine.MaterialPropertyBlock.GetMatrixArray(System.String)">
- <summary>
- <para>Get a matrix array from the property block.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- </member>
- <member name="M:UnityEngine.MaterialPropertyBlock.GetMatrixArray(System.Int32)">
- <summary>
- <para>Get a matrix array from the property block.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- </member>
- <member name="M:UnityEngine.MaterialPropertyBlock.GetMatrixArray(System.String,System.Collections.Generic.List`1&lt;UnityEngine.Matrix4x4&gt;)">
- <summary>
- <para>Fetch a matrix array from the property block into a list.</para>
- </summary>
- <param name="values">The list to hold the returned array.</param>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- </member>
- <member name="M:UnityEngine.MaterialPropertyBlock.GetMatrixArray(System.Int32,System.Collections.Generic.List`1&lt;UnityEngine.Matrix4x4&gt;)">
- <summary>
- <para>Fetch a matrix array from the property block into a list.</para>
- </summary>
- <param name="values">The list to hold the returned array.</param>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- </member>
- <member name="M:UnityEngine.MaterialPropertyBlock.GetTexture(System.String)">
- <summary>
- <para>Get a texture from the property block.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- </member>
- <member name="M:UnityEngine.MaterialPropertyBlock.GetTexture(System.Int32)">
- <summary>
- <para>Get a texture from the property block.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- </member>
- <member name="M:UnityEngine.MaterialPropertyBlock.GetVector(System.String)">
- <summary>
- <para>Get a vector from the property block.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- </member>
- <member name="M:UnityEngine.MaterialPropertyBlock.GetVector(System.Int32)">
- <summary>
- <para>Get a vector from the property block.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- </member>
- <member name="M:UnityEngine.MaterialPropertyBlock.GetVectorArray(System.String)">
- <summary>
- <para>Get a vector array from the property block.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- </member>
- <member name="M:UnityEngine.MaterialPropertyBlock.GetVectorArray(System.Int32)">
- <summary>
- <para>Get a vector array from the property block.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- </member>
- <member name="M:UnityEngine.MaterialPropertyBlock.GetVectorArray(System.String,System.Collections.Generic.List`1&lt;UnityEngine.Vector4&gt;)">
- <summary>
- <para>Fetch a vector array from the property block into a list.</para>
- </summary>
- <param name="values">The list to hold the returned array.</param>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- </member>
- <member name="M:UnityEngine.MaterialPropertyBlock.GetVectorArray(System.Int32,System.Collections.Generic.List`1&lt;UnityEngine.Vector4&gt;)">
- <summary>
- <para>Fetch a vector array from the property block into a list.</para>
- </summary>
- <param name="values">The list to hold the returned array.</param>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- </member>
- <member name="M:UnityEngine.MaterialPropertyBlock.SetBuffer(System.String,UnityEngine.ComputeBuffer)">
- <summary>
- <para>Set a ComputeBuffer property.</para>
- </summary>
- <param name="name">The name of the property.</param>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="value">The ComputeBuffer to set.</param>
- </member>
- <member name="M:UnityEngine.MaterialPropertyBlock.SetBuffer(System.Int32,UnityEngine.ComputeBuffer)">
- <summary>
- <para>Set a ComputeBuffer property.</para>
- </summary>
- <param name="name">The name of the property.</param>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="value">The ComputeBuffer to set.</param>
- </member>
- <member name="M:UnityEngine.MaterialPropertyBlock.SetColor(System.String,UnityEngine.Color)">
- <summary>
- <para>Set a color property.</para>
- </summary>
- <param name="name">The name of the property.</param>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="value">The Color value to set.</param>
- </member>
- <member name="M:UnityEngine.MaterialPropertyBlock.SetColor(System.Int32,UnityEngine.Color)">
- <summary>
- <para>Set a color property.</para>
- </summary>
- <param name="name">The name of the property.</param>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="value">The Color value to set.</param>
- </member>
- <member name="M:UnityEngine.MaterialPropertyBlock.SetFloat(System.String,System.Single)">
- <summary>
- <para>Set a float property.</para>
- </summary>
- <param name="name">The name of the property.</param>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="value">The float value to set.</param>
- </member>
- <member name="M:UnityEngine.MaterialPropertyBlock.SetFloat(System.Int32,System.Single)">
- <summary>
- <para>Set a float property.</para>
- </summary>
- <param name="name">The name of the property.</param>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="value">The float value to set.</param>
- </member>
- <member name="M:UnityEngine.MaterialPropertyBlock.SetFloatArray(System.String,System.Single[])">
- <summary>
- <para>Set a float array property.</para>
- </summary>
- <param name="name">The name of the property.</param>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="values">The array to set.</param>
- </member>
- <member name="M:UnityEngine.MaterialPropertyBlock.SetFloatArray(System.Int32,System.Single[])">
- <summary>
- <para>Set a float array property.</para>
- </summary>
- <param name="name">The name of the property.</param>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="values">The array to set.</param>
- </member>
- <member name="M:UnityEngine.MaterialPropertyBlock.SetFloatArray(System.String,System.Collections.Generic.List`1&lt;System.Single&gt;)">
- <summary>
- <para>Set a float array property.</para>
- </summary>
- <param name="name">The name of the property.</param>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="values">The array to set.</param>
- </member>
- <member name="M:UnityEngine.MaterialPropertyBlock.SetFloatArray(System.Int32,System.Collections.Generic.List`1&lt;System.Single&gt;)">
- <summary>
- <para>Set a float array property.</para>
- </summary>
- <param name="name">The name of the property.</param>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="values">The array to set.</param>
- </member>
- <member name="M:UnityEngine.MaterialPropertyBlock.SetInt(System.Int32,System.Int32)">
- <summary>
- <para>Adds a property to the block. If an int property with the given name already exists, the old value is replaced.</para>
- </summary>
- <param name="name">The name of the property.</param>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="value">The int value to set.</param>
- </member>
- <member name="M:UnityEngine.MaterialPropertyBlock.SetInt(System.String,System.Int32)">
- <summary>
- <para>Adds a property to the block. If an int property with the given name already exists, the old value is replaced.</para>
- </summary>
- <param name="name">The name of the property.</param>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="value">The int value to set.</param>
- </member>
- <member name="M:UnityEngine.MaterialPropertyBlock.SetMatrix(System.String,UnityEngine.Matrix4x4)">
- <summary>
- <para>Set a matrix property.</para>
- </summary>
- <param name="name">The name of the property.</param>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="value">The matrix value to set.</param>
- </member>
- <member name="M:UnityEngine.MaterialPropertyBlock.SetMatrix(System.Int32,UnityEngine.Matrix4x4)">
- <summary>
- <para>Set a matrix property.</para>
- </summary>
- <param name="name">The name of the property.</param>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="value">The matrix value to set.</param>
- </member>
- <member name="M:UnityEngine.MaterialPropertyBlock.SetMatrixArray(System.String,UnityEngine.Matrix4x4[])">
- <summary>
- <para>Set a matrix array property.</para>
- </summary>
- <param name="name">The name of the property.</param>
- <param name="values">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="nameID">The array to set.</param>
- </member>
- <member name="M:UnityEngine.MaterialPropertyBlock.SetMatrixArray(System.Int32,UnityEngine.Matrix4x4[])">
- <summary>
- <para>Set a matrix array property.</para>
- </summary>
- <param name="name">The name of the property.</param>
- <param name="values">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="nameID">The array to set.</param>
- </member>
- <member name="M:UnityEngine.MaterialPropertyBlock.SetMatrixArray(System.String,System.Collections.Generic.List`1&lt;UnityEngine.Matrix4x4&gt;)">
- <summary>
- <para>Set a matrix array property.</para>
- </summary>
- <param name="name">The name of the property.</param>
- <param name="values">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="nameID">The array to set.</param>
- </member>
- <member name="M:UnityEngine.MaterialPropertyBlock.SetMatrixArray(System.Int32,System.Collections.Generic.List`1&lt;UnityEngine.Matrix4x4&gt;)">
- <summary>
- <para>Set a matrix array property.</para>
- </summary>
- <param name="name">The name of the property.</param>
- <param name="values">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="nameID">The array to set.</param>
- </member>
- <member name="M:UnityEngine.MaterialPropertyBlock.SetTexture(System.String,UnityEngine.Texture)">
- <summary>
- <para>Set a texture property.</para>
- </summary>
- <param name="name">The name of the property.</param>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="value">The Texture to set.</param>
- </member>
- <member name="M:UnityEngine.MaterialPropertyBlock.SetTexture(System.Int32,UnityEngine.Texture)">
- <summary>
- <para>Set a texture property.</para>
- </summary>
- <param name="name">The name of the property.</param>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="value">The Texture to set.</param>
- </member>
- <member name="M:UnityEngine.MaterialPropertyBlock.SetVector(System.String,UnityEngine.Vector4)">
- <summary>
- <para>Set a vector property.</para>
- </summary>
- <param name="name">The name of the property.</param>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="value">The Vector4 value to set.</param>
- </member>
- <member name="M:UnityEngine.MaterialPropertyBlock.SetVector(System.Int32,UnityEngine.Vector4)">
- <summary>
- <para>Set a vector property.</para>
- </summary>
- <param name="name">The name of the property.</param>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="value">The Vector4 value to set.</param>
- </member>
- <member name="M:UnityEngine.MaterialPropertyBlock.SetVectorArray(System.String,UnityEngine.Vector4[])">
- <summary>
- <para>Set a vector array property.</para>
- </summary>
- <param name="nameID">The name of the property.</param>
- <param name="values">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The array to set.</param>
- </member>
- <member name="M:UnityEngine.MaterialPropertyBlock.SetVectorArray(System.Int32,UnityEngine.Vector4[])">
- <summary>
- <para>Set a vector array property.</para>
- </summary>
- <param name="nameID">The name of the property.</param>
- <param name="values">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The array to set.</param>
- </member>
- <member name="M:UnityEngine.MaterialPropertyBlock.SetVectorArray(System.String,System.Collections.Generic.List`1&lt;UnityEngine.Vector4&gt;)">
- <summary>
- <para>Set a vector array property.</para>
- </summary>
- <param name="nameID">The name of the property.</param>
- <param name="values">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The array to set.</param>
- </member>
- <member name="M:UnityEngine.MaterialPropertyBlock.SetVectorArray(System.Int32,System.Collections.Generic.List`1&lt;UnityEngine.Vector4&gt;)">
- <summary>
- <para>Set a vector array property.</para>
- </summary>
- <param name="nameID">The name of the property.</param>
- <param name="values">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The array to set.</param>
- </member>
- <member name="T:UnityEngine.Mathf">
- <summary>
- <para>A collection of common math functions.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Mathf.Abs(System.Single)">
- <summary>
- <para>Returns the absolute value of f.</para>
- </summary>
- <param name="f"></param>
- </member>
- <member name="M:UnityEngine.Mathf.Abs(System.Int32)">
- <summary>
- <para>Returns the absolute value of value.</para>
- </summary>
- <param name="value"></param>
- </member>
- <member name="M:UnityEngine.Mathf.Acos(System.Single)">
- <summary>
- <para>Returns the arc-cosine of f - the angle in radians whose cosine is f.</para>
- </summary>
- <param name="f"></param>
- </member>
- <member name="M:UnityEngine.Mathf.Approximately(System.Single,System.Single)">
- <summary>
- <para>Compares two floating point values and returns true if they are similar.</para>
- </summary>
- <param name="a"></param>
- <param name="b"></param>
- </member>
- <member name="M:UnityEngine.Mathf.Asin(System.Single)">
- <summary>
- <para>Returns the arc-sine of f - the angle in radians whose sine is f.</para>
- </summary>
- <param name="f"></param>
- </member>
- <member name="M:UnityEngine.Mathf.Atan(System.Single)">
- <summary>
- <para>Returns the arc-tangent of f - the angle in radians whose tangent is f.</para>
- </summary>
- <param name="f"></param>
- </member>
- <member name="M:UnityEngine.Mathf.Atan2(System.Single,System.Single)">
- <summary>
- <para>Returns the angle in radians whose Tan is y/x.</para>
- </summary>
- <param name="y"></param>
- <param name="x"></param>
- </member>
- <member name="M:UnityEngine.Mathf.Ceil(System.Single)">
- <summary>
- <para>Returns the smallest integer greater to or equal to f.</para>
- </summary>
- <param name="f"></param>
- </member>
- <member name="M:UnityEngine.Mathf.CeilToInt(System.Single)">
- <summary>
- <para>Returns the smallest integer greater to or equal to f.</para>
- </summary>
- <param name="f"></param>
- </member>
- <member name="M:UnityEngine.Mathf.Clamp(System.Single,System.Single,System.Single)">
- <summary>
- <para>Clamps a value between a minimum float and maximum float value.</para>
- </summary>
- <param name="value"></param>
- <param name="min"></param>
- <param name="max"></param>
- </member>
- <member name="M:UnityEngine.Mathf.Clamp(System.Int32,System.Int32,System.Int32)">
- <summary>
- <para>Clamps value between min and max and returns value.</para>
- </summary>
- <param name="value"></param>
- <param name="min"></param>
- <param name="max"></param>
- </member>
- <member name="M:UnityEngine.Mathf.Clamp01(System.Single)">
- <summary>
- <para>Clamps value between 0 and 1 and returns value.</para>
- </summary>
- <param name="value"></param>
- </member>
- <member name="M:UnityEngine.Mathf.ClosestPowerOfTwo(System.Int32)">
- <summary>
- <para>Returns the closest power of two value.</para>
- </summary>
- <param name="value"></param>
- </member>
- <member name="M:UnityEngine.Mathf.CorrelatedColorTemperatureToRGB(System.Single)">
- <summary>
- <para>Convert a color temperature in Kelvin to RGB color.</para>
- </summary>
- <param name="kelvin">Temperature in Kelvin. Range 1000 to 40000 Kelvin.</param>
- <returns>
- <para>Correlated Color Temperature as floating point RGB color.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Mathf.Cos(System.Single)">
- <summary>
- <para>Returns the cosine of angle f.</para>
- </summary>
- <param name="f">The input angle, in radians.</param>
- <returns>
- <para>The return value between -1 and 1.</para>
- </returns>
- </member>
- <member name="F:UnityEngine.Mathf.Deg2Rad">
- <summary>
- <para>Degrees-to-radians conversion constant (Read Only).</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Mathf.DeltaAngle(System.Single,System.Single)">
- <summary>
- <para>Calculates the shortest difference between two given angles given in degrees.</para>
- </summary>
- <param name="current"></param>
- <param name="target"></param>
- </member>
- <member name="F:UnityEngine.Mathf.Epsilon">
- <summary>
- <para>A tiny floating point value (Read Only).</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Mathf.Exp(System.Single)">
- <summary>
- <para>Returns e raised to the specified power.</para>
- </summary>
- <param name="power"></param>
- </member>
- <member name="M:UnityEngine.Mathf.Floor(System.Single)">
- <summary>
- <para>Returns the largest integer smaller than or equal to f.</para>
- </summary>
- <param name="f"></param>
- </member>
- <member name="M:UnityEngine.Mathf.FloorToInt(System.Single)">
- <summary>
- <para>Returns the largest integer smaller to or equal to f.</para>
- </summary>
- <param name="f"></param>
- </member>
- <member name="M:UnityEngine.Mathf.GammaToLinearSpace(System.Single)">
- <summary>
- <para>Converts the given value from gamma (sRGB) to linear color space.</para>
- </summary>
- <param name="value"></param>
- </member>
- <member name="F:UnityEngine.Mathf.Infinity">
- <summary>
- <para>A representation of positive infinity (Read Only).</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Mathf.InverseLerp(System.Single,System.Single,System.Single)">
- <summary>
- <para>Calculates the linear parameter t that produces the interpolant value within the range [a, b].</para>
- </summary>
- <param name="a"></param>
- <param name="b"></param>
- <param name="value"></param>
- </member>
- <member name="M:UnityEngine.Mathf.IsPowerOfTwo(System.Int32)">
- <summary>
- <para>Returns true if the value is power of two.</para>
- </summary>
- <param name="value"></param>
- </member>
- <member name="M:UnityEngine.Mathf.Lerp(System.Single,System.Single,System.Single)">
- <summary>
- <para>Linearly interpolates between a and b by t.</para>
- </summary>
- <param name="a">The start value.</param>
- <param name="b">The end value.</param>
- <param name="t">The interpolation value between the two floats.</param>
- <returns>
- <para>The interpolated float result between the two float values.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Mathf.LerpAngle(System.Single,System.Single,System.Single)">
- <summary>
- <para>Same as Lerp but makes sure the values interpolate correctly when they wrap around 360 degrees.</para>
- </summary>
- <param name="a"></param>
- <param name="b"></param>
- <param name="t"></param>
- </member>
- <member name="M:UnityEngine.Mathf.LerpUnclamped(System.Single,System.Single,System.Single)">
- <summary>
- <para>Linearly interpolates between a and b by t with no limit to t.</para>
- </summary>
- <param name="a">The start value.</param>
- <param name="b">The end value.</param>
- <param name="t">The interpolation between the two floats.</param>
- <returns>
- <para>The float value as a result from the linear interpolation.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Mathf.LinearToGammaSpace(System.Single)">
- <summary>
- <para>Converts the given value from linear to gamma (sRGB) color space.</para>
- </summary>
- <param name="value"></param>
- </member>
- <member name="M:UnityEngine.Mathf.Log(System.Single,System.Single)">
- <summary>
- <para>Returns the logarithm of a specified number in a specified base.</para>
- </summary>
- <param name="f"></param>
- <param name="p"></param>
- </member>
- <member name="M:UnityEngine.Mathf.Log(System.Single)">
- <summary>
- <para>Returns the natural (base e) logarithm of a specified number.</para>
- </summary>
- <param name="f"></param>
- </member>
- <member name="M:UnityEngine.Mathf.Log10(System.Single)">
- <summary>
- <para>Returns the base 10 logarithm of a specified number.</para>
- </summary>
- <param name="f"></param>
- </member>
- <member name="M:UnityEngine.Mathf.Max(System.Single,System.Single)">
- <summary>
- <para>Returns largest of two or more values.</para>
- </summary>
- <param name="a"></param>
- <param name="b"></param>
- <param name="values"></param>
- </member>
- <member name="M:UnityEngine.Mathf.Max(System.Single[])">
- <summary>
- <para>Returns largest of two or more values.</para>
- </summary>
- <param name="a"></param>
- <param name="b"></param>
- <param name="values"></param>
- </member>
- <member name="M:UnityEngine.Mathf.Max(System.Int32,System.Int32)">
- <summary>
- <para>Returns the largest of two or more values.</para>
- </summary>
- <param name="a"></param>
- <param name="b"></param>
- <param name="values"></param>
- </member>
- <member name="M:UnityEngine.Mathf.Max(System.Int32[])">
- <summary>
- <para>Returns the largest of two or more values.</para>
- </summary>
- <param name="a"></param>
- <param name="b"></param>
- <param name="values"></param>
- </member>
- <member name="M:UnityEngine.Mathf.Min(System.Single,System.Single)">
- <summary>
- <para>Returns the smallest of two or more values.</para>
- </summary>
- <param name="a"></param>
- <param name="b"></param>
- <param name="values"></param>
- </member>
- <member name="M:UnityEngine.Mathf.Min(System.Single[])">
- <summary>
- <para>Returns the smallest of two or more values.</para>
- </summary>
- <param name="a"></param>
- <param name="b"></param>
- <param name="values"></param>
- </member>
- <member name="M:UnityEngine.Mathf.Min(System.Int32,System.Int32)">
- <summary>
- <para>Returns the smallest of two or more values.</para>
- </summary>
- <param name="a"></param>
- <param name="b"></param>
- <param name="values"></param>
- </member>
- <member name="M:UnityEngine.Mathf.Min(System.Int32[])">
- <summary>
- <para>Returns the smallest of two or more values.</para>
- </summary>
- <param name="a"></param>
- <param name="b"></param>
- <param name="values"></param>
- </member>
- <member name="M:UnityEngine.Mathf.MoveTowards(System.Single,System.Single,System.Single)">
- <summary>
- <para>Moves a value current towards target.</para>
- </summary>
- <param name="current">The current value.</param>
- <param name="target">The value to move towards.</param>
- <param name="maxDelta">The maximum change that should be applied to the value.</param>
- </member>
- <member name="M:UnityEngine.Mathf.MoveTowardsAngle(System.Single,System.Single,System.Single)">
- <summary>
- <para>Same as MoveTowards but makes sure the values interpolate correctly when they wrap around 360 degrees.</para>
- </summary>
- <param name="current"></param>
- <param name="target"></param>
- <param name="maxDelta"></param>
- </member>
- <member name="F:UnityEngine.Mathf.NegativeInfinity">
- <summary>
- <para>A representation of negative infinity (Read Only).</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Mathf.NextPowerOfTwo(System.Int32)">
- <summary>
- <para>Returns the next power of two value.</para>
- </summary>
- <param name="value"></param>
- </member>
- <member name="M:UnityEngine.Mathf.PerlinNoise(System.Single,System.Single)">
- <summary>
- <para>Generate 2D Perlin noise.</para>
- </summary>
- <param name="x">X-coordinate of sample point.</param>
- <param name="y">Y-coordinate of sample point.</param>
- <returns>
- <para>Value between 0.0 and 1.0.</para>
- </returns>
- </member>
- <member name="F:UnityEngine.Mathf.PI">
- <summary>
- <para>The infamous 3.14159265358979... value (Read Only).</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Mathf.PingPong(System.Single,System.Single)">
- <summary>
- <para>PingPongs the value t, so that it is never larger than length and never smaller than 0.</para>
- </summary>
- <param name="t"></param>
- <param name="length"></param>
- </member>
- <member name="M:UnityEngine.Mathf.Pow(System.Single,System.Single)">
- <summary>
- <para>Returns f raised to power p.</para>
- </summary>
- <param name="f"></param>
- <param name="p"></param>
- </member>
- <member name="F:UnityEngine.Mathf.Rad2Deg">
- <summary>
- <para>Radians-to-degrees conversion constant (Read Only).</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Mathf.Repeat(System.Single,System.Single)">
- <summary>
- <para>Loops the value t, so that it is never larger than length and never smaller than 0.</para>
- </summary>
- <param name="t"></param>
- <param name="length"></param>
- </member>
- <member name="M:UnityEngine.Mathf.Round(System.Single)">
- <summary>
- <para>Returns f rounded to the nearest integer.</para>
- </summary>
- <param name="f"></param>
- </member>
- <member name="M:UnityEngine.Mathf.RoundToInt(System.Single)">
- <summary>
- <para>Returns f rounded to the nearest integer.</para>
- </summary>
- <param name="f"></param>
- </member>
- <member name="M:UnityEngine.Mathf.Sign(System.Single)">
- <summary>
- <para>Returns the sign of f.</para>
- </summary>
- <param name="f"></param>
- </member>
- <member name="M:UnityEngine.Mathf.Sin(System.Single)">
- <summary>
- <para>Returns the sine of angle f.</para>
- </summary>
- <param name="f">The input angle, in radians.</param>
- <returns>
- <para>The return value between -1 and +1.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Mathf.SmoothDamp(System.Single,System.Single,System.Single&amp;,System.Single)">
- <summary>
- <para>Gradually changes a value towards a desired goal over time.</para>
- </summary>
- <param name="current">The current position.</param>
- <param name="target">The position we are trying to reach.</param>
- <param name="currentVelocity">The current velocity, this value is modified by the function every time you call it.</param>
- <param name="smoothTime">Approximately the time it will take to reach the target. A smaller value will reach the target faster.</param>
- <param name="maxSpeed">Optionally allows you to clamp the maximum speed.</param>
- <param name="deltaTime">The time since the last call to this function. By default Time.deltaTime.</param>
- </member>
- <member name="M:UnityEngine.Mathf.SmoothDamp(System.Single,System.Single,System.Single&amp;,System.Single,System.Single)">
- <summary>
- <para>Gradually changes a value towards a desired goal over time.</para>
- </summary>
- <param name="current">The current position.</param>
- <param name="target">The position we are trying to reach.</param>
- <param name="currentVelocity">The current velocity, this value is modified by the function every time you call it.</param>
- <param name="smoothTime">Approximately the time it will take to reach the target. A smaller value will reach the target faster.</param>
- <param name="maxSpeed">Optionally allows you to clamp the maximum speed.</param>
- <param name="deltaTime">The time since the last call to this function. By default Time.deltaTime.</param>
- </member>
- <member name="M:UnityEngine.Mathf.SmoothDamp(System.Single,System.Single,System.Single&amp;,System.Single,System.Single,System.Single)">
- <summary>
- <para>Gradually changes a value towards a desired goal over time.</para>
- </summary>
- <param name="current">The current position.</param>
- <param name="target">The position we are trying to reach.</param>
- <param name="currentVelocity">The current velocity, this value is modified by the function every time you call it.</param>
- <param name="smoothTime">Approximately the time it will take to reach the target. A smaller value will reach the target faster.</param>
- <param name="maxSpeed">Optionally allows you to clamp the maximum speed.</param>
- <param name="deltaTime">The time since the last call to this function. By default Time.deltaTime.</param>
- </member>
- <member name="M:UnityEngine.Mathf.SmoothDampAngle(System.Single,System.Single,System.Single&amp;,System.Single)">
- <summary>
- <para>Gradually changes an angle given in degrees towards a desired goal angle over time.</para>
- </summary>
- <param name="current">The current position.</param>
- <param name="target">The position we are trying to reach.</param>
- <param name="currentVelocity">The current velocity, this value is modified by the function every time you call it.</param>
- <param name="smoothTime">Approximately the time it will take to reach the target. A smaller value will reach the target faster.</param>
- <param name="maxSpeed">Optionally allows you to clamp the maximum speed.</param>
- <param name="deltaTime">The time since the last call to this function. By default Time.deltaTime.</param>
- </member>
- <member name="M:UnityEngine.Mathf.SmoothDampAngle(System.Single,System.Single,System.Single&amp;,System.Single,System.Single)">
- <summary>
- <para>Gradually changes an angle given in degrees towards a desired goal angle over time.</para>
- </summary>
- <param name="current">The current position.</param>
- <param name="target">The position we are trying to reach.</param>
- <param name="currentVelocity">The current velocity, this value is modified by the function every time you call it.</param>
- <param name="smoothTime">Approximately the time it will take to reach the target. A smaller value will reach the target faster.</param>
- <param name="maxSpeed">Optionally allows you to clamp the maximum speed.</param>
- <param name="deltaTime">The time since the last call to this function. By default Time.deltaTime.</param>
- </member>
- <member name="M:UnityEngine.Mathf.SmoothDampAngle(System.Single,System.Single,System.Single&amp;,System.Single,System.Single,System.Single)">
- <summary>
- <para>Gradually changes an angle given in degrees towards a desired goal angle over time.</para>
- </summary>
- <param name="current">The current position.</param>
- <param name="target">The position we are trying to reach.</param>
- <param name="currentVelocity">The current velocity, this value is modified by the function every time you call it.</param>
- <param name="smoothTime">Approximately the time it will take to reach the target. A smaller value will reach the target faster.</param>
- <param name="maxSpeed">Optionally allows you to clamp the maximum speed.</param>
- <param name="deltaTime">The time since the last call to this function. By default Time.deltaTime.</param>
- </member>
- <member name="M:UnityEngine.Mathf.SmoothStep(System.Single,System.Single,System.Single)">
- <summary>
- <para>Interpolates between min and max with smoothing at the limits.</para>
- </summary>
- <param name="from"></param>
- <param name="to"></param>
- <param name="t"></param>
- </member>
- <member name="M:UnityEngine.Mathf.Sqrt(System.Single)">
- <summary>
- <para>Returns square root of f.</para>
- </summary>
- <param name="f"></param>
- </member>
- <member name="M:UnityEngine.Mathf.Tan(System.Single)">
- <summary>
- <para>Returns the tangent of angle f in radians.</para>
- </summary>
- <param name="f"></param>
- </member>
- <member name="T:UnityEngine.Matrix4x4">
- <summary>
- <para>A standard 4x4 transformation matrix.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Matrix4x4.decomposeProjection">
- <summary>
- <para>This property takes a projection matrix and returns the six plane coordinates that define a projection frustum.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Matrix4x4.determinant">
- <summary>
- <para>The determinant of the matrix.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Matrix4x4.identity">
- <summary>
- <para>Returns the identity matrix (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Matrix4x4.inverse">
- <summary>
- <para>The inverse of this matrix (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Matrix4x4.isIdentity">
- <summary>
- <para>Is this the identity matrix?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Matrix4x4.lossyScale">
- <summary>
- <para>Attempts to get a scale value from the matrix.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Matrix4x4.rotation">
- <summary>
- <para>Attempts to get a rotation quaternion from this matrix.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Matrix4x4.transpose">
- <summary>
- <para>Returns the transpose of this matrix (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Matrix4x4.zero">
- <summary>
- <para>Returns a matrix with all elements set to zero (Read Only).</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Matrix4x4.Frustum(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)">
- <summary>
- <para>This function returns a projection matrix with viewing frustum that has a near plane defined by the coordinates that were passed in.</para>
- </summary>
- <param name="left">The X coordinate of the left side of the near projection plane in view space.</param>
- <param name="right">The X coordinate of the right side of the near projection plane in view space.</param>
- <param name="bottom">The Y coordinate of the bottom side of the near projection plane in view space.</param>
- <param name="top">The Y coordinate of the top side of the near projection plane in view space.</param>
- <param name="zNear">Z distance to the near plane from the origin in view space.</param>
- <param name="zFar">Z distance to the far plane from the origin in view space.</param>
- <param name="frustumPlanes">Frustum planes struct that contains the view space coordinates of that define a viewing frustum.</param>
- <param name="fp"></param>
- <returns>
- <para>A projection matrix with a viewing frustum defined by the plane coordinates passed in.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Matrix4x4.Frustum(UnityEngine.FrustumPlanes)">
- <summary>
- <para>This function returns a projection matrix with viewing frustum that has a near plane defined by the coordinates that were passed in.</para>
- </summary>
- <param name="left">The X coordinate of the left side of the near projection plane in view space.</param>
- <param name="right">The X coordinate of the right side of the near projection plane in view space.</param>
- <param name="bottom">The Y coordinate of the bottom side of the near projection plane in view space.</param>
- <param name="top">The Y coordinate of the top side of the near projection plane in view space.</param>
- <param name="zNear">Z distance to the near plane from the origin in view space.</param>
- <param name="zFar">Z distance to the far plane from the origin in view space.</param>
- <param name="frustumPlanes">Frustum planes struct that contains the view space coordinates of that define a viewing frustum.</param>
- <param name="fp"></param>
- <returns>
- <para>A projection matrix with a viewing frustum defined by the plane coordinates passed in.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Matrix4x4.GetColumn(System.Int32)">
- <summary>
- <para>Get a column of the matrix.</para>
- </summary>
- <param name="index"></param>
- </member>
- <member name="M:UnityEngine.Matrix4x4.GetRow(System.Int32)">
- <summary>
- <para>Returns a row of the matrix.</para>
- </summary>
- <param name="index"></param>
- </member>
- <member name="M:UnityEngine.Matrix4x4.LookAt(UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.Vector3)">
- <summary>
- <para>Given a source point, a target point, and an up vector, computes a transformation matrix that corresponds to a camera viewing the target from the source, such that the right-hand vector is perpendicular to the up vector.</para>
- </summary>
- <param name="from">The source point.</param>
- <param name="to">The target point.</param>
- <param name="up">The vector describing the up direction (typically Vector3.up).</param>
- <returns>
- <para>The resulting transformation matrix.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Matrix4x4.MultiplyPoint(UnityEngine.Vector3)">
- <summary>
- <para>Transforms a position by this matrix (generic).</para>
- </summary>
- <param name="point"></param>
- </member>
- <member name="M:UnityEngine.Matrix4x4.MultiplyPoint3x4(UnityEngine.Vector3)">
- <summary>
- <para>Transforms a position by this matrix (fast).</para>
- </summary>
- <param name="point"></param>
- </member>
- <member name="M:UnityEngine.Matrix4x4.MultiplyVector(UnityEngine.Vector3)">
- <summary>
- <para>Transforms a direction by this matrix.</para>
- </summary>
- <param name="vector"></param>
- </member>
- <member name="?:UnityEngine.Matrix4x4.op_Multiply(UnityEngine.Matrix4x4,UnityEngine.Matrix4x4)">
- <summary>
- <para>Multiplies two matrices.</para>
- </summary>
- <param name="lhs"></param>
- <param name="rhs"></param>
- </member>
- <member name="?:UnityEngine.Matrix4x4.op_Multiply(UnityEngine.Matrix4x4,UnityEngine.Vector4)">
- <summary>
- <para>Transforms a Vector4 by a matrix.</para>
- </summary>
- <param name="lhs"></param>
- <param name="vector"></param>
- </member>
- <member name="M:UnityEngine.Matrix4x4.Ortho(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)">
- <summary>
- <para>Creates an orthogonal projection matrix.</para>
- </summary>
- <param name="left"></param>
- <param name="right"></param>
- <param name="bottom"></param>
- <param name="top"></param>
- <param name="zNear"></param>
- <param name="zFar"></param>
- </member>
- <member name="M:UnityEngine.Matrix4x4.Perspective(System.Single,System.Single,System.Single,System.Single)">
- <summary>
- <para>Creates a perspective projection matrix.</para>
- </summary>
- <param name="fov"></param>
- <param name="aspect"></param>
- <param name="zNear"></param>
- <param name="zFar"></param>
- </member>
- <member name="M:UnityEngine.Matrix4x4.Rotate(UnityEngine.Quaternion)">
- <summary>
- <para>Creates a rotation matrix.</para>
- </summary>
- <param name="q"></param>
- </member>
- <member name="M:UnityEngine.Matrix4x4.Scale(UnityEngine.Vector3)">
- <summary>
- <para>Creates a scaling matrix.</para>
- </summary>
- <param name="vector"></param>
- </member>
- <member name="M:UnityEngine.Matrix4x4.SetColumn(System.Int32,UnityEngine.Vector4)">
- <summary>
- <para>Sets a column of the matrix.</para>
- </summary>
- <param name="index"></param>
- <param name="column"></param>
- </member>
- <member name="M:UnityEngine.Matrix4x4.SetRow(System.Int32,UnityEngine.Vector4)">
- <summary>
- <para>Sets a row of the matrix.</para>
- </summary>
- <param name="index"></param>
- <param name="row"></param>
- </member>
- <member name="M:UnityEngine.Matrix4x4.SetTRS(UnityEngine.Vector3,UnityEngine.Quaternion,UnityEngine.Vector3)">
- <summary>
- <para>Sets this matrix to a translation, rotation and scaling matrix.</para>
- </summary>
- <param name="pos"></param>
- <param name="q"></param>
- <param name="s"></param>
- </member>
- <member name="P:UnityEngine.Matrix4x4.this">
- <summary>
- <para>Access element at [row, column].</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Matrix4x4.this">
- <summary>
- <para>Access element at sequential index (0..15 inclusive).</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Matrix4x4.ToString">
- <summary>
- <para>Returns a nicely formatted string for this matrix.</para>
- </summary>
- <param name="format"></param>
- </member>
- <member name="M:UnityEngine.Matrix4x4.ToString(System.String)">
- <summary>
- <para>Returns a nicely formatted string for this matrix.</para>
- </summary>
- <param name="format"></param>
- </member>
- <member name="M:UnityEngine.Matrix4x4.TransformPlane(UnityEngine.Plane)">
- <summary>
- <para>Returns a plane that is transformed in space.</para>
- </summary>
- <param name="plane"></param>
- </member>
- <member name="M:UnityEngine.Matrix4x4.Translate(UnityEngine.Vector3)">
- <summary>
- <para>Creates a translation matrix.</para>
- </summary>
- <param name="vector"></param>
- </member>
- <member name="M:UnityEngine.Matrix4x4.TRS(UnityEngine.Vector3,UnityEngine.Quaternion,UnityEngine.Vector3)">
- <summary>
- <para>Creates a translation, rotation and scaling matrix.</para>
- </summary>
- <param name="pos"></param>
- <param name="q"></param>
- <param name="s"></param>
- </member>
- <member name="M:UnityEngine.Matrix4x4.ValidTRS">
- <summary>
- <para>Checks if this matrix is a valid transform matrix.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Mesh">
- <summary>
- <para>A class that allows creating or modifying meshes from scripts.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Mesh.bindposes">
- <summary>
- <para>The bind poses. The bind pose at each index refers to the bone with the same index.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Mesh.blendShapeCount">
- <summary>
- <para>Returns BlendShape count on this mesh.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Mesh.boneWeights">
- <summary>
- <para>The bone weights of each vertex.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Mesh.bounds">
- <summary>
- <para>The bounding volume of the mesh.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Mesh.colors">
- <summary>
- <para>Vertex colors of the Mesh.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Mesh.colors32">
- <summary>
- <para>Vertex colors of the Mesh.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Mesh.indexFormat">
- <summary>
- <para>Format of the mesh index buffer data.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Mesh.isReadable">
- <summary>
- <para>Returns state of the Read/Write Enabled checkbox when model was imported.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Mesh.normals">
- <summary>
- <para>The normals of the Mesh.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Mesh.subMeshCount">
- <summary>
- <para>The number of sub-meshes inside the Mesh object.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Mesh.tangents">
- <summary>
- <para>The tangents of the Mesh.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Mesh.triangles">
- <summary>
- <para>An array containing all triangles in the Mesh.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Mesh.uv">
- <summary>
- <para>The base texture coordinates of the Mesh.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Mesh.uv2">
- <summary>
- <para>The second texture coordinate set of the mesh, if present.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Mesh.uv3">
- <summary>
- <para>The third texture coordinate set of the mesh, if present.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Mesh.uv4">
- <summary>
- <para>The fourth texture coordinate set of the mesh, if present.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Mesh.uv5">
- <summary>
- <para>The fifth texture coordinate set of the mesh, if present.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Mesh.uv6">
- <summary>
- <para>The sixth texture coordinate set of the mesh, if present.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Mesh.uv7">
- <summary>
- <para>The seventh texture coordinate set of the mesh, if present.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Mesh.uv8">
- <summary>
- <para>The eighth texture coordinate set of the mesh, if present.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Mesh.vertexBufferCount">
- <summary>
- <para>Gets the number of vertex buffers present in the Mesh. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Mesh.vertexCount">
- <summary>
- <para>Returns the number of vertices in the Mesh (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Mesh.vertices">
- <summary>
- <para>Returns a copy of the vertex positions or assigns a new vertex positions array.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Mesh.AddBlendShapeFrame(System.String,System.Single,UnityEngine.Vector3[],UnityEngine.Vector3[],UnityEngine.Vector3[])">
- <summary>
- <para>Adds a new blend shape frame.</para>
- </summary>
- <param name="shapeName">Name of the blend shape to add a frame to.</param>
- <param name="frameWeight">Weight for the frame being added.</param>
- <param name="deltaVertices">Delta vertices for the frame being added.</param>
- <param name="deltaNormals">Delta normals for the frame being added.</param>
- <param name="deltaTangents">Delta tangents for the frame being added.</param>
- </member>
- <member name="M:UnityEngine.Mesh.Clear(System.Boolean)">
- <summary>
- <para>Clears all vertex data and all triangle indices.</para>
- </summary>
- <param name="keepVertexLayout"></param>
- </member>
- <member name="M:UnityEngine.Mesh.ClearBlendShapes">
- <summary>
- <para>Clears all blend shapes from Mesh.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Mesh.CombineMeshes(UnityEngine.CombineInstance[],System.Boolean,System.Boolean,System.Boolean)">
- <summary>
- <para>Combines several Meshes into this Mesh.</para>
- </summary>
- <param name="combine">Descriptions of the Meshes to combine.</param>
- <param name="mergeSubMeshes">Defines whether Meshes should be combined into a single sub-mesh.</param>
- <param name="useMatrices">Defines whether the transforms supplied in the CombineInstance array should be used or ignored.</param>
- <param name="hasLightmapData"></param>
- </member>
- <member name="M:UnityEngine.Mesh.#ctor">
- <summary>
- <para>Creates an empty Mesh.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Mesh.GetBaseVertex(System.Int32)">
- <summary>
- <para>Gets the base vertex index of the given sub-mesh.</para>
- </summary>
- <param name="submesh">The sub-mesh index. See subMeshCount.</param>
- <returns>
- <para>The offset applied to all vertex indices of this sub-mesh.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Mesh.GetBindposes(System.Collections.Generic.List`1&lt;UnityEngine.Matrix4x4&gt;)">
- <summary>
- <para>Gets the bind poses for this instance.</para>
- </summary>
- <param name="bindposes">A list of bind poses to populate.</param>
- </member>
- <member name="M:UnityEngine.Mesh.GetBlendShapeFrameCount(System.Int32)">
- <summary>
- <para>Returns the frame count for a blend shape.</para>
- </summary>
- <param name="shapeIndex">The shape index to get frame count from.</param>
- </member>
- <member name="M:UnityEngine.Mesh.GetBlendShapeFrameVertices(System.Int32,System.Int32,UnityEngine.Vector3[],UnityEngine.Vector3[],UnityEngine.Vector3[])">
- <summary>
- <para>Retreives deltaVertices, deltaNormals and deltaTangents of a blend shape frame.</para>
- </summary>
- <param name="shapeIndex">The shape index of the frame.</param>
- <param name="frameIndex">The frame index to get the weight from.</param>
- <param name="deltaVertices">Delta vertices output array for the frame being retreived.</param>
- <param name="deltaNormals">Delta normals output array for the frame being retreived.</param>
- <param name="deltaTangents">Delta tangents output array for the frame being retreived.</param>
- </member>
- <member name="M:UnityEngine.Mesh.GetBlendShapeFrameWeight(System.Int32,System.Int32)">
- <summary>
- <para>Returns the weight of a blend shape frame.</para>
- </summary>
- <param name="shapeIndex">The shape index of the frame.</param>
- <param name="frameIndex">The frame index to get the weight from.</param>
- </member>
- <member name="M:UnityEngine.Mesh.GetBlendShapeIndex(System.String)">
- <summary>
- <para>Returns index of BlendShape by given name.</para>
- </summary>
- <param name="blendShapeName"></param>
- </member>
- <member name="M:UnityEngine.Mesh.GetBlendShapeName(System.Int32)">
- <summary>
- <para>Returns name of BlendShape by given index.</para>
- </summary>
- <param name="shapeIndex"></param>
- </member>
- <member name="M:UnityEngine.Mesh.GetBoneWeights(System.Collections.Generic.List`1&lt;UnityEngine.BoneWeight&gt;)">
- <summary>
- <para>Gets the bone weights for this instance.</para>
- </summary>
- <param name="boneWeights">A list of bone weights to populate.</param>
- </member>
- <member name="M:UnityEngine.Mesh.GetColors(System.Collections.Generic.List`1&lt;UnityEngine.Color&gt;)">
- <summary>
- <para>Gets the vertex colors for this instance.</para>
- </summary>
- <param name="colors">A list of vertex colors to populate.</param>
- </member>
- <member name="M:UnityEngine.Mesh.GetColors(System.Collections.Generic.List`1&lt;UnityEngine.Color32&gt;)">
- <summary>
- <para>Gets the vertex colors for this instance.</para>
- </summary>
- <param name="colors">A list of vertex colors to populate.</param>
- </member>
- <member name="M:UnityEngine.Mesh.GetIndexCount(System.Int32)">
- <summary>
- <para>Gets the index count of the given sub-mesh.</para>
- </summary>
- <param name="submesh"></param>
- </member>
- <member name="M:UnityEngine.Mesh.GetIndexStart(System.Int32)">
- <summary>
- <para>Gets the starting index location within the Mesh's index buffer, for the given sub-mesh.</para>
- </summary>
- <param name="submesh"></param>
- </member>
- <member name="M:UnityEngine.Mesh.GetIndices(System.Collections.Generic.List`1&lt;System.Int32&gt;,System.Int32)">
- <summary>
- <para>Fetches the index list for the specified sub-mesh.</para>
- </summary>
- <param name="indices">A list of indices to populate.</param>
- <param name="submesh">The sub-mesh index. See subMeshCount.</param>
- <param name="applyBaseVertex">True (default value) will apply base vertex offset to returned indices.</param>
- </member>
- <member name="M:UnityEngine.Mesh.GetIndices(System.Int32)">
- <summary>
- <para>Fetches the index list for the specified sub-mesh.</para>
- </summary>
- <param name="indices">A list of indices to populate.</param>
- <param name="submesh">The sub-mesh index. See subMeshCount.</param>
- <param name="applyBaseVertex">True (default value) will apply base vertex offset to returned indices.</param>
- </member>
- <member name="M:UnityEngine.Mesh.GetNativeIndexBufferPtr">
- <summary>
- <para>Retrieves a native (underlying graphics API) pointer to the index buffer.</para>
- </summary>
- <returns>
- <para>Pointer to the underlying graphics API index buffer.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Mesh.GetNativeVertexBufferPtr(System.Int32)">
- <summary>
- <para>Retrieves a native (underlying graphics API) pointer to the vertex buffer.</para>
- </summary>
- <param name="bufferIndex">Which vertex buffer to get (some Meshes might have more than one). See vertexBufferCount.</param>
- <param name="index"></param>
- <returns>
- <para>Pointer to the underlying graphics API vertex buffer.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Mesh.GetNormals(System.Collections.Generic.List`1&lt;UnityEngine.Vector3&gt;)">
- <summary>
- <para>Gets the vertex normals for this instance.</para>
- </summary>
- <param name="normals">A list of vertex normals to populate.</param>
- </member>
- <member name="M:UnityEngine.Mesh.GetTangents(System.Collections.Generic.List`1&lt;UnityEngine.Vector4&gt;)">
- <summary>
- <para>Gets the tangents for this instance.</para>
- </summary>
- <param name="tangents">A list of tangents to populate.</param>
- </member>
- <member name="M:UnityEngine.Mesh.GetTopology(System.Int32)">
- <summary>
- <para>Gets the topology of a sub-mesh.</para>
- </summary>
- <param name="submesh"></param>
- </member>
- <member name="M:UnityEngine.Mesh.GetTriangles(System.Int32)">
- <summary>
- <para>Fetches the triangle list for the specified sub-mesh on this object.</para>
- </summary>
- <param name="triangles">A list of vertex indices to populate.</param>
- <param name="submesh">The sub-mesh index. See subMeshCount.</param>
- <param name="applyBaseVertex">True (default value) will apply base vertex offset to returned indices.</param>
- </member>
- <member name="M:UnityEngine.Mesh.GetTriangles(System.Int32,System.Boolean)">
- <summary>
- <para>Fetches the triangle list for the specified sub-mesh on this object.</para>
- </summary>
- <param name="triangles">A list of vertex indices to populate.</param>
- <param name="submesh">The sub-mesh index. See subMeshCount.</param>
- <param name="applyBaseVertex">True (default value) will apply base vertex offset to returned indices.</param>
- </member>
- <member name="M:UnityEngine.Mesh.GetTriangles(System.Collections.Generic.List`1&lt;System.Int32&gt;,System.Int32,System.Boolean)">
- <summary>
- <para>Fetches the triangle list for the specified sub-mesh on this object.</para>
- </summary>
- <param name="triangles">A list of vertex indices to populate.</param>
- <param name="submesh">The sub-mesh index. See subMeshCount.</param>
- <param name="applyBaseVertex">True (default value) will apply base vertex offset to returned indices.</param>
- </member>
- <member name="M:UnityEngine.Mesh.GetTriangles(System.Collections.Generic.List`1&lt;System.Int32&gt;,System.Int32)">
- <summary>
- <para>Fetches the triangle list for the specified sub-mesh on this object.</para>
- </summary>
- <param name="triangles">A list of vertex indices to populate.</param>
- <param name="submesh">The sub-mesh index. See subMeshCount.</param>
- <param name="applyBaseVertex">True (default value) will apply base vertex offset to returned indices.</param>
- </member>
- <member name="M:UnityEngine.Mesh.GetUVDistributionMetric(System.Int32)">
- <summary>
- <para>The UV distribution metric can be used to calculate the desired mipmap level based on the position of the camera.</para>
- </summary>
- <param name="uvSetIndex">UV set index to return the UV distibution metric for. 0 for first.</param>
- <returns>
- <para>Average of triangle area / uv area.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Mesh.GetUVs(System.Int32,System.Collections.Generic.List`1&lt;UnityEngine.Vector2&gt;)">
- <summary>
- <para>Gets the UVs of the Mesh.</para>
- </summary>
- <param name="channel">The UV channel. Indices start at 0, which corresponds to uv. Note that 1 corresponds to uv2.</param>
- <param name="uvs">A list of UVs to populate.</param>
- </member>
- <member name="M:UnityEngine.Mesh.GetUVs(System.Int32,System.Collections.Generic.List`1&lt;UnityEngine.Vector3&gt;)">
- <summary>
- <para>Gets the UVs of the Mesh.</para>
- </summary>
- <param name="channel">The UV channel. Indices start at 0, which corresponds to uv. Note that 1 corresponds to uv2.</param>
- <param name="uvs">A list of UVs to populate.</param>
- </member>
- <member name="M:UnityEngine.Mesh.GetUVs(System.Int32,System.Collections.Generic.List`1&lt;UnityEngine.Vector4&gt;)">
- <summary>
- <para>Gets the UVs of the Mesh.</para>
- </summary>
- <param name="channel">The UV channel. Indices start at 0, which corresponds to uv. Note that 1 corresponds to uv2.</param>
- <param name="uvs">A list of UVs to populate.</param>
- </member>
- <member name="M:UnityEngine.Mesh.GetVertices(System.Collections.Generic.List`1&lt;UnityEngine.Vector3&gt;)">
- <summary>
- <para>Gets the vertex positions for this instance.</para>
- </summary>
- <param name="vertices">A list of vertex positions to populate.</param>
- </member>
- <member name="M:UnityEngine.Mesh.MarkDynamic">
- <summary>
- <para>Optimize mesh for frequent updates.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Mesh.Optimize">
- <summary>
- <para>Optimizes the Mesh for display.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Mesh.RecalculateBounds">
- <summary>
- <para>Recalculate the bounding volume of the Mesh from the vertices.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Mesh.RecalculateNormals">
- <summary>
- <para>Recalculates the normals of the Mesh from the triangles and vertices.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Mesh.RecalculateTangents">
- <summary>
- <para>Recalculates the tangents of the Mesh from the normals and texture coordinates.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Mesh.SetColors(System.Collections.Generic.List`1&lt;UnityEngine.Color&gt;)">
- <summary>
- <para>Vertex colors of the Mesh.</para>
- </summary>
- <param name="inColors">Per-Vertex Colours.</param>
- </member>
- <member name="M:UnityEngine.Mesh.SetColors(System.Collections.Generic.List`1&lt;UnityEngine.Color32&gt;)">
- <summary>
- <para>Vertex colors of the Mesh.</para>
- </summary>
- <param name="inColors">Per-Vertex Colours.</param>
- </member>
- <member name="M:UnityEngine.Mesh.SetIndices(System.Int32[],UnityEngine.MeshTopology,System.Int32,System.Boolean)">
- <summary>
- <para>Sets the index buffer for the sub-mesh.</para>
- </summary>
- <param name="indices">The array of indices that define the Mesh.</param>
- <param name="topology">The topology of the Mesh, e.g: Triangles, Lines, Quads, Points, etc. See MeshTopology.</param>
- <param name="submesh">The sub-mesh to modify.</param>
- <param name="calculateBounds">Calculate the bounding box of the Mesh after setting the indices. This is done by default.
-Use false when you want to use the existing bounding box and reduce the CPU cost of setting the indices.</param>
- <param name="baseVertex">Optional vertex offset that is added to all triangle vertex indices.</param>
- </member>
- <member name="M:UnityEngine.Mesh.SetIndices(System.Int32[],UnityEngine.MeshTopology,System.Int32)">
- <summary>
- <para>Sets the index buffer for the sub-mesh.</para>
- </summary>
- <param name="indices">The array of indices that define the Mesh.</param>
- <param name="topology">The topology of the Mesh, e.g: Triangles, Lines, Quads, Points, etc. See MeshTopology.</param>
- <param name="submesh">The sub-mesh to modify.</param>
- <param name="calculateBounds">Calculate the bounding box of the Mesh after setting the indices. This is done by default.
-Use false when you want to use the existing bounding box and reduce the CPU cost of setting the indices.</param>
- <param name="baseVertex">Optional vertex offset that is added to all triangle vertex indices.</param>
- </member>
- <member name="M:UnityEngine.Mesh.SetIndices(System.Int32[],UnityEngine.MeshTopology,System.Int32,System.Boolean,System.Int32)">
- <summary>
- <para>Sets the index buffer for the sub-mesh.</para>
- </summary>
- <param name="indices">The array of indices that define the Mesh.</param>
- <param name="topology">The topology of the Mesh, e.g: Triangles, Lines, Quads, Points, etc. See MeshTopology.</param>
- <param name="submesh">The sub-mesh to modify.</param>
- <param name="calculateBounds">Calculate the bounding box of the Mesh after setting the indices. This is done by default.
-Use false when you want to use the existing bounding box and reduce the CPU cost of setting the indices.</param>
- <param name="baseVertex">Optional vertex offset that is added to all triangle vertex indices.</param>
- </member>
- <member name="M:UnityEngine.Mesh.SetNormals(System.Collections.Generic.List`1&lt;UnityEngine.Vector3&gt;)">
- <summary>
- <para>Set the normals of the Mesh.</para>
- </summary>
- <param name="inNormals">Per-vertex normals.</param>
- </member>
- <member name="M:UnityEngine.Mesh.SetTangents(System.Collections.Generic.List`1&lt;UnityEngine.Vector4&gt;)">
- <summary>
- <para>Set the tangents of the Mesh.</para>
- </summary>
- <param name="inTangents">Per-vertex tangents.</param>
- </member>
- <member name="M:UnityEngine.Mesh.SetTriangles(System.Int32[],System.Int32,System.Boolean,System.Int32)">
- <summary>
- <para>Sets the triangle list for the sub-mesh.</para>
- </summary>
- <param name="triangles">The list of indices that define the triangles.</param>
- <param name="submesh">The sub-mesh to modify.</param>
- <param name="calculateBounds">Calculate the bounding box of the Mesh after setting the triangles. This is done by default.
-Use false when you want to use the existing bounding box and reduce the CPU cost of setting the triangles.</param>
- <param name="baseVertex">Optional vertex offset that is added to all triangle vertex indices.</param>
- </member>
- <member name="M:UnityEngine.Mesh.SetTriangles(System.Int32[],System.Int32)">
- <summary>
- <para>Sets the triangle list for the sub-mesh.</para>
- </summary>
- <param name="triangles">The list of indices that define the triangles.</param>
- <param name="submesh">The sub-mesh to modify.</param>
- <param name="calculateBounds">Calculate the bounding box of the Mesh after setting the triangles. This is done by default.
-Use false when you want to use the existing bounding box and reduce the CPU cost of setting the triangles.</param>
- <param name="baseVertex">Optional vertex offset that is added to all triangle vertex indices.</param>
- </member>
- <member name="M:UnityEngine.Mesh.SetTriangles(System.Collections.Generic.List`1&lt;System.Int32&gt;,System.Int32,System.Boolean,System.Int32)">
- <summary>
- <para>Sets the triangle list for the sub-mesh.</para>
- </summary>
- <param name="triangles">The list of indices that define the triangles.</param>
- <param name="submesh">The sub-mesh to modify.</param>
- <param name="calculateBounds">Calculate the bounding box of the Mesh after setting the triangles. This is done by default.
-Use false when you want to use the existing bounding box and reduce the CPU cost of setting the triangles.</param>
- <param name="baseVertex">Optional vertex offset that is added to all triangle vertex indices.</param>
- </member>
- <member name="M:UnityEngine.Mesh.SetTriangles(System.Collections.Generic.List`1&lt;System.Int32&gt;,System.Int32)">
- <summary>
- <para>Sets the triangle list for the sub-mesh.</para>
- </summary>
- <param name="triangles">The list of indices that define the triangles.</param>
- <param name="submesh">The sub-mesh to modify.</param>
- <param name="calculateBounds">Calculate the bounding box of the Mesh after setting the triangles. This is done by default.
-Use false when you want to use the existing bounding box and reduce the CPU cost of setting the triangles.</param>
- <param name="baseVertex">Optional vertex offset that is added to all triangle vertex indices.</param>
- </member>
- <member name="M:UnityEngine.Mesh.SetUVs(System.Int32,System.Collections.Generic.List`1&lt;UnityEngine.Vector2&gt;)">
- <summary>
- <para>Sets the UVs of the Mesh.</para>
- </summary>
- <param name="channel">The UV channel. Indices start at 0, which corresponds to uv. Note that 1 corresponds to uv2.</param>
- <param name="uvs">List of UVs to set for the given index.</param>
- </member>
- <member name="M:UnityEngine.Mesh.SetUVs(System.Int32,System.Collections.Generic.List`1&lt;UnityEngine.Vector3&gt;)">
- <summary>
- <para>Sets the UVs of the Mesh.</para>
- </summary>
- <param name="channel">The UV channel. Indices start at 0, which corresponds to uv. Note that 1 corresponds to uv2.</param>
- <param name="uvs">List of UVs to set for the given index.</param>
- </member>
- <member name="M:UnityEngine.Mesh.SetUVs(System.Int32,System.Collections.Generic.List`1&lt;UnityEngine.Vector4&gt;)">
- <summary>
- <para>Sets the UVs of the Mesh.</para>
- </summary>
- <param name="channel">The UV channel. Indices start at 0, which corresponds to uv. Note that 1 corresponds to uv2.</param>
- <param name="uvs">List of UVs to set for the given index.</param>
- </member>
- <member name="M:UnityEngine.Mesh.SetVertices(System.Collections.Generic.List`1&lt;UnityEngine.Vector3&gt;)">
- <summary>
- <para>Assigns a new vertex positions array.</para>
- </summary>
- <param name="inVertices">Per-vertex position.</param>
- </member>
- <member name="M:UnityEngine.Mesh.UploadMeshData(System.Boolean)">
- <summary>
- <para>Upload previously done Mesh modifications to the graphics API.</para>
- </summary>
- <param name="markNoLongerReadable">Frees up system memory copy of mesh data when set to true.</param>
- </member>
- <member name="T:UnityEngine.MeshFilter">
- <summary>
- <para>A class to access the Mesh of the.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.MeshFilter.mesh">
- <summary>
- <para>Returns the instantiated Mesh assigned to the mesh filter.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.MeshFilter.sharedMesh">
- <summary>
- <para>Returns the shared mesh of the mesh filter.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.MeshRenderer">
- <summary>
- <para>Renders meshes inserted by the MeshFilter or TextMesh.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.MeshRenderer.additionalVertexStreams">
- <summary>
- <para>Vertex attributes in this mesh will override or add attributes of the primary mesh in the MeshRenderer.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.MeshRenderer.subMeshStartIndex">
- <summary>
- <para>Index of the first sub-mesh to use from the Mesh associated with this MeshRenderer (Read Only).</para>
- </summary>
- </member>
- <member name="T:UnityEngine.MeshTopology">
- <summary>
- <para>Topology of Mesh faces.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.MeshTopology.Lines">
- <summary>
- <para>Mesh is made from lines.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.MeshTopology.LineStrip">
- <summary>
- <para>Mesh is a line strip.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.MeshTopology.Points">
- <summary>
- <para>Mesh is made from points.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.MeshTopology.Quads">
- <summary>
- <para>Mesh is made from quads.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.MeshTopology.Triangles">
- <summary>
- <para>Mesh is made from triangles.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.MixedLightingMode">
- <summary>
- <para>Enum describing what lighting mode to be used with Mixed lights.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.MixedLightingMode.IndirectOnly">
- <summary>
- <para>Mixed lights provide realtime direct lighting while indirect light is baked into lightmaps and light probes.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.MixedLightingMode.Shadowmask">
- <summary>
- <para>Mixed lights provide realtime direct lighting. Indirect lighting gets baked into lightmaps and light probes. Shadowmasks and light probe occlusion get generated for baked shadows. The Shadowmask Mode used at run time can be set in the Quality Settings panel.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.MixedLightingMode.Subtractive">
- <summary>
- <para>Mixed lights provide baked direct and indirect lighting for static objects. Dynamic objects receive realtime direct lighting and cast shadows on static objects using the main directional light in the scene.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.MonoBehaviour">
- <summary>
- <para>MonoBehaviour is the base class from which every Unity script derives.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.MonoBehaviour.print(System.Object)">
- <summary>
- <para>Logs message to the Unity Console (identical to Debug.Log).</para>
- </summary>
- <param name="message"></param>
- </member>
- <member name="P:UnityEngine.MonoBehaviour.useGUILayout">
- <summary>
- <para>Disabling this lets you skip the GUI layout phase.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.MonoBehaviour.CancelInvoke">
- <summary>
- <para>Cancels all Invoke calls on this MonoBehaviour.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.MonoBehaviour.CancelInvoke(System.String)">
- <summary>
- <para>Cancels all Invoke calls with name methodName on this behaviour.</para>
- </summary>
- <param name="methodName"></param>
- </member>
- <member name="M:UnityEngine.MonoBehaviour.Invoke(System.String,System.Single)">
- <summary>
- <para>Invokes the method methodName in time seconds.</para>
- </summary>
- <param name="methodName"></param>
- <param name="time"></param>
- </member>
- <member name="M:UnityEngine.MonoBehaviour.InvokeRepeating(System.String,System.Single,System.Single)">
- <summary>
- <para>Invokes the method methodName in time seconds, then repeatedly every repeatRate seconds.</para>
- </summary>
- <param name="methodName"></param>
- <param name="time"></param>
- <param name="repeatRate"></param>
- </member>
- <member name="M:UnityEngine.MonoBehaviour.IsInvoking(System.String)">
- <summary>
- <para>Is any invoke on methodName pending?</para>
- </summary>
- <param name="methodName"></param>
- </member>
- <member name="M:UnityEngine.MonoBehaviour.IsInvoking">
- <summary>
- <para>Is any invoke pending on this MonoBehaviour?</para>
- </summary>
- </member>
- <member name="M:UnityEngine.MonoBehaviour.StartCoroutine(System.Collections.IEnumerator)">
- <summary>
- <para>Starts a coroutine.</para>
- </summary>
- <param name="routine"></param>
- </member>
- <member name="M:UnityEngine.MonoBehaviour.StartCoroutine(System.String,System.Object)">
- <summary>
- <para>Starts a coroutine named methodName.</para>
- </summary>
- <param name="methodName"></param>
- <param name="value"></param>
- </member>
- <member name="M:UnityEngine.MonoBehaviour.StartCoroutine(System.String)">
- <summary>
- <para>Starts a coroutine named methodName.</para>
- </summary>
- <param name="methodName"></param>
- <param name="value"></param>
- </member>
- <member name="M:UnityEngine.MonoBehaviour.StartCoroutine">
- <summary>
- <para>Starts a Coroutine named coroutine.</para>
- </summary>
- <param name="coroutine">Name of the created Coroutine.</param>
- </member>
- <member name="M:UnityEngine.MonoBehaviour.StopAllCoroutines">
- <summary>
- <para>Stops all coroutines running on this behaviour.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.MonoBehaviour.StopCoroutine(System.String)">
- <summary>
- <para>Stops the first coroutine named methodName, or the coroutine stored in routine running on this behaviour.</para>
- </summary>
- <param name="methodName">Name of coroutine.</param>
- <param name="routine">Name of the function in code, including coroutines.</param>
- </member>
- <member name="M:UnityEngine.MonoBehaviour.StopCoroutine(System.Collections.IEnumerator)">
- <summary>
- <para>Stops the first coroutine named methodName, or the coroutine stored in routine running on this behaviour.</para>
- </summary>
- <param name="methodName">Name of coroutine.</param>
- <param name="routine">Name of the function in code, including coroutines.</param>
- </member>
- <member name="M:UnityEngine.MonoBehaviour.StopCoroutine(UnityEngine.Coroutine)">
- <summary>
- <para>Stops the first coroutine named methodName, or the coroutine stored in routine running on this behaviour.</para>
- </summary>
- <param name="methodName">Name of coroutine.</param>
- <param name="routine">Name of the function in code, including coroutines.</param>
- </member>
- <member name="T:UnityEngine.MotionVectorGenerationMode">
- <summary>
- <para>The type of motion vectors that should be generated.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.MotionVectorGenerationMode.Camera">
- <summary>
- <para>Use only camera movement to track motion.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.MotionVectorGenerationMode.ForceNoMotion">
- <summary>
- <para>Do not track motion. Motion vectors will be 0.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.MotionVectorGenerationMode.Object">
- <summary>
- <para>Use a specific pass (if required) to track motion.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.MultilineAttribute">
- <summary>
- <para>Attribute to make a string be edited with a multi-line textfield.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.MultilineAttribute.#ctor">
- <summary>
- <para>Attribute used to make a string value be shown in a multiline textarea.</para>
- </summary>
- <param name="lines">How many lines of text to make room for. Default is 3.</param>
- </member>
- <member name="M:UnityEngine.MultilineAttribute.#ctor(System.Int32)">
- <summary>
- <para>Attribute used to make a string value be shown in a multiline textarea.</para>
- </summary>
- <param name="lines">How many lines of text to make room for. Default is 3.</param>
- </member>
- <member name="T:UnityEngine.Networking.PlayerConnection.MessageEventArgs">
- <summary>
- <para>Arguments passed to Action callbacks registered in PlayerConnection.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Networking.PlayerConnection.MessageEventArgs.data">
- <summary>
- <para>Data that is received.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Networking.PlayerConnection.MessageEventArgs.playerId">
- <summary>
- <para>The Player ID that the data is received from.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Networking.PlayerConnection.PlayerConnection">
- <summary>
- <para>Used for handling the network connection from the Player to the Editor.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.PlayerConnection.PlayerConnection.instance">
- <summary>
- <para>Singleton instance.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.PlayerConnection.PlayerConnection.isConnected">
- <summary>
- <para>Returns true when Editor is connected to the player.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Networking.PlayerConnection.PlayerConnection.BlockUntilRecvMsg(System.Guid,System.Int32)">
- <summary>
- <para>Blocks the calling thread until either a message with the specified messageId is received or the specified time-out elapses.</para>
- </summary>
- <param name="messageId">The type ID of the message that is sent to the Editor.</param>
- <param name="timeout">The time-out specified in milliseconds.</param>
- <returns>
- <para>Returns true when the message is received and false if the call timed out.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.PlayerConnection.PlayerConnection.DisconnectAll">
- <summary>
- <para>This disconnects all of the active connections.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Networking.PlayerConnection.PlayerConnection.Register(System.Guid,UnityEngine.Events.UnityAction`1&lt;UnityEngine.Networking.PlayerConnection.MessageEventArgs&gt;)">
- <summary>
- <para>Registers a listener for a specific message ID, with an Action to be executed whenever that message is received by the Editor.
-This ID must be the same as for messages sent from EditorConnection.Send().</para>
- </summary>
- <param name="messageId">The message ID that should cause the Action callback to be executed when received.</param>
- <param name="callback">Action that is executed when a message with ID messageId is received by the Editor.
-The callback includes the data that is sent from the Player, and the Player ID.
-The Player ID is always 1, because only one Editor can be connected.</param>
- </member>
- <member name="M:UnityEngine.Networking.PlayerConnection.PlayerConnection.RegisterConnection(UnityEngine.Events.UnityAction`1&lt;System.Int32&gt;)">
- <summary>
- <para>Registers a callback that is invoked when the Editor connects to the Player.</para>
- </summary>
- <param name="callback">Action called when Player connects, with the Player ID of the Editor.</param>
- </member>
- <member name="M:UnityEngine.Networking.PlayerConnection.PlayerConnection.RegisterDisconnection(UnityEngine.Events.UnityAction`1&lt;System.Int32&gt;)">
- <summary>
- <para>Registers a callback to be called when Editor disconnects.</para>
- </summary>
- <param name="callback">The Action that is called when a Player disconnects.</param>
- </member>
- <member name="M:UnityEngine.Networking.PlayerConnection.PlayerConnection.Send(System.Guid,System.Byte[])">
- <summary>
- <para>Sends data to the Editor.</para>
- </summary>
- <param name="messageId">The type ID of the message that is sent to the Editor.</param>
- <param name="data"></param>
- </member>
- <member name="M:UnityEngine.Networking.PlayerConnection.PlayerConnection.Unregister(System.Guid,UnityEngine.Events.UnityAction`1&lt;UnityEngine.Networking.PlayerConnection.MessageEventArgs&gt;)">
- <summary>
- <para>Deregisters a message listener.</para>
- </summary>
- <param name="messageId">Message ID associated with the callback that you wish to deregister.</param>
- <param name="callback">The associated callback function you wish to deregister.</param>
- </member>
- <member name="T:UnityEngine.NetworkReachability">
- <summary>
- <para>Describes network reachability options.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.NetworkReachability.NotReachable">
- <summary>
- <para>Network is not reachable.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.NetworkReachability.ReachableViaCarrierDataNetwork">
- <summary>
- <para>Network is reachable via carrier data network.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.NetworkReachability.ReachableViaLocalAreaNetwork">
- <summary>
- <para>Network is reachable via WiFi or cable.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.NPOTSupport">
- <summary>
- <para>NPOT Texture2D|textures support.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.NPOTSupport.Full">
- <summary>
- <para>Full NPOT support.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.NPOTSupport.None">
- <summary>
- <para>NPOT textures are not supported. Will be upscaled/padded at loading time.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.NPOTSupport.Restricted">
- <summary>
- <para>Limited NPOT support: no mip-maps and clamp TextureWrapMode|wrap mode will be forced.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Object">
- <summary>
- <para>Base class for all objects Unity can reference.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Object.hideFlags">
- <summary>
- <para>Should the object be hidden, saved with the scene or modifiable by the user?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Object.name">
- <summary>
- <para>The name of the object.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Object.Destroy(UnityEngine.Object)">
- <summary>
- <para>Removes a gameobject, component or asset.</para>
- </summary>
- <param name="obj">The object to destroy.</param>
- <param name="t">The optional amount of time to delay before destroying the object.</param>
- </member>
- <member name="M:UnityEngine.Object.Destroy(UnityEngine.Object,System.Single)">
- <summary>
- <para>Removes a gameobject, component or asset.</para>
- </summary>
- <param name="obj">The object to destroy.</param>
- <param name="t">The optional amount of time to delay before destroying the object.</param>
- </member>
- <member name="M:UnityEngine.Object.DestroyImmediate(UnityEngine.Object)">
- <summary>
- <para>Destroys the object obj immediately. You are strongly recommended to use Destroy instead.</para>
- </summary>
- <param name="obj">Object to be destroyed.</param>
- <param name="allowDestroyingAssets">Set to true to allow assets to be destroyed.</param>
- </member>
- <member name="M:UnityEngine.Object.DestroyImmediate(UnityEngine.Object,System.Boolean)">
- <summary>
- <para>Destroys the object obj immediately. You are strongly recommended to use Destroy instead.</para>
- </summary>
- <param name="obj">Object to be destroyed.</param>
- <param name="allowDestroyingAssets">Set to true to allow assets to be destroyed.</param>
- </member>
- <member name="M:UnityEngine.Object.DontDestroyOnLoad(UnityEngine.Object)">
- <summary>
- <para>Makes the object target not be destroyed automatically when loading a new scene.</para>
- </summary>
- <param name="target">The object which is not destroyed on scene change.</param>
- </member>
- <member name="M:UnityEngine.Object.FindObjectOfType(System.Type)">
- <summary>
- <para>Returns the first active loaded object of Type type.</para>
- </summary>
- <param name="type">The type of object to find.</param>
- <returns>
- <para>This returns the Object that matches the specified type. It returns null if no Object matches the type.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Object.FindObjectsOfType(System.Type)">
- <summary>
- <para>Returns a list of all active loaded objects of Type type.</para>
- </summary>
- <param name="type">The type of object to find.</param>
- <returns>
- <para>The array of objects found matching the type specified.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Object.FindObjectsOfTypeAll(System.Type)">
- <summary>
- <para>Returns a list of all active and inactive loaded objects of Type type.</para>
- </summary>
- <param name="type">The type of object to find.</param>
- <returns>
- <para>The array of objects found matching the type specified.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Object.FindObjectsOfTypeIncludingAssets(System.Type)">
- <summary>
- <para>Returns a list of all active and inactive loaded objects of Type type, including assets.</para>
- </summary>
- <param name="type">The type of object or asset to find.</param>
- <returns>
- <para>The array of objects and assets found matching the type specified.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Object.GetInstanceID">
- <summary>
- <para>Returns the instance id of the object.</para>
- </summary>
- </member>
- <member name="?:UnityEngine.Object.implop_bool(Object)(UnityEngine.Object)">
- <summary>
- <para>Does the object exist?</para>
- </summary>
- <param name="exists"></param>
- </member>
- <member name="M:UnityEngine.Object.Instantiate(UnityEngine.Object)">
- <summary>
- <para>Clones the object original and returns the clone.</para>
- </summary>
- <param name="original">An existing object that you want to make a copy of.</param>
- <param name="position">Position for the new object.</param>
- <param name="rotation">Orientation of the new object.</param>
- <param name="parent">Parent that will be assigned to the new object.</param>
- <param name="instantiateInWorldSpace">Pass true when assigning a parent Object to maintain the world position of the Object, instead of setting its position relative to the new parent. Pass false to set the Object's position relative to its new parent.</param>
- <returns>
- <para>The instantiated clone.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Object.Instantiate(UnityEngine.Object,UnityEngine.Transform)">
- <summary>
- <para>Clones the object original and returns the clone.</para>
- </summary>
- <param name="original">An existing object that you want to make a copy of.</param>
- <param name="position">Position for the new object.</param>
- <param name="rotation">Orientation of the new object.</param>
- <param name="parent">Parent that will be assigned to the new object.</param>
- <param name="instantiateInWorldSpace">Pass true when assigning a parent Object to maintain the world position of the Object, instead of setting its position relative to the new parent. Pass false to set the Object's position relative to its new parent.</param>
- <returns>
- <para>The instantiated clone.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Object.Instantiate(UnityEngine.Object,UnityEngine.Transform,System.Boolean)">
- <summary>
- <para>Clones the object original and returns the clone.</para>
- </summary>
- <param name="original">An existing object that you want to make a copy of.</param>
- <param name="position">Position for the new object.</param>
- <param name="rotation">Orientation of the new object.</param>
- <param name="parent">Parent that will be assigned to the new object.</param>
- <param name="instantiateInWorldSpace">Pass true when assigning a parent Object to maintain the world position of the Object, instead of setting its position relative to the new parent. Pass false to set the Object's position relative to its new parent.</param>
- <returns>
- <para>The instantiated clone.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Object.Instantiate(UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion)">
- <summary>
- <para>Clones the object original and returns the clone.</para>
- </summary>
- <param name="original">An existing object that you want to make a copy of.</param>
- <param name="position">Position for the new object.</param>
- <param name="rotation">Orientation of the new object.</param>
- <param name="parent">Parent that will be assigned to the new object.</param>
- <param name="instantiateInWorldSpace">Pass true when assigning a parent Object to maintain the world position of the Object, instead of setting its position relative to the new parent. Pass false to set the Object's position relative to its new parent.</param>
- <returns>
- <para>The instantiated clone.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Object.Instantiate(UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion,UnityEngine.Transform)">
- <summary>
- <para>Clones the object original and returns the clone.</para>
- </summary>
- <param name="original">An existing object that you want to make a copy of.</param>
- <param name="position">Position for the new object.</param>
- <param name="rotation">Orientation of the new object.</param>
- <param name="parent">Parent that will be assigned to the new object.</param>
- <param name="instantiateInWorldSpace">Pass true when assigning a parent Object to maintain the world position of the Object, instead of setting its position relative to the new parent. Pass false to set the Object's position relative to its new parent.</param>
- <returns>
- <para>The instantiated clone.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Object.Instantiate(T)">
- <summary>
- <para>You can also use Generics to instantiate objects. See the page for more details.</para>
- </summary>
- <param name="original">Object of type T that you want to make a clone of.</param>
- <param name="parent"></param>
- <param name="worldPositionStays"></param>
- <param name="position"></param>
- <param name="rotation"></param>
- <returns>
- <para>Object of type T.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Object.Instantiate(T,UnityEngine.Transform)">
- <summary>
- <para>You can also use Generics to instantiate objects. See the page for more details.</para>
- </summary>
- <param name="original">Object of type T that you want to make a clone of.</param>
- <param name="parent"></param>
- <param name="worldPositionStays"></param>
- <param name="position"></param>
- <param name="rotation"></param>
- <returns>
- <para>Object of type T.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Object.Instantiate(T,UnityEngine.Transform,System.Boolean)">
- <summary>
- <para>You can also use Generics to instantiate objects. See the page for more details.</para>
- </summary>
- <param name="original">Object of type T that you want to make a clone of.</param>
- <param name="parent"></param>
- <param name="worldPositionStays"></param>
- <param name="position"></param>
- <param name="rotation"></param>
- <returns>
- <para>Object of type T.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Object.Instantiate(T,UnityEngine.Vector3,UnityEngine.Quaternion)">
- <summary>
- <para>You can also use Generics to instantiate objects. See the page for more details.</para>
- </summary>
- <param name="original">Object of type T that you want to make a clone of.</param>
- <param name="parent"></param>
- <param name="worldPositionStays"></param>
- <param name="position"></param>
- <param name="rotation"></param>
- <returns>
- <para>Object of type T.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Object.Instantiate(T,UnityEngine.Vector3,UnityEngine.Quaternion,UnityEngine.Transform)">
- <summary>
- <para>You can also use Generics to instantiate objects. See the page for more details.</para>
- </summary>
- <param name="original">Object of type T that you want to make a clone of.</param>
- <param name="parent"></param>
- <param name="worldPositionStays"></param>
- <param name="position"></param>
- <param name="rotation"></param>
- <returns>
- <para>Object of type T.</para>
- </returns>
- </member>
- <member name="?:UnityEngine.Object.op_Equal(UnityEngine.Object,UnityEngine.Object)">
- <summary>
- <para>Compares two object references to see if they refer to the same object.</para>
- </summary>
- <param name="x">The first Object.</param>
- <param name="y">The Object to compare against the first.</param>
- </member>
- <member name="?:UnityEngine.Object.op_NotEqual(UnityEngine.Object,UnityEngine.Object)">
- <summary>
- <para>Compares if two objects refer to a different object.</para>
- </summary>
- <param name="x"></param>
- <param name="y"></param>
- </member>
- <member name="M:UnityEngine.Object.ToString">
- <summary>
- <para>Returns the name of the GameObject.</para>
- </summary>
- <returns>
- <para>The name returned by ToString.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.OcclusionArea">
- <summary>
- <para>OcclusionArea is an area in which occlusion culling is performed.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.OcclusionArea.center">
- <summary>
- <para>Center of the occlusion area relative to the transform.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.OcclusionArea.size">
- <summary>
- <para>Size that the occlusion area will have.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.OcclusionPortal">
- <summary>
- <para>The portal for dynamically changing occlusion at runtime.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.OcclusionPortal.open">
- <summary>
- <para>Gets / sets the portal's open state.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.OperatingSystemFamily">
- <summary>
- <para>Enumeration for SystemInfo.operatingSystemFamily.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.OperatingSystemFamily.Linux">
- <summary>
- <para>Linux operating system family.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.OperatingSystemFamily.MacOSX">
- <summary>
- <para>macOS operating system family.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.OperatingSystemFamily.Other">
- <summary>
- <para>Returned for operating systems that do not fall into any other category.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.OperatingSystemFamily.Windows">
- <summary>
- <para>Windows operating system family.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Ping">
- <summary>
- <para>Ping any given IP address (given in dot notation).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Ping.ip">
- <summary>
- <para>The IP target of the ping.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Ping.isDone">
- <summary>
- <para>Has the ping function completed?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Ping.time">
- <summary>
- <para>This property contains the ping time result after isDone returns true.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Ping.#ctor(System.String)">
- <summary>
- <para>Perform a ping to the supplied target IP address.</para>
- </summary>
- <param name="address"></param>
- </member>
- <member name="T:UnityEngine.Plane">
- <summary>
- <para>Representation of a plane in 3D space.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Plane.distance">
- <summary>
- <para>Distance from the origin to the plane.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Plane.flipped">
- <summary>
- <para>Returns a copy of the plane that faces in the opposite direction.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Plane.normal">
- <summary>
- <para>Normal vector of the plane.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Plane.ClosestPointOnPlane(UnityEngine.Vector3)">
- <summary>
- <para>For a given point returns the closest point on the plane.</para>
- </summary>
- <param name="point">The point to project onto the plane.</param>
- <returns>
- <para>A point on the plane that is closest to point.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Plane.#ctor(UnityEngine.Vector3,UnityEngine.Vector3)">
- <summary>
- <para>Creates a plane.</para>
- </summary>
- <param name="inNormal"></param>
- <param name="inPoint"></param>
- </member>
- <member name="M:UnityEngine.Plane.#ctor(UnityEngine.Vector3,System.Single)">
- <summary>
- <para>Creates a plane.</para>
- </summary>
- <param name="inNormal"></param>
- <param name="d"></param>
- </member>
- <member name="M:UnityEngine.Plane.#ctor(UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.Vector3)">
- <summary>
- <para>Creates a plane.</para>
- </summary>
- <param name="a"></param>
- <param name="b"></param>
- <param name="c"></param>
- </member>
- <member name="M:UnityEngine.Plane.Flip">
- <summary>
- <para>Makes the plane face in the opposite direction.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Plane.GetDistanceToPoint(UnityEngine.Vector3)">
- <summary>
- <para>Returns a signed distance from plane to point.</para>
- </summary>
- <param name="point"></param>
- </member>
- <member name="M:UnityEngine.Plane.GetSide(UnityEngine.Vector3)">
- <summary>
- <para>Is a point on the positive side of the plane?</para>
- </summary>
- <param name="point"></param>
- </member>
- <member name="M:UnityEngine.Plane.Raycast(UnityEngine.Ray,System.Single&amp;)">
- <summary>
- <para>Intersects a ray with the plane.</para>
- </summary>
- <param name="ray"></param>
- <param name="enter"></param>
- </member>
- <member name="M:UnityEngine.Plane.SameSide(UnityEngine.Vector3,UnityEngine.Vector3)">
- <summary>
- <para>Are two points on the same side of the plane?</para>
- </summary>
- <param name="inPt0"></param>
- <param name="inPt1"></param>
- </member>
- <member name="M:UnityEngine.Plane.Set3Points(UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.Vector3)">
- <summary>
- <para>Sets a plane using three points that lie within it. The points go around clockwise as you look down on the top surface of the plane.</para>
- </summary>
- <param name="a">First point in clockwise order.</param>
- <param name="b">Second point in clockwise order.</param>
- <param name="c">Third point in clockwise order.</param>
- </member>
- <member name="M:UnityEngine.Plane.SetNormalAndPosition(UnityEngine.Vector3,UnityEngine.Vector3)">
- <summary>
- <para>Sets a plane using a point that lies within it along with a normal to orient it.</para>
- </summary>
- <param name="inNormal">The plane's normal vector.</param>
- <param name="inPoint">A point that lies on the plane.</param>
- </member>
- <member name="M:UnityEngine.Plane.Translate(UnityEngine.Plane,UnityEngine.Vector3)">
- <summary>
- <para>Returns a copy of the given plane that is moved in space by the given translation.</para>
- </summary>
- <param name="plane">The plane to move in space.</param>
- <param name="translation">The offset in space to move the plane with.</param>
- <returns>
- <para>The translated plane.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Plane.Translate(UnityEngine.Vector3)">
- <summary>
- <para>Moves the plane in space by the translation vector.</para>
- </summary>
- <param name="translation">The offset in space to move the plane with.</param>
- </member>
- <member name="T:UnityEngine.Playables.DataStreamType">
- <summary>
- <para>Describes the type of information that flows in and out of a Playable. This also specifies that this Playable is connectable to others of the same type.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Playables.DataStreamType.Animation">
- <summary>
- <para>Describes that the information flowing in and out of the Playable is of Animation type.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Playables.DataStreamType.Audio">
- <summary>
- <para>Describes that the information flowing in and out of the Playable is of Audio type.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Playables.DataStreamType.None">
- <summary>
- <para>Describes that the Playable does not have any particular type. This is use for Playables that execute script code, or that create their own playable graphs, such as the Sequence.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Playables.DataStreamType.Texture">
- <summary>
- <para>Describes that the information flowing in and out of the Playable is of type Texture.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Playables.DirectorUpdateMode">
- <summary>
- <para>Defines what time source is used to update a Director graph.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Playables.DirectorUpdateMode.DSPClock">
- <summary>
- <para>Update is based on DSP (Digital Sound Processing) clock. Use this for graphs that need to be synchronized with Audio.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Playables.DirectorUpdateMode.GameTime">
- <summary>
- <para>Update is based on Time.time. Use this for graphs that need to be synchronized on gameplay, and that need to be paused when the game is paused.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Playables.DirectorUpdateMode.Manual">
- <summary>
- <para>Update mode is manual. You need to manually call PlayerController.Tick with your own deltaTime. This can be useful for graphs that can be completely disconnected from the rest of the the game. Example: Localized Bullet time.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Playables.DirectorUpdateMode.UnscaledGameTime">
- <summary>
- <para>Update is based on Time.unscaledTime. Use this for graphs that need to be updated even when gameplay is paused. Example: Menus transitions need to be updated even when the game is paused.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Playables.FrameData">
- <summary>
- <para>This structure contains the frame information a Playable receives in Playable.PrepareFrame.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Playables.FrameData.deltaTime">
- <summary>
- <para>Time difference between this frame and the preceding frame.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Playables.FrameData.effectiveParentDelay">
- <summary>
- <para>The accumulated delay of the parent Playable during the PlayableGraph traversal.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Playables.FrameData.effectiveParentSpeed">
- <summary>
- <para>The accumulated speed of the parent Playable during the PlayableGraph traversal.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Playables.FrameData.effectiveSpeed">
- <summary>
- <para>The accumulated speed of the Playable during the PlayableGraph traversal.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Playables.FrameData.effectiveWeight">
- <summary>
- <para>The accumulated weight of the Playable during the PlayableGraph traversal.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Playables.FrameData.evaluationType">
- <summary>
- <para>Indicates the type of evaluation that caused PlayableGraph.PrepareFrame to be called.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Playables.FrameData.frameId">
- <summary>
- <para>The current frame identifier.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Playables.FrameData.seekOccurred">
- <summary>
- <para>Indicates that the local time was explicitly set.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Playables.FrameData.timeHeld">
- <summary>
- <para>Indicates the local time did not advance because it has reached the duration and the extrapolation mode is set to Hold.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Playables.FrameData.timeLooped">
- <summary>
- <para>Indicates the local time wrapped because it has reached the duration and the extrapolation mode is set to Loop.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Playables.FrameData.weight">
- <summary>
- <para>The weight of the current Playable.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Playables.FrameData.EvaluationType">
- <summary>
- <para>Describes the cause for the evaluation of a PlayableGraph.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Playables.FrameData.EvaluationType.Evaluate">
- <summary>
- <para>Indicates the graph was updated due to a call to PlayableGraph.Evaluate.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Playables.FrameData.EvaluationType.Playback">
- <summary>
- <para>Indicates the graph was called by the runtime during normal playback due to PlayableGraph.Play being called.</para>
- </summary>
- </member>
- <member name="?:UnityEngine.Playables.IPlayable">
- <summary>
- <para>Interface implemented by all C# Playable implementations.</para>
- </summary>
- </member>
- <member name="?:UnityEngine.Playables.IPlayableAsset">
- <summary>
- <para>Interface that permits a class to inject playables into a graph.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Playables.IPlayableAsset.duration">
- <summary>
- <para>Duration in seconds.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Playables.IPlayableAsset.outputs">
- <summary>
- <para>A description of the PlayableOutputs generated by this asset.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Playables.IPlayableAsset.CreatePlayable(UnityEngine.Playables.PlayableGraph,UnityEngine.GameObject)">
- <summary>
- <para>Implement this method to have your asset inject playables into the given graph.</para>
- </summary>
- <param name="graph">The graph to inject playables into.</param>
- <param name="owner">The game object which initiated the build.</param>
- <returns>
- <para>The playable injected into the graph, or the root playable if multiple playables are injected.</para>
- </returns>
- </member>
- <member name="?:UnityEngine.Playables.IPlayableBehaviour">
- <summary>
- <para>Interface implemented by all C# Playable Behaviour implementations.</para>
- </summary>
- </member>
- <member name="?:UnityEngine.Playables.IPlayableOutput">
- <summary>
- <para>Interface implemented by all C# Playable output implementations.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Playables.Playable">
- <summary>
- <para>Playables are customizable runtime objects that can be connected together and are contained in a PlayableGraph to create complex behaviours.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Playables.Playable.Null">
- <summary>
- <para>Returns an invalid Playable.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Playables.PlayableAsset">
- <summary>
- <para>An base class for assets that can be used to instatiate a Playable at runtime.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Playables.PlayableAsset.duration">
- <summary>
- <para>The playback duration in seconds of the instantiated Playable.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Playables.PlayableAsset.outputs">
- <summary>
- <para>A description of the outputs of the instantiated Playable.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Playables.PlayableAsset.CreatePlayable(UnityEngine.Playables.PlayableGraph,UnityEngine.GameObject)">
- <summary>
- <para>Implement this method to have your asset inject playables into the given graph.</para>
- </summary>
- <param name="graph">The graph to inject playables into.</param>
- <param name="owner">The game object which initiated the build.</param>
- <returns>
- <para>The playable injected into the graph, or the root playable if multiple playables are injected.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.Playables.PlayableBehaviour">
- <summary>
- <para>PlayableBehaviour is the base class from which every custom playable script derives.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Playables.PlayableBehaviour.OnBehaviourDelay(UnityEngine.Playables.Playable,UnityEngine.Playables.FrameData)">
- <summary>
- <para>This function is called when the Playable play state is changed to Playables.PlayState.Delayed.</para>
- </summary>
- <param name="playable">The Playable that owns the current PlayableBehaviour.</param>
- <param name="info">A FrameData structure that contains information about the current frame context.</param>
- </member>
- <member name="M:UnityEngine.Playables.PlayableBehaviour.OnBehaviourPause(UnityEngine.Playables.Playable,UnityEngine.Playables.FrameData)">
- <summary>
- <para>This function is called when the Playable play state is changed to Playables.PlayState.Paused.</para>
- </summary>
- <param name="playable">The Playable that owns the current PlayableBehaviour.</param>
- <param name="info">A FrameData structure that contains information about the current frame context.</param>
- </member>
- <member name="M:UnityEngine.Playables.PlayableBehaviour.OnBehaviourPlay(UnityEngine.Playables.Playable,UnityEngine.Playables.FrameData)">
- <summary>
- <para>This function is called when the Playable play state is changed to Playables.PlayState.Playing.</para>
- </summary>
- <param name="playable">The Playable that owns the current PlayableBehaviour.</param>
- <param name="info">A FrameData structure that contains information about the current frame context.</param>
- </member>
- <member name="M:UnityEngine.Playables.PlayableBehaviour.OnGraphStart(UnityEngine.Playables.Playable)">
- <summary>
- <para>This function is called when the PlayableGraph that owns this PlayableBehaviour starts.</para>
- </summary>
- <param name="playable">The Playable that owns the current PlayableBehaviour.</param>
- </member>
- <member name="M:UnityEngine.Playables.PlayableBehaviour.OnGraphStop(UnityEngine.Playables.Playable)">
- <summary>
- <para>This function is called when the PlayableGraph that owns this PlayableBehaviour stops.</para>
- </summary>
- <param name="playable">The Playable that owns the current PlayableBehaviour.</param>
- </member>
- <member name="M:UnityEngine.Playables.PlayableBehaviour.OnPlayableCreate(UnityEngine.Playables.Playable)">
- <summary>
- <para>This function is called when the Playable that owns the PlayableBehaviour is created.</para>
- </summary>
- <param name="playable">The Playable that owns the current PlayableBehaviour.</param>
- </member>
- <member name="M:UnityEngine.Playables.PlayableBehaviour.OnPlayableDestroy(UnityEngine.Playables.Playable)">
- <summary>
- <para>This function is called when the Playable that owns the PlayableBehaviour is destroyed.</para>
- </summary>
- <param name="playable">The Playable that owns the current PlayableBehaviour.</param>
- </member>
- <member name="M:UnityEngine.Playables.PlayableBehaviour.PrepareData(UnityEngine.Playables.Playable,UnityEngine.Playables.FrameData)">
- <summary>
- <para>This function is called during the PrepareData phase of the PlayableGraph.</para>
- </summary>
- <param name="playable">The Playable that owns the current PlayableBehaviour.</param>
- <param name="info">A FrameData structure that contains information about the current frame context.</param>
- </member>
- <member name="M:UnityEngine.Playables.PlayableBehaviour.PrepareFrame(UnityEngine.Playables.Playable,UnityEngine.Playables.FrameData)">
- <summary>
- <para>This function is called during the PrepareFrame phase of the PlayableGraph.</para>
- </summary>
- <param name="playable">The Playable that owns the current PlayableBehaviour.</param>
- <param name="info">A FrameData structure that contains information about the current frame context.</param>
- </member>
- <member name="M:UnityEngine.Playables.PlayableBehaviour.ProcessFrame(UnityEngine.Playables.Playable,UnityEngine.Playables.FrameData,System.Object)">
- <summary>
- <para>This function is called during the ProcessFrame phase of the PlayableGraph.</para>
- </summary>
- <param name="playable">The Playable that owns the current PlayableBehaviour.</param>
- <param name="info">A FrameData structure that contains information about the current frame context.</param>
- <param name="playerData"></param>
- </member>
- <member name="T:UnityEngine.Playables.PlayableBinding">
- <summary>
- <para>Struct that holds information regarding an output of a PlayableAsset.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Playables.PlayableBinding.outputTargetType">
- <summary>
- <para>The type of target required by the PlayableOutput for this PlayableBinding.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Playables.PlayableBinding.sourceObject">
- <summary>
- <para>A reference to a UnityEngine.Object that acts a key for this binding.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Playables.PlayableBinding.streamName">
- <summary>
- <para>The name of the output or input stream.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Playables.PlayableBinding.streamType">
- <summary>
- <para>The type of the output or input stream.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Playables.PlayableBinding.DefaultDuration">
- <summary>
- <para>The default duration used when a PlayableOutput has no fixed duration.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Playables.PlayableBinding.None">
- <summary>
- <para>A constant to represent a PlayableAsset has no bindings.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Playables.PlayableExtensions">
- <summary>
- <para>Extensions for all the types that implements IPlayable.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Playables.PlayableExtensions.AddInput(U,V,System.Int32,System.Single)">
- <summary>
- <para>Create a new input port and connect it to the output port of the given Playable.</para>
- </summary>
- <param name="playable">The Playable used by this operation.</param>
- <param name="sourcePlayable">The Playable to connect to.</param>
- <param name="sourceOutputIndex">The output port of the Playable.</param>
- <param name="weight">The weight of the created input port.</param>
- <returns>
- <para>The index of the newly created input port.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Playables.PlayableExtensions.ConnectInput(U,System.Int32,V,System.Int32,System.Single)">
- <summary>
- <para>Connect the output port of a Playable to one of the input ports.</para>
- </summary>
- <param name="playable">The Playable used by this operation.</param>
- <param name="inputIndex">The input port index.</param>
- <param name="sourcePlayable">The Playable to connect to.</param>
- <param name="sourceOutputIndex">The output port of the Playable.</param>
- <param name="weight">The weight of the input port.</param>
- </member>
- <member name="M:UnityEngine.Playables.PlayableExtensions.Destroy(U)">
- <summary>
- <para>Destroys the current Playable.</para>
- </summary>
- <param name="playable">The Playable used by this operation.</param>
- </member>
- <member name="M:UnityEngine.Playables.PlayableExtensions.DisconnectInput(U,System.Int32)">
- <summary>
- <para>Disconnect the input port of a Playable.</para>
- </summary>
- <param name="playable">The Playable used by this operation.</param>
- <param name="inputPort">The input port index.</param>
- </member>
- <member name="M:UnityEngine.Playables.PlayableExtensions.GetDelay(U)">
- <summary>
- <para>Returns the delay of the playable.</para>
- </summary>
- <param name="playable">The Playable used by this operation.</param>
- <returns>
- <para>The delay in seconds.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Playables.PlayableExtensions.GetDuration(U)">
- <summary>
- <para>Returns the duration of the Playable.</para>
- </summary>
- <param name="playable">The Playable used by this operation.</param>
- <returns>
- <para>The duration in seconds.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Playables.PlayableExtensions.GetGraph(U)">
- <summary>
- <para>Returns the PlayableGraph that owns this Playable. A Playable can only be used in the graph that was used to create it.</para>
- </summary>
- <param name="playable">The Playable used by this operation.</param>
- <returns>
- <para>The PlayableGraph associated with the current Playable.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Playables.PlayableExtensions.GetInput(U,System.Int32)">
- <summary>
- <para>Returns the Playable connected at the given input port index.</para>
- </summary>
- <param name="playable">The Playable used by this operation.</param>
- <param name="inputPort">The port index.</param>
- <returns>
- <para>Playable connected at the index specified, or null if the index is valid but is not connected to anything. This happens if there was once a Playable connected at the index, but was disconnected via PlayableGraph.Disconnect.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Playables.PlayableExtensions.GetInputCount(U)">
- <summary>
- <para>Returns the number of inputs supported by the Playable.</para>
- </summary>
- <param name="playable">The Playable used by this operation.</param>
- <returns>
- <para>The count of inputs on the Playable.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Playables.PlayableExtensions.GetInputWeight(U,System.Int32)">
- <summary>
- <para>Returns the weight of the Playable connected at the given input port index.</para>
- </summary>
- <param name="playable">The Playable used by this operation.</param>
- <param name="inputIndex">The port index.</param>
- <returns>
- <para>The current weight of the connected Playable.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Playables.PlayableExtensions.GetLeadTime(U)">
- <summary>
- <para>Returns the Playable lead time in seconds.</para>
- </summary>
- <param name="playable">The Playable used by this operation.</param>
- </member>
- <member name="M:UnityEngine.Playables.PlayableExtensions.GetOutput(U,System.Int32)">
- <summary>
- <para>Returns the Playable connected at the given output port index.</para>
- </summary>
- <param name="playable">The Playable used by this operation.</param>
- <param name="outputPort">The port index.</param>
- <returns>
- <para>Playable connected at the output index specified, or null if the index is valid but is not connected to anything. This happens if there was once a Playable connected at the index, but was disconnected via PlayableGraph.Disconnect.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Playables.PlayableExtensions.GetOutputCount(U)">
- <summary>
- <para>Returns the number of outputs supported by the Playable.</para>
- </summary>
- <param name="playable">The Playable used by this operation.</param>
- <returns>
- <para>The count of outputs on the Playable.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Playables.PlayableExtensions.GetPlayState(U)">
- <summary>
- <para>Returns the current PlayState of the Playable.</para>
- </summary>
- <param name="playable">The Playable used by this operation.</param>
- <returns>
- <para>The current PlayState of the Playable.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Playables.PlayableExtensions.GetPreviousTime(U)">
- <summary>
- <para>Returns the previous local time of the Playable.</para>
- </summary>
- <param name="playable">The Playable used by this operation.</param>
- <returns>
- <para>The previous time in seconds.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Playables.PlayableExtensions.GetPropagateSetTime(U)">
- <summary>
- <para>Returns the time propagation behavior of this Playable.</para>
- </summary>
- <param name="playable">The Playable used by this operation.</param>
- <returns>
- <para>True if time propagation is enabled.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Playables.PlayableExtensions.GetSpeed(U)">
- <summary>
- <para>Returns the speed multiplier that is applied to the the current Playable.</para>
- </summary>
- <param name="playable">The Playable used by this operation.</param>
- <returns>
- <para>The current speed.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Playables.PlayableExtensions.GetTime(U)">
- <summary>
- <para>Returns the current local time of the Playable.</para>
- </summary>
- <param name="playable">The Playable used by this operation.</param>
- <returns>
- <para>The current time in seconds.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Playables.PlayableExtensions.GetTraversalMode(U)">
- <summary>
- <para>Returns the propagation mode for the multi-output playable.</para>
- </summary>
- <param name="playable"></param>
- <returns>
- <para>Traversal mode (Mix or Passthrough).</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Playables.PlayableExtensions.IsDelayed(U)">
- <summary>
- <para>Returns whether or not the Playable has a delay.</para>
- </summary>
- <param name="playable">The Playable used by this operation.</param>
- <returns>
- <para>True if the playable is delayed, false otherwise.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Playables.PlayableExtensions.IsDone(U)">
- <summary>
- <para>Returns a flag indicating that a playable has completed its operation.</para>
- </summary>
- <param name="playable">The Playable used by this operation.</param>
- <returns>
- <para>True if the playable has completed its operation, false otherwise.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Playables.PlayableExtensions.IsNull(U)">
- <summary>
- <para>Returns true if the Playable is null, false otherwise.</para>
- </summary>
- <param name="playable">The Playable used by this operation.</param>
- </member>
- <member name="M:UnityEngine.Playables.PlayableExtensions.IsValid(U)">
- <summary>
- <para>Returns the vality of the current Playable.</para>
- </summary>
- <param name="playable">The Playable used by this operation.</param>
- <returns>
- <para>True if the Playable is properly constructed by the PlayableGraph and has not been destroyed, false otherwise.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Playables.PlayableExtensions.Pause(U)">
- <summary>
- <para>Tells to pause the Playable.</para>
- </summary>
- <param name="playable">The Playable used by this operation.</param>
- </member>
- <member name="M:UnityEngine.Playables.PlayableExtensions.Play(U)">
- <summary>
- <para>Starts to play the Playable.</para>
- </summary>
- <param name="playable">The Playable used by this operation.</param>
- </member>
- <member name="M:UnityEngine.Playables.PlayableExtensions.SetDelay(U,System.Double)">
- <summary>
- <para>Set a delay until the playable starts.</para>
- </summary>
- <param name="playable">The Playable used by this operation.</param>
- <param name="delay">The delay in seconds.</param>
- </member>
- <member name="M:UnityEngine.Playables.PlayableExtensions.SetDone(U,System.Boolean)">
- <summary>
- <para>Changes a flag indicating that a playable has completed its operation.</para>
- </summary>
- <param name="playable">The Playable used by this operation.</param>
- <param name="value">True if the operation is completed, false otherwise.</param>
- </member>
- <member name="M:UnityEngine.Playables.PlayableExtensions.SetDuration(U,System.Double)">
- <summary>
- <para>Changes the duration of the Playable.</para>
- </summary>
- <param name="playable">The Playable used by this operation.</param>
- <param name="value">The new duration in seconds, must be a positive value.</param>
- </member>
- <member name="M:UnityEngine.Playables.PlayableExtensions.SetInputCount(U,System.Int32)">
- <summary>
- <para>Changes the number of inputs supported by the Playable.</para>
- </summary>
- <param name="playable">The Playable used by this operation.</param>
- <param name="value"></param>
- </member>
- <member name="M:UnityEngine.Playables.PlayableExtensions.SetInputWeight(U,System.Int32,System.Single)">
- <summary>
- <para>Changes the weight of the Playable connected to the current Playable.</para>
- </summary>
- <param name="playable">The Playable used by this operation.</param>
- <param name="input">The connected Playable to change.</param>
- <param name="weight">The weight. Should be between 0 and 1.</param>
- <param name="inputIndex"></param>
- </member>
- <member name="M:UnityEngine.Playables.PlayableExtensions.SetInputWeight(U,V,System.Single)">
- <summary>
- <para>Changes the weight of the Playable connected to the current Playable.</para>
- </summary>
- <param name="playable">The Playable used by this operation.</param>
- <param name="input">The connected Playable to change.</param>
- <param name="weight">The weight. Should be between 0 and 1.</param>
- <param name="inputIndex"></param>
- </member>
- <member name="M:UnityEngine.Playables.PlayableExtensions.SetLeadTime(U,System.Single)">
- <summary>
- <para>Sets the Playable lead time in seconds.</para>
- </summary>
- <param name="playable">The Playable used by this operation.</param>
- <param name="value">The new lead time in seconds.</param>
- </member>
- <member name="M:UnityEngine.Playables.PlayableExtensions.SetOutputCount(U,System.Int32)">
- <summary>
- <para>Changes the number of outputs supported by the Playable.</para>
- </summary>
- <param name="playable">The Playable used by this operation.</param>
- <param name="value"></param>
- </member>
- <member name="M:UnityEngine.Playables.PlayableExtensions.SetPlayState(U,UnityEngine.Playables.PlayState)">
- <summary>
- <para>Changes the current PlayState of the Playable.</para>
- </summary>
- <param name="playable">The Playable used by this operation.</param>
- <param name="value">The new PlayState.</param>
- </member>
- <member name="M:UnityEngine.Playables.PlayableExtensions.SetPropagateSetTime(U,System.Boolean)">
- <summary>
- <para>Changes the time propagation behavior of this Playable.</para>
- </summary>
- <param name="playable">The Playable used by this operation.</param>
- <param name="value">True to enable time propagation.</param>
- </member>
- <member name="M:UnityEngine.Playables.PlayableExtensions.SetSpeed(U,System.Double)">
- <summary>
- <para>Changes the speed multiplier that is applied to the the current Playable.</para>
- </summary>
- <param name="playable">The Playable used by this operation.</param>
- <param name="value">The new speed.</param>
- </member>
- <member name="M:UnityEngine.Playables.PlayableExtensions.SetTime(U,System.Double)">
- <summary>
- <para>Changes the current local time of the Playable.</para>
- </summary>
- <param name="playable">The Playable used by this operation.</param>
- <param name="value">The current time in seconds.</param>
- </member>
- <member name="M:UnityEngine.Playables.PlayableExtensions.SetTraversalMode(U,UnityEngine.Playables.PlayableTraversalMode)">
- <summary>
- <para>Sets the propagation mode of PrepareFrame and ProcessFrame for the multi-output playable.</para>
- </summary>
- <param name="playable">The Playable used by this operation.</param>
- <param name="mode">The new traversal mode.</param>
- </member>
- <member name="T:UnityEngine.Playables.PlayableGraph">
- <summary>
- <para>Use the PlayableGraph to manage Playable creations and destructions.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Playables.PlayableGraph.Connect(U,System.Int32,V,System.Int32)">
- <summary>
- <para>Connects two Playable instances.</para>
- </summary>
- <param name="source">The source playable or its handle.</param>
- <param name="sourceOutputPort">The port used in the source playable.</param>
- <param name="destination">The destination playable or its handle.</param>
- <param name="destinationInputPort">The port used in the destination playable.</param>
- <returns>
- <para>Returns true if connection is successful.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Playables.PlayableGraph.Create">
- <summary>
- <para>Creates a PlayableGraph.</para>
- </summary>
- <param name="name">The name of the graph.</param>
- <returns>
- <para>The newly created PlayableGraph.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Playables.PlayableGraph.Create(System.String)">
- <summary>
- <para>Creates a PlayableGraph.</para>
- </summary>
- <param name="name">The name of the graph.</param>
- <returns>
- <para>The newly created PlayableGraph.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Playables.PlayableGraph.Destroy">
- <summary>
- <para>Destroys the graph.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Playables.PlayableGraph.DestroyOutput(U)">
- <summary>
- <para>Destroys the PlayableOutput.</para>
- </summary>
- <param name="output">The output to destroy.</param>
- </member>
- <member name="M:UnityEngine.Playables.PlayableGraph.DestroyPlayable(U)">
- <summary>
- <para>Destroys the Playable.</para>
- </summary>
- <param name="playable">The playable to destroy.</param>
- </member>
- <member name="M:UnityEngine.Playables.PlayableGraph.DestroySubgraph(U)">
- <summary>
- <para>Destroys the Playable and all its inputs, recursively.</para>
- </summary>
- <param name="playable">The Playable to destroy.</param>
- </member>
- <member name="M:UnityEngine.Playables.PlayableGraph.Disconnect(U,System.Int32)">
- <summary>
- <para>Disconnects the Playable. The connections determine the topology of the PlayableGraph and how it is evaluated.</para>
- </summary>
- <param name="input">The source playabe or its handle.</param>
- <param name="inputPort">The port used in the source playable.</param>
- </member>
- <member name="M:UnityEngine.Playables.PlayableGraph.Evaluate(System.Single)">
- <summary>
- <para>Evaluates all the PlayableOutputs in the graph, and updates all the connected Playables in the graph.</para>
- </summary>
- <param name="deltaTime">The time in seconds by which to advance each Playable in the graph.</param>
- </member>
- <member name="M:UnityEngine.Playables.PlayableGraph.Evaluate">
- <summary>
- <para>Evaluates all the PlayableOutputs in the graph, and updates all the connected Playables in the graph.</para>
- </summary>
- <param name="deltaTime">The time in seconds by which to advance each Playable in the graph.</param>
- </member>
- <member name="M:UnityEngine.Playables.PlayableGraph.GetOutput(System.Int32)">
- <summary>
- <para>Get PlayableOutput at the given index in the graph.</para>
- </summary>
- <param name="index">The output index.</param>
- <returns>
- <para>The PlayableOutput at this given index, otherwise null.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Playables.PlayableGraph.GetOutputByType(System.Int32)">
- <summary>
- <para>Get PlayableOutput of the requested type at the given index in the graph.</para>
- </summary>
- <param name="index">The output index.</param>
- <returns>
- <para>The PlayableOutput at the given index among all the PlayableOutput of the same type T.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Playables.PlayableGraph.GetOutputCount">
- <summary>
- <para>Returns the number of PlayableOutput in the graph.</para>
- </summary>
- <returns>
- <para>The number of PlayableOutput in the graph.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Playables.PlayableGraph.GetOutputCountByType">
- <summary>
- <para>Get the number of PlayableOutput of the requested type in the graph.</para>
- </summary>
- <returns>
- <para>The number of PlayableOutput of the same type T in the graph.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Playables.PlayableGraph.GetPlayableCount">
- <summary>
- <para>Returns the number of Playable owned by the Graph.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Playables.PlayableGraph.GetResolver">
- <summary>
- <para>Returns the table used by the graph to resolve ExposedReferences.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Playables.PlayableGraph.GetRootPlayable(System.Int32)">
- <summary>
- <para>Returns the Playable with no output connections at the given index.</para>
- </summary>
- <param name="index">The index of the root Playable.</param>
- </member>
- <member name="M:UnityEngine.Playables.PlayableGraph.GetRootPlayableCount">
- <summary>
- <para>Returns the number of Playable owned by the Graph that have no connected outputs.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Playables.PlayableGraph.GetTimeUpdateMode">
- <summary>
- <para>Returns how time is incremented when playing back.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Playables.PlayableGraph.IsDone">
- <summary>
- <para>Indicates that a graph has completed its operations.</para>
- </summary>
- <returns>
- <para>A boolean indicating if the graph is done playing or not.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Playables.PlayableGraph.IsPlaying">
- <summary>
- <para>Indicates that a graph is presently running.</para>
- </summary>
- <returns>
- <para>A boolean indicating if the graph is playing or not.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Playables.PlayableGraph.IsValid">
- <summary>
- <para>Returns true if the PlayableGraph has been properly constructed using PlayableGraph.CreateGraph and is not deleted.</para>
- </summary>
- <returns>
- <para>A boolean indicating if the graph is invalid or not.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Playables.PlayableGraph.Play">
- <summary>
- <para>Plays the graph.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Playables.PlayableGraph.SetResolver(UnityEngine.IExposedPropertyTable)">
- <summary>
- <para>Changes the table used by the graph to resolve ExposedReferences.</para>
- </summary>
- <param name="value"></param>
- </member>
- <member name="M:UnityEngine.Playables.PlayableGraph.SetTimeUpdateMode(UnityEngine.Playables.DirectorUpdateMode)">
- <summary>
- <para>Changes how time is incremented when playing back.</para>
- </summary>
- <param name="value">The new DirectorUpdateMode.</param>
- </member>
- <member name="M:UnityEngine.Playables.PlayableGraph.Stop">
- <summary>
- <para>Stops the graph, if it is playing.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Playables.PlayableOutput">
- <summary>
- <para>See: Playables.IPlayableOutput.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Playables.PlayableOutput.Null">
- <summary>
- <para>Returns an invalid PlayableOutput.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Playables.PlayableOutputExtensions">
- <summary>
- <para>Extensions for all the types that implements IPlayableOutput.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Playables.PlayableOutputExtensions.GetSourceOutputPort(U)">
- <summary>
- <para>Returns the source playable's output connection index.</para>
- </summary>
- <param name="output">The PlayableOutput used by this operation.</param>
- <returns>
- <para>The output port.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Playables.PlayableOutputExtensions.GetSourcePlayable(U)">
- <summary>
- <para>Returns the source playable.</para>
- </summary>
- <param name="output">The PlayableOutput used by this operation.</param>
- <returns>
- <para>The source playable.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Playables.PlayableOutputExtensions.GetUserData(U)">
- <summary>
- <para>Returns the opaque user data. This is the same value as the last last argument of ProcessFrame.</para>
- </summary>
- <param name="output">The PlayableOutput used by this operation.</param>
- <returns>
- <para>The user data.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Playables.PlayableOutputExtensions.GetWeight(U)">
- <summary>
- <para>Returns the weight of the connection from the PlayableOutput to the source playable.</para>
- </summary>
- <param name="output">The PlayableOutput used by this operation.</param>
- <returns>
- <para>The weight of the connection to the source playable.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Playables.PlayableOutputExtensions.IsOutputNull(U)">
- <summary>
- <para>Returns true if the PlayableOutput is null, false otherwise.</para>
- </summary>
- <param name="output">The PlayableOutput used by this operation.</param>
- </member>
- <member name="M:UnityEngine.Playables.PlayableOutputExtensions.IsOutputValid(U)">
- <summary>
- <para></para>
- </summary>
- <param name="output">The PlayableOutput used by this operation.</param>
- <returns>
- <para>True if the PlayableOutput has not yet been destroyed and false otherwise.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Playables.PlayableOutputExtensions.SetReferenceObject(U,UnityEngine.Object)">
- <summary>
- <para>Sets the bound object to a new value. Used to associate an output to an object (Track asset in case of Timeline).</para>
- </summary>
- <param name="output">The PlayableOutput used by this operation.</param>
- <param name="value">The new reference object value.</param>
- </member>
- <member name="M:UnityEngine.Playables.PlayableOutputExtensions.SetSourceOutputPort(U,System.Int32)">
- <summary>
- <para>Sets the source playable's output connection index. For playables with multiple outputs, this determines which sub-branch of the source playable generates this output.</para>
- </summary>
- <param name="output">The PlayableOutput used by this operation.</param>
- <param name="value">The new output port value.</param>
- </member>
- <member name="M:UnityEngine.Playables.PlayableOutputExtensions.SetSourcePlayable(U,V,System.Int32)">
- <summary>
- <para>Sets which playable that computes the output and which sub-tree index.</para>
- </summary>
- <param name="output">The PlayableOutput used by this operation.</param>
- <param name="value">The new source Playable.</param>
- <param name="port">The new output port value.</param>
- </member>
- <member name="M:UnityEngine.Playables.PlayableOutputExtensions.SetSourcePlayable(U,V)">
- <summary>
- <para>Sets which playable that computes the output.</para>
- </summary>
- <param name="output">The PlayableOutput used by this operation.</param>
- <param name="value">The new source Playable.</param>
- </member>
- <member name="M:UnityEngine.Playables.PlayableOutputExtensions.SetUserData(U,UnityEngine.Object)">
- <summary>
- <para>Sets the opaque user data. This same data is passed as the last argument to ProcessFrame.</para>
- </summary>
- <param name="output">The PlayableOutput used by this operation.</param>
- <param name="value">The new user data.</param>
- </member>
- <member name="M:UnityEngine.Playables.PlayableOutputExtensions.SetWeight(U,System.Single)">
- <summary>
- <para>Sets the weight of the connection from the PlayableOutput to the source playable.</para>
- </summary>
- <param name="output">The PlayableOutput used by this operation.</param>
- <param name="value">The new weight.</param>
- </member>
- <member name="T:UnityEngine.Playables.PlayableTraversalMode">
- <summary>
- <para>Traversal mode for Playables.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Playables.PlayableTraversalMode.Mix">
- <summary>
- <para>Causes the Playable to prepare and process it's inputs when demanded by an output.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Playables.PlayableTraversalMode.Passthrough">
- <summary>
- <para>Causes the Playable to act as a passthrough for PrepareFrame and ProcessFrame. If the PlayableOutput being processed is connected to the n-th input port of the Playable, the Playable only propagates the n-th output port. Use this enum value in conjunction with PlayableOutput SetSourceOutputPort.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Playables.PlayState">
- <summary>
- <para>Status of a Playable.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Playables.PlayState.Delayed">
- <summary>
- <para>The Playable has been delayed, using PlayableExtensions.SetDelay. It will not start until the delay is entirely consumed.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Playables.PlayState.Paused">
- <summary>
- <para>The Playable has been paused. Its local time will not advance.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Playables.PlayState.Playing">
- <summary>
- <para>The Playable is currently Playing.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Playables.ScriptPlayable`1">
- <summary>
- <para>A IPlayable implementation that contains a PlayableBehaviour for the PlayableGraph. PlayableBehaviour can be used to write custom Playable that implement their own PrepareFrame callback.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Playables.ScriptPlayableBinding">
- <summary>
- <para>A PlayableBinding that contains information representing a ScriptingPlayableOutput.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Playables.ScriptPlayableBinding.Create(System.String,UnityEngine.Object,System.Type)">
- <summary>
- <para>Creates a PlayableBinding that contains information representing a ScriptPlayableOutput.</para>
- </summary>
- <param name="key">A reference to a UnityEngine.Object that acts as a key for this binding.</param>
- <param name="type">The type of object that will be bound to the ScriptPlayableOutput.</param>
- <param name="name">The name of the ScriptPlayableOutput.</param>
- <returns>
- <para>Returns a PlayableBinding that contains information that is used to create a ScriptPlayableOutput.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.Playables.ScriptPlayableOutput">
- <summary>
- <para>A IPlayableOutput implementation that contains a script output for the a PlayableGraph.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Playables.ScriptPlayableOutput.Create(UnityEngine.Playables.PlayableGraph,System.String)">
- <summary>
- <para>Creates a new ScriptPlayableOutput in the associated PlayableGraph.</para>
- </summary>
- <param name="graph">The PlayableGraph that will contain the ScriptPlayableOutput.</param>
- <param name="name">The name of this ScriptPlayableOutput.</param>
- <returns>
- <para>The created ScriptPlayableOutput.</para>
- </returns>
- </member>
- <member name="P:UnityEngine.Playables.ScriptPlayableOutput.Null">
- <summary>
- <para>Returns an invalid ScriptPlayableOutput.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.PlayerPrefs">
- <summary>
- <para>Stores and accesses player preferences between game sessions.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.PlayerPrefs.DeleteAll">
- <summary>
- <para>Removes all keys and values from the preferences. Use with caution.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.PlayerPrefs.DeleteKey(System.String)">
- <summary>
- <para>Removes key and its corresponding value from the preferences.</para>
- </summary>
- <param name="key"></param>
- </member>
- <member name="M:UnityEngine.PlayerPrefs.GetFloat(System.String)">
- <summary>
- <para>Returns the value corresponding to key in the preference file if it exists.</para>
- </summary>
- <param name="key"></param>
- <param name="defaultValue"></param>
- </member>
- <member name="M:UnityEngine.PlayerPrefs.GetFloat(System.String,System.Single)">
- <summary>
- <para>Returns the value corresponding to key in the preference file if it exists.</para>
- </summary>
- <param name="key"></param>
- <param name="defaultValue"></param>
- </member>
- <member name="M:UnityEngine.PlayerPrefs.GetInt(System.String)">
- <summary>
- <para>Returns the value corresponding to key in the preference file if it exists.</para>
- </summary>
- <param name="key"></param>
- <param name="defaultValue"></param>
- </member>
- <member name="M:UnityEngine.PlayerPrefs.GetInt(System.String,System.Int32)">
- <summary>
- <para>Returns the value corresponding to key in the preference file if it exists.</para>
- </summary>
- <param name="key"></param>
- <param name="defaultValue"></param>
- </member>
- <member name="M:UnityEngine.PlayerPrefs.GetString(System.String)">
- <summary>
- <para>Returns the value corresponding to key in the preference file if it exists.</para>
- </summary>
- <param name="key"></param>
- <param name="defaultValue"></param>
- </member>
- <member name="M:UnityEngine.PlayerPrefs.GetString(System.String,System.String)">
- <summary>
- <para>Returns the value corresponding to key in the preference file if it exists.</para>
- </summary>
- <param name="key"></param>
- <param name="defaultValue"></param>
- </member>
- <member name="M:UnityEngine.PlayerPrefs.HasKey(System.String)">
- <summary>
- <para>Returns true if key exists in the preferences.</para>
- </summary>
- <param name="key"></param>
- </member>
- <member name="M:UnityEngine.PlayerPrefs.Save">
- <summary>
- <para>Writes all modified preferences to disk.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.PlayerPrefs.SetFloat(System.String,System.Single)">
- <summary>
- <para>Sets the value of the preference identified by key.</para>
- </summary>
- <param name="key"></param>
- <param name="value"></param>
- </member>
- <member name="M:UnityEngine.PlayerPrefs.SetInt(System.String,System.Int32)">
- <summary>
- <para>Sets the value of the preference identified by key.</para>
- </summary>
- <param name="key"></param>
- <param name="value"></param>
- </member>
- <member name="M:UnityEngine.PlayerPrefs.SetString(System.String,System.String)">
- <summary>
- <para>Sets the value of the preference identified by key.</para>
- </summary>
- <param name="key"></param>
- <param name="value"></param>
- </member>
- <member name="T:UnityEngine.PlayerPrefsException">
- <summary>
- <para>An exception thrown by the PlayerPrefs class in a web player build.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Pose">
- <summary>
- <para>Representation of a Position, and a Rotation in 3D Space</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Pose.forward">
- <summary>
- <para>Returns the forward vector of the pose.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Pose.identity">
- <summary>
- <para>Shorthand for pose which represents zero position, and an identity rotation.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Pose.position">
- <summary>
- <para>The position component of the pose.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Pose.right">
- <summary>
- <para>Returns the right vector of the pose.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Pose.rotation">
- <summary>
- <para>The rotation component of the pose.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Pose.up">
- <summary>
- <para>Returns the up vector of the pose.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Pose.#ctor">
- <summary>
- <para>Creates a new pose with the given vector, and quaternion values.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Pose.GetTransformedBy(UnityEngine.Pose)">
- <summary>
- <para>Transforms the current pose into the local space of the provided pose.</para>
- </summary>
- <param name="lhs"></param>
- </member>
- <member name="M:UnityEngine.Pose.GetTransformedBy(UnityEngine.Transform)">
- <summary>
- <para>Transforms the current pose into the local space of the provided pose.</para>
- </summary>
- <param name="lhs"></param>
- </member>
- <member name="T:UnityEngine.PreferBinarySerialization">
- <summary>
- <para>Prefer ScriptableObject derived type to use binary serialization regardless of project's asset serialization mode.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.PrimitiveType">
- <summary>
- <para>The various primitives that can be created using the GameObject.CreatePrimitive function.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.PrimitiveType.Capsule">
- <summary>
- <para>A capsule primitive.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.PrimitiveType.Cube">
- <summary>
- <para>A cube primitive.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.PrimitiveType.Cylinder">
- <summary>
- <para>A cylinder primitive.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.PrimitiveType.Plane">
- <summary>
- <para>A plane primitive.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.PrimitiveType.Quad">
- <summary>
- <para>A Quad primitive.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.PrimitiveType.Sphere">
- <summary>
- <para>A sphere primitive.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Profiling.CustomSampler">
- <summary>
- <para>Custom CPU Profiler label used for profiling arbitrary code blocks.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Profiling.CustomSampler.Begin">
- <summary>
- <para>Begin profiling a piece of code with a custom label defined by this instance of CustomSampler.</para>
- </summary>
- <param name="targetObject"></param>
- </member>
- <member name="M:UnityEngine.Profiling.CustomSampler.Begin(UnityEngine.Object)">
- <summary>
- <para>Begin profiling a piece of code with a custom label defined by this instance of CustomSampler.</para>
- </summary>
- <param name="targetObject"></param>
- </member>
- <member name="M:UnityEngine.Profiling.CustomSampler.Create(System.String)">
- <summary>
- <para>Creates a new CustomSampler for profiling parts of your code.</para>
- </summary>
- <param name="name">Name of the Sampler.</param>
- <returns>
- <para>CustomSampler object or null if a built-in Sampler with the same name exists.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Profiling.CustomSampler.End">
- <summary>
- <para>End profiling a piece of code with a custom label.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Profiling.Profiler">
- <summary>
- <para>Controls the from script.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Profiling.Profiler.enableBinaryLog">
- <summary>
- <para>Enables the logging of profiling data to a file.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Profiling.Profiler.enabled">
- <summary>
- <para>Enables the Profiler.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Profiling.Profiler.logFile">
- <summary>
- <para>Specifies the file to use when writing profiling data.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Profiling.Profiler.maxNumberOfSamplesPerFrame">
- <summary>
- <para>Resize the profiler sample buffers to allow the desired amount of samples per thread.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Profiling.Profiler.usedHeapSize">
- <summary>
- <para>Heap size used by the program.</para>
- </summary>
- <returns>
- <para>Size of the used heap in bytes, (or 0 if the profiler is disabled).</para>
- </returns>
- </member>
- <member name="P:UnityEngine.Profiling.Profiler.usedHeapSizeLong">
- <summary>
- <para>Returns the number of bytes that Unity has allocated. This does not include bytes allocated by external libraries or drivers.</para>
- </summary>
- <returns>
- <para>Size of the memory allocated by Unity (or 0 if the profiler is disabled).</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Profiling.Profiler.AddFramesFromFile(System.String)">
- <summary>
- <para>Displays the recorded profile data in the profiler.</para>
- </summary>
- <param name="file">The name of the file containing the frame data, including extension.</param>
- </member>
- <member name="M:UnityEngine.Profiling.Profiler.BeginSample(System.String)">
- <summary>
- <para>Begin profiling a piece of code with a custom label.</para>
- </summary>
- <param name="name">A string to identify the sample in the Profiler window.</param>
- <param name="targetObject">An object that provides context to the sample,.</param>
- </member>
- <member name="M:UnityEngine.Profiling.Profiler.BeginSample(System.String,UnityEngine.Object)">
- <summary>
- <para>Begin profiling a piece of code with a custom label.</para>
- </summary>
- <param name="name">A string to identify the sample in the Profiler window.</param>
- <param name="targetObject">An object that provides context to the sample,.</param>
- </member>
- <member name="M:UnityEngine.Profiling.Profiler.BeginThreadProfiling(System.String,System.String)">
- <summary>
- <para>Enables profiling on the thread from which you call this method.</para>
- </summary>
- <param name="threadGroupName">The name of the thread group to which the thread belongs.</param>
- <param name="threadName">The name of the thread.</param>
- </member>
- <member name="M:UnityEngine.Profiling.Profiler.EndSample">
- <summary>
- <para>Ends the current profiling sample.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Profiling.Profiler.EndThreadProfiling">
- <summary>
- <para>Frees the internal resources used by the Profiler for the thread.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Profiling.Profiler.GetAllocatedMemoryForGraphicsDriver">
- <summary>
- <para>Returns the amount of allocated memory for the graphics driver, in bytes.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Profiling.Profiler.GetMonoHeapSize">
- <summary>
- <para>Returns the size of the mono heap.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Profiling.Profiler.GetMonoHeapSizeLong">
- <summary>
- <para>Returns the size of the reserved space for managed-memory.</para>
- </summary>
- <returns>
- <para>The size of the managed heap. This returns 0 if the Profiler is not available.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Profiling.Profiler.GetMonoUsedSize">
- <summary>
- <para>Returns the used size from mono.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Profiling.Profiler.GetMonoUsedSizeLong">
- <summary>
- <para>The allocated managed-memory for live objects and non-collected objects.</para>
- </summary>
- <returns>
- <para>A long integer value of the memory in use. This returns 0 if the Profiler is not available.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Profiling.Profiler.GetRuntimeMemorySize(UnityEngine.Object)">
- <summary>
- <para>Returns the runtime memory usage of the resource.</para>
- </summary>
- <param name="o"></param>
- </member>
- <member name="M:UnityEngine.Profiling.Profiler.GetRuntimeMemorySizeLong(UnityEngine.Object)">
- <summary>
- <para>Gathers the native-memory used by a Unity object.</para>
- </summary>
- <param name="o">The target Unity object.</param>
- <returns>
- <para>The amount of native-memory used by a Unity object. This returns 0 if the Profiler is not available.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Profiling.Profiler.GetTempAllocatorSize">
- <summary>
- <para>Returns the size of the temp allocator.</para>
- </summary>
- <returns>
- <para>Size in bytes.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Profiling.Profiler.GetTotalAllocatedMemory">
- <summary>
- <para>Returns the amount of allocated and used system memory.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Profiling.Profiler.GetTotalAllocatedMemoryLong">
- <summary>
- <para>The total memory allocated by the internal allocators in Unity. Unity reserves large pools of memory from the system. This function returns the amount of used memory in those pools.</para>
- </summary>
- <returns>
- <para>The amount of memory allocated by Unity. This returns 0 if the Profiler is not available.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Profiling.Profiler.GetTotalReservedMemory">
- <summary>
- <para>Returns the amount of reserved system memory.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Profiling.Profiler.GetTotalReservedMemoryLong">
- <summary>
- <para>The total memory Unity has reserved.</para>
- </summary>
- <returns>
- <para>Memory reserved by Unity in bytes. This returns 0 if the Profiler is not available.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Profiling.Profiler.GetTotalUnusedReservedMemory">
- <summary>
- <para>Returns the amount of reserved but not used system memory.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Profiling.Profiler.GetTotalUnusedReservedMemoryLong">
- <summary>
- <para>Unity allocates memory in pools for usage when unity needs to allocate memory. This function returns the amount of unused memory in these pools.</para>
- </summary>
- <returns>
- <para>The amount of unused memory in the reserved pools. This returns 0 if the Profiler is not available.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Profiling.Profiler.SetTempAllocatorRequestedSize(System.UInt32)">
- <summary>
- <para>Sets the size of the temp allocator.</para>
- </summary>
- <param name="size">Size in bytes.</param>
- <returns>
- <para>Returns true if requested size was successfully set. Will return false if value is disallowed (too small).</para>
- </returns>
- </member>
- <member name="T:UnityEngine.Profiling.Recorder">
- <summary>
- <para>Records profiling data produced by a specific Sampler.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Profiling.Recorder.elapsedNanoseconds">
- <summary>
- <para>Accumulated time of Begin/End pairs for the previous frame in nanoseconds. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Profiling.Recorder.enabled">
- <summary>
- <para>Enables recording.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Profiling.Recorder.isValid">
- <summary>
- <para>Returns true if Recorder is valid and can collect data. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Profiling.Recorder.sampleBlockCount">
- <summary>
- <para>Number of time Begin/End pairs was called during the previous frame. (Read Only)</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Profiling.Recorder.Get(System.String)">
- <summary>
- <para>Use this function to get a Recorder for the specific Profiler label.</para>
- </summary>
- <param name="samplerName">Sampler name.</param>
- <returns>
- <para>Recorder object for the specified Sampler.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.Profiling.Sampler">
- <summary>
- <para>Provides control over a CPU Profiler label.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Profiling.Sampler.isValid">
- <summary>
- <para>Returns true if Sampler is valid. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Profiling.Sampler.name">
- <summary>
- <para>Sampler name. (Read Only)</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Profiling.Sampler.Get(System.String)">
- <summary>
- <para>Returns Sampler object for the specific CPU Profiler label.</para>
- </summary>
- <param name="name">Profiler Sampler name.</param>
- <returns>
- <para>Sampler object which represents specific profiler label.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Profiling.Sampler.GetNames(System.Collections.Generic.List`1&lt;System.String&gt;)">
- <summary>
- <para>Returns number and names of all registered Profiler labels.</para>
- </summary>
- <param name="names">Preallocated list the Sampler names are written to. Or null if you want to get number of Samplers only.</param>
- <returns>
- <para>Number of active Samplers.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Profiling.Sampler.GetRecorder">
- <summary>
- <para>Returns Recorder associated with the Sampler.</para>
- </summary>
- <returns>
- <para>Recorder object associated with the Sampler.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.Projector">
- <summary>
- <para>A script interface for a.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Projector.aspectRatio">
- <summary>
- <para>The aspect ratio of the projection.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Projector.farClipPlane">
- <summary>
- <para>The far clipping plane distance.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Projector.fieldOfView">
- <summary>
- <para>The field of view of the projection in degrees.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Projector.ignoreLayers">
- <summary>
- <para>Which object layers are ignored by the projector.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Projector.material">
- <summary>
- <para>The material that will be projected onto every object.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Projector.nearClipPlane">
- <summary>
- <para>The near clipping plane distance.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Projector.orthographic">
- <summary>
- <para>Is the projection orthographic (true) or perspective (false)?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Projector.orthographicSize">
- <summary>
- <para>Projection's half-size when in orthographic mode.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.PropertyAttribute">
- <summary>
- <para>Base class to derive custom property attributes from. Use this to create custom attributes for script variables.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.PropertyAttribute.order">
- <summary>
- <para>Optional field to specify the order that multiple DecorationDrawers should be drawn in.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.PropertyName">
- <summary>
- <para>Represents a string as an int for efficient lookup and comparison. Use this for common PropertyNames.
-
-Internally stores just an int to represent the string. A PropertyName can be created from a string but can not be converted back to a string. The same string always results in the same int representing that string. Thus this is a very efficient string representation in both memory and speed when all you need is comparison.
-
-PropertyName is serializable.
-
-ToString() is only implemented for debugging purposes in the editor it returns "theName:3737" in the player it returns "Unknown:3737".</para>
- </summary>
- </member>
- <member name="M:UnityEngine.PropertyName.#ctor(System.String)">
- <summary>
- <para>Initializes the PropertyName using a string.</para>
- </summary>
- <param name="name"></param>
- </member>
- <member name="M:UnityEngine.PropertyName.Equals(System.Object)">
- <summary>
- <para>Determines whether this instance and a specified object, which must also be a PropertyName object, have the same value.</para>
- </summary>
- <param name="other"></param>
- </member>
- <member name="M:UnityEngine.PropertyName.GetHashCode">
- <summary>
- <para>Returns the hash code for this PropertyName.</para>
- </summary>
- </member>
- <member name="?:UnityEngine.PropertyName.implop_PropertyName(string)(System.String)">
- <summary>
- <para>Converts the string passed into a PropertyName. See Also: PropertyName.ctor(System.String).</para>
- </summary>
- <param name="name"></param>
- </member>
- <member name="M:UnityEngine.PropertyName.IsNullOrEmpty(UnityEngine.PropertyName)">
- <summary>
- <para>Indicates whether the specified PropertyName is an Empty string.</para>
- </summary>
- <param name="prop"></param>
- </member>
- <member name="?:UnityEngine.PropertyName.op_Equal(UnityEngine.PropertyName,UnityEngine.PropertyName)">
- <summary>
- <para>Determines whether two specified PropertyName have the same string value. Because two PropertyNames initialized with the same string value always have the same name index, we can simply perform a comparison of two ints to find out if the string value equals.</para>
- </summary>
- <param name="lhs"></param>
- <param name="rhs"></param>
- </member>
- <member name="?:UnityEngine.PropertyName.op_NotEqual(UnityEngine.PropertyName,UnityEngine.PropertyName)">
- <summary>
- <para>Determines whether two specified PropertyName have a different string value.</para>
- </summary>
- <param name="lhs"></param>
- <param name="rhs"></param>
- </member>
- <member name="M:UnityEngine.PropertyName.ToString">
- <summary>
- <para>For debugging purposes only. Returns the string value representing the string in the Editor.
-Returns "UnityEngine.PropertyName" in the player.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.QualitySettings">
- <summary>
- <para>Script interface for.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.QualitySettings.activeColorSpace">
- <summary>
- <para>Active color space (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.QualitySettings.anisotropicFiltering">
- <summary>
- <para>Global anisotropic filtering mode.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.QualitySettings.antiAliasing">
- <summary>
- <para>Set The AA Filtering option.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.QualitySettings.asyncUploadBufferSize">
- <summary>
- <para>Async texture upload provides timesliced async texture upload on the render thread with tight control over memory and timeslicing. There are no allocations except for the ones which driver has to do. To read data and upload texture data a ringbuffer whose size can be controlled is re-used.
-
-Use asyncUploadBufferSize to set the buffer size for asynchronous texture uploads. The size is in megabytes. Minimum value is 2 and maximum is 512. Although the buffer will resize automatically to fit the largest texture currently loading, it is recommended to set the value approximately to the size of biggest texture used in the scene to avoid re-sizing of the buffer which can incur performance cost.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.QualitySettings.asyncUploadTimeSlice">
- <summary>
- <para>Async texture upload provides timesliced async texture upload on the render thread with tight control over memory and timeslicing. There are no allocations except for the ones which driver has to do. To read data and upload texture data a ringbuffer whose size can be controlled is re-used.
-
-Use asyncUploadTimeSlice to set the time-slice in milliseconds for asynchronous texture uploads per
-frame. Minimum value is 1 and maximum is 33.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.QualitySettings.billboardsFaceCameraPosition">
- <summary>
- <para>If enabled, billboards will face towards camera position rather than camera orientation.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.QualitySettings.blendWeights">
- <summary>
- <para>Blend weights.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.QualitySettings.desiredColorSpace">
- <summary>
- <para>Desired color space (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.QualitySettings.lodBias">
- <summary>
- <para>Global multiplier for the LOD's switching distance.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.QualitySettings.masterTextureLimit">
- <summary>
- <para>A texture size limit applied to all textures.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.QualitySettings.maximumLODLevel">
- <summary>
- <para>A maximum LOD level. All LOD groups.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.QualitySettings.maxQueuedFrames">
- <summary>
- <para>Maximum number of frames queued up by graphics driver.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.QualitySettings.names">
- <summary>
- <para>The indexed list of available Quality Settings.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.QualitySettings.particleRaycastBudget">
- <summary>
- <para>Budget for how many ray casts can be performed per frame for approximate collision testing.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.QualitySettings.pixelLightCount">
- <summary>
- <para>The maximum number of pixel lights that should affect any object.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.QualitySettings.realtimeReflectionProbes">
- <summary>
- <para>Enables realtime reflection probes.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.QualitySettings.resolutionScalingFixedDPIFactor">
- <summary>
- <para>In resolution scaling mode, this factor is used to multiply with the target Fixed DPI specified to get the actual Fixed DPI to use for this quality setting.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.QualitySettings.shadowCascade2Split">
- <summary>
- <para>The normalized cascade distribution for a 2 cascade setup. The value defines the position of the cascade with respect to Zero.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.QualitySettings.shadowCascade4Split">
- <summary>
- <para>The normalized cascade start position for a 4 cascade setup. Each member of the vector defines the normalized position of the coresponding cascade with respect to Zero.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.QualitySettings.shadowCascades">
- <summary>
- <para>Number of cascades to use for directional light shadows.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.QualitySettings.shadowDistance">
- <summary>
- <para>Shadow drawing distance.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.QualitySettings.shadowmaskMode">
- <summary>
- <para>The rendering mode of Shadowmask.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.QualitySettings.shadowNearPlaneOffset">
- <summary>
- <para>Offset shadow frustum near plane.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.QualitySettings.shadowProjection">
- <summary>
- <para>Directional light shadow projection.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.QualitySettings.shadowResolution">
- <summary>
- <para>The default resolution of the shadow maps.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.QualitySettings.shadows">
- <summary>
- <para>Realtime Shadows type to be used.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.QualitySettings.softParticles">
- <summary>
- <para>Should soft blending be used for particles?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.QualitySettings.softVegetation">
- <summary>
- <para>Use a two-pass shader for the vegetation in the terrain engine.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.QualitySettings.streamingMipmapsActive">
- <summary>
- <para>Enable automatic streaming of texture mipmap levels based on their distance from all active cameras.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.QualitySettings.streamingMipmapsAddAllCameras">
- <summary>
- <para>Process all enabled Cameras for texture streaming (rather than just those with StreamingController components).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.QualitySettings.streamingMipmapsMaxFileIORequests">
- <summary>
- <para>The maximum number of active texture file IO requests from the texture streaming system.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.QualitySettings.streamingMipmapsMaxLevelReduction">
- <summary>
- <para>The maximum number of mipmap levels to discard for each texture.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.QualitySettings.streamingMipmapsMemoryBudget">
- <summary>
- <para>The total amount of memory to be used by streaming and non-streaming textures.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.QualitySettings.streamingMipmapsRenderersPerFrame">
- <summary>
- <para>Number of renderers used to process each frame during the calculation of desired mipmap levels for the associated textures.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.QualitySettings.vSyncCount">
- <summary>
- <para>The VSync Count.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.QualitySettings.DecreaseLevel(System.Boolean)">
- <summary>
- <para>Decrease the current quality level.</para>
- </summary>
- <param name="applyExpensiveChanges">Should expensive changes be applied (Anti-aliasing etc).</param>
- </member>
- <member name="M:UnityEngine.QualitySettings.GetQualityLevel">
- <summary>
- <para>Returns the current graphics quality level.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.QualitySettings.IncreaseLevel(System.Boolean)">
- <summary>
- <para>Increase the current quality level.</para>
- </summary>
- <param name="applyExpensiveChanges">Should expensive changes be applied (Anti-aliasing etc).</param>
- </member>
- <member name="M:UnityEngine.QualitySettings.SetQualityLevel(System.Int32,System.Boolean)">
- <summary>
- <para>Sets a new graphics quality level.</para>
- </summary>
- <param name="index">Quality index to set.</param>
- <param name="applyExpensiveChanges">Should expensive changes be applied (Anti-aliasing etc).</param>
- </member>
- <member name="T:UnityEngine.Quaternion">
- <summary>
- <para>Quaternions are used to represent rotations.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Quaternion.eulerAngles">
- <summary>
- <para>Returns the euler angle representation of the rotation.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Quaternion.identity">
- <summary>
- <para>The identity rotation (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Quaternion.normalized">
- <summary>
- <para>Returns this quaternion with a magnitude of 1 (Read Only).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Quaternion.w">
- <summary>
- <para>W component of the Quaternion. Don't modify this directly unless you know quaternions inside out.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Quaternion.x">
- <summary>
- <para>X component of the Quaternion. Don't modify this directly unless you know quaternions inside out.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Quaternion.y">
- <summary>
- <para>Y component of the Quaternion. Don't modify this directly unless you know quaternions inside out.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Quaternion.z">
- <summary>
- <para>Z component of the Quaternion. Don't modify this directly unless you know quaternions inside out.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Quaternion.Angle(UnityEngine.Quaternion,UnityEngine.Quaternion)">
- <summary>
- <para>Returns the angle in degrees between two rotations a and b.</para>
- </summary>
- <param name="a"></param>
- <param name="b"></param>
- </member>
- <member name="M:UnityEngine.Quaternion.AngleAxis(System.Single,UnityEngine.Vector3)">
- <summary>
- <para>Creates a rotation which rotates angle degrees around axis.</para>
- </summary>
- <param name="angle"></param>
- <param name="axis"></param>
- </member>
- <member name="M:UnityEngine.Quaternion.#ctor(System.Single,System.Single,System.Single,System.Single)">
- <summary>
- <para>Constructs new Quaternion with given x,y,z,w components.</para>
- </summary>
- <param name="x"></param>
- <param name="y"></param>
- <param name="z"></param>
- <param name="w"></param>
- </member>
- <member name="M:UnityEngine.Quaternion.Dot(UnityEngine.Quaternion,UnityEngine.Quaternion)">
- <summary>
- <para>The dot product between two rotations.</para>
- </summary>
- <param name="a"></param>
- <param name="b"></param>
- </member>
- <member name="M:UnityEngine.Quaternion.Euler(System.Single,System.Single,System.Single)">
- <summary>
- <para>Returns a rotation that rotates z degrees around the z axis, x degrees around the x axis, and y degrees around the y axis.</para>
- </summary>
- <param name="x"></param>
- <param name="y"></param>
- <param name="z"></param>
- </member>
- <member name="M:UnityEngine.Quaternion.Euler(UnityEngine.Vector3)">
- <summary>
- <para>Returns a rotation that rotates z degrees around the z axis, x degrees around the x axis, and y degrees around the y axis.</para>
- </summary>
- <param name="euler"></param>
- </member>
- <member name="M:UnityEngine.Quaternion.FromToRotation(UnityEngine.Vector3,UnityEngine.Vector3)">
- <summary>
- <para>Creates a rotation which rotates from fromDirection to toDirection.</para>
- </summary>
- <param name="fromDirection"></param>
- <param name="toDirection"></param>
- </member>
- <member name="M:UnityEngine.Quaternion.Inverse(UnityEngine.Quaternion)">
- <summary>
- <para>Returns the Inverse of rotation.</para>
- </summary>
- <param name="rotation"></param>
- </member>
- <member name="M:UnityEngine.Quaternion.Lerp(UnityEngine.Quaternion,UnityEngine.Quaternion,System.Single)">
- <summary>
- <para>Interpolates between a and b by t and normalizes the result afterwards. The parameter t is clamped to the range [0, 1].</para>
- </summary>
- <param name="a"></param>
- <param name="b"></param>
- <param name="t"></param>
- </member>
- <member name="M:UnityEngine.Quaternion.LerpUnclamped(UnityEngine.Quaternion,UnityEngine.Quaternion,System.Single)">
- <summary>
- <para>Interpolates between a and b by t and normalizes the result afterwards. The parameter t is not clamped.</para>
- </summary>
- <param name="a"></param>
- <param name="b"></param>
- <param name="t"></param>
- </member>
- <member name="M:UnityEngine.Quaternion.LookRotation(UnityEngine.Vector3)">
- <summary>
- <para>Creates a rotation with the specified forward and upwards directions.</para>
- </summary>
- <param name="forward">The direction to look in.</param>
- <param name="upwards">The vector that defines in which direction up is.</param>
- </member>
- <member name="M:UnityEngine.Quaternion.LookRotation(UnityEngine.Vector3,UnityEngine.Vector3)">
- <summary>
- <para>Creates a rotation with the specified forward and upwards directions.</para>
- </summary>
- <param name="forward">The direction to look in.</param>
- <param name="upwards">The vector that defines in which direction up is.</param>
- </member>
- <member name="M:UnityEngine.Quaternion.Normalize(UnityEngine.Quaternion)">
- <summary>
- <para>Converts this quaternion to one with the same orientation but with a magnitude of 1.</para>
- </summary>
- <param name="q"></param>
- </member>
- <member name="?:UnityEngine.Quaternion.op_Equal(UnityEngine.Quaternion,UnityEngine.Quaternion)">
- <summary>
- <para>Are two quaternions equal to each other?</para>
- </summary>
- <param name="lhs"></param>
- <param name="rhs"></param>
- </member>
- <member name="?:UnityEngine.Quaternion.op_Multiply(UnityEngine.Quaternion,UnityEngine.Quaternion)">
- <summary>
- <para>Combines rotations lhs and rhs.</para>
- </summary>
- <param name="lhs">Left-hand side quaternion.</param>
- <param name="rhs">Right-hand side quaternion.</param>
- </member>
- <member name="?:UnityEngine.Quaternion.op_Multiply(UnityEngine.Quaternion,UnityEngine.Vector3)">
- <summary>
- <para>Rotates the point point with rotation.</para>
- </summary>
- <param name="rotation"></param>
- <param name="point"></param>
- </member>
- <member name="M:UnityEngine.Quaternion.RotateTowards(UnityEngine.Quaternion,UnityEngine.Quaternion,System.Single)">
- <summary>
- <para>Rotates a rotation from towards to.</para>
- </summary>
- <param name="from"></param>
- <param name="to"></param>
- <param name="maxDegreesDelta"></param>
- </member>
- <member name="M:UnityEngine.Quaternion.Set(System.Single,System.Single,System.Single,System.Single)">
- <summary>
- <para>Set x, y, z and w components of an existing Quaternion.</para>
- </summary>
- <param name="newX"></param>
- <param name="newY"></param>
- <param name="newZ"></param>
- <param name="newW"></param>
- </member>
- <member name="M:UnityEngine.Quaternion.SetFromToRotation(UnityEngine.Vector3,UnityEngine.Vector3)">
- <summary>
- <para>Creates a rotation which rotates from fromDirection to toDirection.</para>
- </summary>
- <param name="fromDirection"></param>
- <param name="toDirection"></param>
- </member>
- <member name="M:UnityEngine.Quaternion.SetLookRotation(UnityEngine.Vector3)">
- <summary>
- <para>Creates a rotation with the specified forward and upwards directions.</para>
- </summary>
- <param name="view">The direction to look in.</param>
- <param name="up">The vector that defines in which direction up is.</param>
- </member>
- <member name="M:UnityEngine.Quaternion.SetLookRotation(UnityEngine.Vector3,UnityEngine.Vector3)">
- <summary>
- <para>Creates a rotation with the specified forward and upwards directions.</para>
- </summary>
- <param name="view">The direction to look in.</param>
- <param name="up">The vector that defines in which direction up is.</param>
- </member>
- <member name="M:UnityEngine.Quaternion.Slerp(UnityEngine.Quaternion,UnityEngine.Quaternion,System.Single)">
- <summary>
- <para>Spherically interpolates between a and b by t. The parameter t is clamped to the range [0, 1].</para>
- </summary>
- <param name="a"></param>
- <param name="b"></param>
- <param name="t"></param>
- </member>
- <member name="M:UnityEngine.Quaternion.SlerpUnclamped(UnityEngine.Quaternion,UnityEngine.Quaternion,System.Single)">
- <summary>
- <para>Spherically interpolates between a and b by t. The parameter t is not clamped.</para>
- </summary>
- <param name="a"></param>
- <param name="b"></param>
- <param name="t"></param>
- </member>
- <member name="P:UnityEngine.Quaternion.this">
- <summary>
- <para>Access the x, y, z, w components using [0], [1], [2], [3] respectively.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Quaternion.ToAngleAxis(System.Single&amp;,UnityEngine.Vector3&amp;)">
- <summary>
- <para>Converts a rotation to angle-axis representation (angles in degrees).</para>
- </summary>
- <param name="angle"></param>
- <param name="axis"></param>
- </member>
- <member name="M:UnityEngine.Quaternion.ToString">
- <summary>
- <para>Returns a nicely formatted string of the Quaternion.</para>
- </summary>
- <param name="format"></param>
- </member>
- <member name="M:UnityEngine.Quaternion.ToString(System.String)">
- <summary>
- <para>Returns a nicely formatted string of the Quaternion.</para>
- </summary>
- <param name="format"></param>
- </member>
- <member name="T:UnityEngine.Random">
- <summary>
- <para>Class for generating random data.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Random.insideUnitCircle">
- <summary>
- <para>Returns a random point inside a circle with radius 1 (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Random.insideUnitSphere">
- <summary>
- <para>Returns a random point inside a sphere with radius 1 (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Random.onUnitSphere">
- <summary>
- <para>Returns a random point on the surface of a sphere with radius 1 (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Random.rotation">
- <summary>
- <para>Returns a random rotation (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Random.rotationUniform">
- <summary>
- <para>Returns a random rotation with uniform distribution (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Random.state">
- <summary>
- <para>Gets/Sets the full internal state of the random number generator.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Random.value">
- <summary>
- <para>Returns a random number between 0.0 [inclusive] and 1.0 [inclusive] (Read Only).</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Random.ColorHSV">
- <summary>
- <para>Generates a random color from HSV and alpha ranges.</para>
- </summary>
- <param name="hueMin">Minimum hue [0..1].</param>
- <param name="hueMax">Maximum hue [0..1].</param>
- <param name="saturationMin">Minimum saturation [0..1].</param>
- <param name="saturationMax">Maximum saturation[0..1].</param>
- <param name="valueMin">Minimum value [0..1].</param>
- <param name="valueMax">Maximum value [0..1].</param>
- <param name="alphaMin">Minimum alpha [0..1].</param>
- <param name="alphaMax">Maximum alpha [0..1].</param>
- <returns>
- <para>A random color with HSV and alpha values in the input ranges.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Random.ColorHSV(System.Single,System.Single)">
- <summary>
- <para>Generates a random color from HSV and alpha ranges.</para>
- </summary>
- <param name="hueMin">Minimum hue [0..1].</param>
- <param name="hueMax">Maximum hue [0..1].</param>
- <param name="saturationMin">Minimum saturation [0..1].</param>
- <param name="saturationMax">Maximum saturation[0..1].</param>
- <param name="valueMin">Minimum value [0..1].</param>
- <param name="valueMax">Maximum value [0..1].</param>
- <param name="alphaMin">Minimum alpha [0..1].</param>
- <param name="alphaMax">Maximum alpha [0..1].</param>
- <returns>
- <para>A random color with HSV and alpha values in the input ranges.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Random.ColorHSV(System.Single,System.Single,System.Single,System.Single)">
- <summary>
- <para>Generates a random color from HSV and alpha ranges.</para>
- </summary>
- <param name="hueMin">Minimum hue [0..1].</param>
- <param name="hueMax">Maximum hue [0..1].</param>
- <param name="saturationMin">Minimum saturation [0..1].</param>
- <param name="saturationMax">Maximum saturation[0..1].</param>
- <param name="valueMin">Minimum value [0..1].</param>
- <param name="valueMax">Maximum value [0..1].</param>
- <param name="alphaMin">Minimum alpha [0..1].</param>
- <param name="alphaMax">Maximum alpha [0..1].</param>
- <returns>
- <para>A random color with HSV and alpha values in the input ranges.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Random.ColorHSV(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)">
- <summary>
- <para>Generates a random color from HSV and alpha ranges.</para>
- </summary>
- <param name="hueMin">Minimum hue [0..1].</param>
- <param name="hueMax">Maximum hue [0..1].</param>
- <param name="saturationMin">Minimum saturation [0..1].</param>
- <param name="saturationMax">Maximum saturation[0..1].</param>
- <param name="valueMin">Minimum value [0..1].</param>
- <param name="valueMax">Maximum value [0..1].</param>
- <param name="alphaMin">Minimum alpha [0..1].</param>
- <param name="alphaMax">Maximum alpha [0..1].</param>
- <returns>
- <para>A random color with HSV and alpha values in the input ranges.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Random.ColorHSV(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)">
- <summary>
- <para>Generates a random color from HSV and alpha ranges.</para>
- </summary>
- <param name="hueMin">Minimum hue [0..1].</param>
- <param name="hueMax">Maximum hue [0..1].</param>
- <param name="saturationMin">Minimum saturation [0..1].</param>
- <param name="saturationMax">Maximum saturation[0..1].</param>
- <param name="valueMin">Minimum value [0..1].</param>
- <param name="valueMax">Maximum value [0..1].</param>
- <param name="alphaMin">Minimum alpha [0..1].</param>
- <param name="alphaMax">Maximum alpha [0..1].</param>
- <returns>
- <para>A random color with HSV and alpha values in the input ranges.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Random.InitState(System.Int32)">
- <summary>
- <para>Initializes the random number generator state with a seed.</para>
- </summary>
- <param name="seed">Seed used to initialize the random number generator.</param>
- </member>
- <member name="M:UnityEngine.Random.Range(System.Single,System.Single)">
- <summary>
- <para>Returns a random float number between and min [inclusive] and max [inclusive] (Read Only).</para>
- </summary>
- <param name="min"></param>
- <param name="max"></param>
- </member>
- <member name="M:UnityEngine.Random.Range(System.Int32,System.Int32)">
- <summary>
- <para>Returns a random integer number between min [inclusive] and max [exclusive] (Read Only).</para>
- </summary>
- <param name="min"></param>
- <param name="max"></param>
- </member>
- <member name="T:UnityEngine.Random.State">
- <summary>
- <para>Serializable structure used to hold the full internal state of the random number generator. See Also: Random.state.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.RangeAttribute">
- <summary>
- <para>Attribute used to make a float or int variable in a script be restricted to a specific range.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.RangeAttribute.#ctor(System.Single,System.Single)">
- <summary>
- <para>Attribute used to make a float or int variable in a script be restricted to a specific range.</para>
- </summary>
- <param name="min">The minimum allowed value.</param>
- <param name="max">The maximum allowed value.</param>
- </member>
- <member name="T:UnityEngine.RangeInt">
- <summary>
- <para>Describes an integer range.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RangeInt.end">
- <summary>
- <para>The end index of the range (not inclusive).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RangeInt.length">
- <summary>
- <para>The length of the range.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RangeInt.start">
- <summary>
- <para>The starting index of the range, where 0 is the first position, 1 is the second, 2 is the third, and so on.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.RangeInt.#ctor(System.Int32,System.Int32)">
- <summary>
- <para>Constructs a new RangeInt with given start, length values.</para>
- </summary>
- <param name="start">The starting index of the range.</param>
- <param name="length">The length of the range.</param>
- </member>
- <member name="T:UnityEngine.Ray">
- <summary>
- <para>Representation of rays.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Ray.direction">
- <summary>
- <para>The direction of the ray.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Ray.origin">
- <summary>
- <para>The origin point of the ray.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Ray.#ctor(UnityEngine.Vector3,UnityEngine.Vector3)">
- <summary>
- <para>Creates a ray starting at origin along direction.</para>
- </summary>
- <param name="origin"></param>
- <param name="direction"></param>
- </member>
- <member name="M:UnityEngine.Ray.GetPoint(System.Single)">
- <summary>
- <para>Returns a point at distance units along the ray.</para>
- </summary>
- <param name="distance"></param>
- </member>
- <member name="M:UnityEngine.Ray.ToString">
- <summary>
- <para>Returns a nicely formatted string for this ray.</para>
- </summary>
- <param name="format"></param>
- </member>
- <member name="M:UnityEngine.Ray.ToString(System.String)">
- <summary>
- <para>Returns a nicely formatted string for this ray.</para>
- </summary>
- <param name="format"></param>
- </member>
- <member name="T:UnityEngine.Ray2D">
- <summary>
- <para>A ray in 2D space.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Ray2D.direction">
- <summary>
- <para>The direction of the ray in world space.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Ray2D.origin">
- <summary>
- <para>The starting point of the ray in world space.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Ray2D.#ctor(UnityEngine.Vector2,UnityEngine.Vector2)">
- <summary>
- <para>Creates a 2D ray starting at origin along direction.</para>
- </summary>
- <param name="Vector2">origin</param>
- <param name="Vector2">direction</param>
- <param name="origin"></param>
- <param name="direction"></param>
- </member>
- <member name="M:UnityEngine.Ray2D.GetPoint(System.Single)">
- <summary>
- <para>Get a point that lies a given distance along a ray.</para>
- </summary>
- <param name="distance">Distance of the desired point along the path of the ray.</param>
- </member>
- <member name="T:UnityEngine.Rect">
- <summary>
- <para>A 2D Rectangle defined by X and Y position, width and height.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rect.center">
- <summary>
- <para>The position of the center of the rectangle.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rect.height">
- <summary>
- <para>The height of the rectangle, measured from the Y position.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rect.max">
- <summary>
- <para>The position of the maximum corner of the rectangle.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rect.min">
- <summary>
- <para>The position of the minimum corner of the rectangle.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rect.position">
- <summary>
- <para>The X and Y position of the rectangle.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rect.size">
- <summary>
- <para>The width and height of the rectangle.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rect.width">
- <summary>
- <para>The width of the rectangle, measured from the X position.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rect.x">
- <summary>
- <para>The X coordinate of the rectangle.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rect.xMax">
- <summary>
- <para>The maximum X coordinate of the rectangle.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rect.xMin">
- <summary>
- <para>The minimum X coordinate of the rectangle.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rect.y">
- <summary>
- <para>The Y coordinate of the rectangle.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rect.yMax">
- <summary>
- <para>The maximum Y coordinate of the rectangle.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rect.yMin">
- <summary>
- <para>The minimum Y coordinate of the rectangle.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rect.zero">
- <summary>
- <para>Shorthand for writing new Rect(0,0,0,0).</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Rect.Contains(UnityEngine.Vector2)">
- <summary>
- <para>Returns true if the x and y components of point is a point inside this rectangle. If allowInverse is present and true, the width and height of the Rect are allowed to take negative values (ie, the min value is greater than the max), and the test will still work.</para>
- </summary>
- <param name="point">Point to test.</param>
- <param name="allowInverse">Does the test allow the Rect's width and height to be negative?</param>
- <returns>
- <para>True if the point lies within the specified rectangle.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Rect.Contains(UnityEngine.Vector3)">
- <summary>
- <para>Returns true if the x and y components of point is a point inside this rectangle. If allowInverse is present and true, the width and height of the Rect are allowed to take negative values (ie, the min value is greater than the max), and the test will still work.</para>
- </summary>
- <param name="point">Point to test.</param>
- <param name="allowInverse">Does the test allow the Rect's width and height to be negative?</param>
- <returns>
- <para>True if the point lies within the specified rectangle.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Rect.Contains(UnityEngine.Vector3,System.Boolean)">
- <summary>
- <para>Returns true if the x and y components of point is a point inside this rectangle. If allowInverse is present and true, the width and height of the Rect are allowed to take negative values (ie, the min value is greater than the max), and the test will still work.</para>
- </summary>
- <param name="point">Point to test.</param>
- <param name="allowInverse">Does the test allow the Rect's width and height to be negative?</param>
- <returns>
- <para>True if the point lies within the specified rectangle.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Rect.#ctor(System.Single,System.Single,System.Single,System.Single)">
- <summary>
- <para>Creates a new rectangle.</para>
- </summary>
- <param name="x">The X value the rect is measured from.</param>
- <param name="y">The Y value the rect is measured from.</param>
- <param name="width">The width of the rectangle.</param>
- <param name="height">The height of the rectangle.</param>
- </member>
- <member name="M:UnityEngine.Rect.#ctor(UnityEngine.Rect)">
- <summary>
- <para></para>
- </summary>
- <param name="source"></param>
- </member>
- <member name="M:UnityEngine.Rect.#ctor(UnityEngine.Vector2,UnityEngine.Vector2)">
- <summary>
- <para>Creates a rectangle given a size and position.</para>
- </summary>
- <param name="position">The position of the minimum corner of the rect.</param>
- <param name="size">The width and height of the rect.</param>
- </member>
- <member name="M:UnityEngine.Rect.MinMaxRect(System.Single,System.Single,System.Single,System.Single)">
- <summary>
- <para>Creates a rectangle from min/max coordinate values.</para>
- </summary>
- <param name="xmin">The minimum X coordinate.</param>
- <param name="ymin">The minimum Y coordinate.</param>
- <param name="xmax">The maximum X coordinate.</param>
- <param name="ymax">The maximum Y coordinate.</param>
- <returns>
- <para>A rectangle matching the specified coordinates.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Rect.NormalizedToPoint(UnityEngine.Rect,UnityEngine.Vector2)">
- <summary>
- <para>Returns a point inside a rectangle, given normalized coordinates.</para>
- </summary>
- <param name="rectangle">Rectangle to get a point inside.</param>
- <param name="normalizedRectCoordinates">Normalized coordinates to get a point for.</param>
- </member>
- <member name="?:UnityEngine.Rect.op_Equal(UnityEngine.Rect,UnityEngine.Rect)">
- <summary>
- <para>Returns true if the rectangles are the same.</para>
- </summary>
- <param name="lhs"></param>
- <param name="rhs"></param>
- </member>
- <member name="M:UnityEngine.Rect.Overlaps(UnityEngine.Rect)">
- <summary>
- <para>Returns true if the other rectangle overlaps this one. If allowInverse is present and true, the widths and heights of the Rects are allowed to take negative values (ie, the min value is greater than the max), and the test will still work.</para>
- </summary>
- <param name="other">Other rectangle to test overlapping with.</param>
- <param name="allowInverse">Does the test allow the widths and heights of the Rects to be negative?</param>
- </member>
- <member name="M:UnityEngine.Rect.Overlaps(UnityEngine.Rect,System.Boolean)">
- <summary>
- <para>Returns true if the other rectangle overlaps this one. If allowInverse is present and true, the widths and heights of the Rects are allowed to take negative values (ie, the min value is greater than the max), and the test will still work.</para>
- </summary>
- <param name="other">Other rectangle to test overlapping with.</param>
- <param name="allowInverse">Does the test allow the widths and heights of the Rects to be negative?</param>
- </member>
- <member name="M:UnityEngine.Rect.PointToNormalized(UnityEngine.Rect,UnityEngine.Vector2)">
- <summary>
- <para>Returns the normalized coordinates cooresponding the the point.</para>
- </summary>
- <param name="rectangle">Rectangle to get normalized coordinates inside.</param>
- <param name="point">A point inside the rectangle to get normalized coordinates for.</param>
- </member>
- <member name="M:UnityEngine.Rect.Set(System.Single,System.Single,System.Single,System.Single)">
- <summary>
- <para>Set components of an existing Rect.</para>
- </summary>
- <param name="x"></param>
- <param name="y"></param>
- <param name="width"></param>
- <param name="height"></param>
- </member>
- <member name="M:UnityEngine.Rect.ToString">
- <summary>
- <para>Returns a nicely formatted string for this Rect.</para>
- </summary>
- <param name="format"></param>
- </member>
- <member name="M:UnityEngine.Rect.ToString(System.String)">
- <summary>
- <para>Returns a nicely formatted string for this Rect.</para>
- </summary>
- <param name="format"></param>
- </member>
- <member name="T:UnityEngine.RectInt">
- <summary>
- <para>A 2D Rectangle defined by x, y, width, height with integers.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RectInt.allPositionsWithin">
- <summary>
- <para>A RectInt.PositionCollection that contains all positions within the RectInt.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RectInt.center">
- <summary>
- <para>Center coordinate of the rectangle.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RectInt.height">
- <summary>
- <para>Height of the rectangle.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RectInt.max">
- <summary>
- <para>Upper right corner of the rectangle.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RectInt.min">
- <summary>
- <para>Lower left corner of the rectangle.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RectInt.position">
- <summary>
- <para>Returns the position (x, y) of the RectInt.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RectInt.size">
- <summary>
- <para>Returns the width and height of the RectInt.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RectInt.width">
- <summary>
- <para>Width of the rectangle.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RectInt.x">
- <summary>
- <para>Left coordinate of the rectangle.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RectInt.xMax">
- <summary>
- <para>Returns the maximum X value of the RectInt.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RectInt.xMin">
- <summary>
- <para>Returns the minimum X value of the RectInt.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RectInt.y">
- <summary>
- <para>Top coordinate of the rectangle.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RectInt.yMax">
- <summary>
- <para>Returns the maximum Y value of the RectInt.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RectInt.yMin">
- <summary>
- <para>Returns the minimum Y value of the RectInt.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.RectInt.ClampToBounds(UnityEngine.RectInt)">
- <summary>
- <para>Clamps the position and size of the RectInt to the given bounds.</para>
- </summary>
- <param name="bounds">Bounds to clamp the RectInt.</param>
- </member>
- <member name="M:UnityEngine.RectInt.Contains(UnityEngine.Vector2Int)">
- <summary>
- <para>Returns true if the given position is within the RectInt.</para>
- </summary>
- <param name="position">Position to check.</param>
- <param name="inclusive">Whether the max limits are included in the check.</param>
- <returns>
- <para>Whether the position is within the RectInt.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.RectInt.Contains">
- <summary>
- <para>Returns true if the given position is within the RectInt.</para>
- </summary>
- <param name="position">Position to check.</param>
- <param name="inclusive">Whether the max limits are included in the check.</param>
- <returns>
- <para>Whether the position is within the RectInt.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.RectInt.PositionEnumerator">
- <summary>
- <para>An iterator that allows you to iterate over all positions within the RectInt.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RectInt.PositionEnumerator.Current">
- <summary>
- <para>Current position of the enumerator.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.RectInt.PositionEnumerator.GetEnumerator">
- <summary>
- <para>Returns this as an iterator that allows you to iterate over all positions within the RectInt.</para>
- </summary>
- <returns>
- <para>This RectInt.PositionEnumerator.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.RectInt.PositionEnumerator.MoveNext">
- <summary>
- <para>Moves the enumerator to the next position.</para>
- </summary>
- <returns>
- <para>Whether the enumerator has successfully moved to the next position.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.RectInt.PositionEnumerator.Reset">
- <summary>
- <para>Resets this enumerator to its starting state.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.RectInt.SetMinMax(UnityEngine.Vector2Int,UnityEngine.Vector2Int)">
- <summary>
- <para>Sets the bounds to the min and max value of the rect.</para>
- </summary>
- <param name="minPosition"></param>
- <param name="maxPosition"></param>
- </member>
- <member name="M:UnityEngine.RectInt.ToString">
- <summary>
- <para>Returns the x, y, width and height of the RectInt.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.RectOffset">
- <summary>
- <para>Offsets for rectangles, borders, etc.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RectOffset.bottom">
- <summary>
- <para>Bottom edge size.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RectOffset.horizontal">
- <summary>
- <para>Shortcut for left + right. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RectOffset.left">
- <summary>
- <para>Left edge size.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RectOffset.right">
- <summary>
- <para>Right edge size.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RectOffset.top">
- <summary>
- <para>Top edge size.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RectOffset.vertical">
- <summary>
- <para>Shortcut for top + bottom. (Read Only)</para>
- </summary>
- </member>
- <member name="M:UnityEngine.RectOffset.Add(UnityEngine.Rect)">
- <summary>
- <para>Add the border offsets to a rect.</para>
- </summary>
- <param name="rect"></param>
- </member>
- <member name="M:UnityEngine.RectOffset.#ctor">
- <summary>
- <para>Creates a new rectangle with offsets.</para>
- </summary>
- <param name="left"></param>
- <param name="right"></param>
- <param name="top"></param>
- <param name="bottom"></param>
- </member>
- <member name="M:UnityEngine.RectOffset.#ctor(System.Int32,System.Int32,System.Int32,System.Int32)">
- <summary>
- <para>Creates a new rectangle with offsets.</para>
- </summary>
- <param name="left"></param>
- <param name="right"></param>
- <param name="top"></param>
- <param name="bottom"></param>
- </member>
- <member name="M:UnityEngine.RectOffset.Remove(UnityEngine.Rect)">
- <summary>
- <para>Remove the border offsets from a rect.</para>
- </summary>
- <param name="rect"></param>
- </member>
- <member name="T:UnityEngine.RectTransform">
- <summary>
- <para>Position, size, anchor and pivot information for a rectangle.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RectTransform.anchoredPosition">
- <summary>
- <para>The position of the pivot of this RectTransform relative to the anchor reference point.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RectTransform.anchoredPosition3D">
- <summary>
- <para>The 3D position of the pivot of this RectTransform relative to the anchor reference point.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RectTransform.anchorMax">
- <summary>
- <para>The normalized position in the parent RectTransform that the upper right corner is anchored to.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RectTransform.anchorMin">
- <summary>
- <para>The normalized position in the parent RectTransform that the lower left corner is anchored to.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RectTransform.offsetMax">
- <summary>
- <para>The offset of the upper right corner of the rectangle relative to the upper right anchor.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RectTransform.offsetMin">
- <summary>
- <para>The offset of the lower left corner of the rectangle relative to the lower left anchor.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RectTransform.pivot">
- <summary>
- <para>The normalized position in this RectTransform that it rotates around.</para>
- </summary>
- </member>
- <member name="?:UnityEngine.RectTransform.reapplyDrivenProperties(UnityEngine.RectTransform/ReapplyDrivenProperties)">
- <summary>
- <para>Event that is invoked for RectTransforms that need to have their driven properties reapplied.</para>
- </summary>
- <param name="value"></param>
- </member>
- <member name="P:UnityEngine.RectTransform.rect">
- <summary>
- <para>The calculated rectangle in the local space of the Transform.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RectTransform.sizeDelta">
- <summary>
- <para>The size of this RectTransform relative to the distances between the anchors.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.RectTransform.Axis">
- <summary>
- <para>An axis that can be horizontal or vertical.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RectTransform.Axis.Horizontal">
- <summary>
- <para>Horizontal.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RectTransform.Axis.Vertical">
- <summary>
- <para>Vertical.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.RectTransform.Edge">
- <summary>
- <para>Enum used to specify one edge of a rectangle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RectTransform.Edge.Bottom">
- <summary>
- <para>The bottom edge.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RectTransform.Edge.Left">
- <summary>
- <para>The left edge.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RectTransform.Edge.Right">
- <summary>
- <para>The right edge.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RectTransform.Edge.Top">
- <summary>
- <para>The top edge.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.RectTransform.ForceUpdateRectTransforms">
- <summary>
- <para>Force the recalculation of RectTransforms internal data.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.RectTransform.GetLocalCorners(UnityEngine.Vector3[])">
- <summary>
- <para>Get the corners of the calculated rectangle in the local space of its Transform.</para>
- </summary>
- <param name="fourCornersArray">The array that corners are filled into.</param>
- </member>
- <member name="M:UnityEngine.RectTransform.GetWorldCorners(UnityEngine.Vector3[])">
- <summary>
- <para>Get the corners of the calculated rectangle in world space.</para>
- </summary>
- <param name="fourCornersArray">The ray that corners are filled into.</param>
- </member>
- <member name="T:UnityEngine.RectTransform.ReapplyDrivenProperties">
- <summary>
- <para>Delegate used for the reapplyDrivenProperties event.</para>
- </summary>
- <param name="driven"></param>
- </member>
- <member name="M:UnityEngine.RectTransform.SetInsetAndSizeFromParentEdge(UnityEngine.RectTransform/Edge,System.Single,System.Single)">
- <summary>
- <para>Set the distance of this rectangle relative to a specified edge of the parent rectangle, while also setting its size.</para>
- </summary>
- <param name="edge">The edge of the parent rectangle to inset from.</param>
- <param name="inset">The inset distance.</param>
- <param name="size">The size of the rectangle along the same direction of the inset.</param>
- </member>
- <member name="M:UnityEngine.RectTransform.SetSizeWithCurrentAnchors(UnityEngine.RectTransform/Axis,System.Single)">
- <summary>
- <para>Makes the RectTransform calculated rect be a given size on the specified axis.</para>
- </summary>
- <param name="axis">The axis to specify the size along.</param>
- <param name="size">The desired size along the specified axis.</param>
- </member>
- <member name="T:UnityEngine.ReflectionProbe">
- <summary>
- <para>The reflection probe is used to capture the surroundings into a texture which is passed to the shaders and used for reflections.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ReflectionProbe.backgroundColor">
- <summary>
- <para>The color with which the texture of reflection probe will be cleared.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ReflectionProbe.bakedTexture">
- <summary>
- <para>Reference to the baked texture of the reflection probe's surrounding.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ReflectionProbe.blendDistance">
- <summary>
- <para>Distance around probe used for blending (used in deferred probes).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ReflectionProbe.bounds">
- <summary>
- <para>The bounding volume of the reflection probe (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ReflectionProbe.boxProjection">
- <summary>
- <para>Should this reflection probe use box projection?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ReflectionProbe.center">
- <summary>
- <para>The center of the box area in which reflections will be applied to the objects. Measured in the probes's local space.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ReflectionProbe.clearFlags">
- <summary>
- <para>How the reflection probe clears the background.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ReflectionProbe.cullingMask">
- <summary>
- <para>This is used to render parts of the reflecion probe's surrounding selectively.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ReflectionProbe.customBakedTexture">
- <summary>
- <para>Reference to the baked texture of the reflection probe's surrounding. Use this to assign custom reflection texture.</para>
- </summary>
- </member>
- <member name="?:UnityEngine.ReflectionProbe.defaultReflectionSet(System.Action`1&lt;UnityEngine.Cubemap&gt;)">
- <summary>
- <para>Adds a delegate to get notifications when the default specular Cubemap is changed.</para>
- </summary>
- <param name="value"></param>
- </member>
- <member name="P:UnityEngine.ReflectionProbe.defaultTexture">
- <summary>
- <para>Texture which is used outside of all reflection probes (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ReflectionProbe.defaultTextureHDRDecodeValues">
- <summary>
- <para>HDR decode values of the default reflection probe texture.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ReflectionProbe.farClipPlane">
- <summary>
- <para>The far clipping plane distance when rendering the probe.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ReflectionProbe.hdr">
- <summary>
- <para>Should this reflection probe use HDR rendering?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ReflectionProbe.importance">
- <summary>
- <para>Reflection probe importance.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ReflectionProbe.intensity">
- <summary>
- <para>The intensity modifier that is applied to the texture of reflection probe in the shader.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ReflectionProbe.mode">
- <summary>
- <para>Should reflection probe texture be generated in the Editor (ReflectionProbeMode.Baked) or should probe use custom specified texure (ReflectionProbeMode.Custom)?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ReflectionProbe.nearClipPlane">
- <summary>
- <para>The near clipping plane distance when rendering the probe.</para>
- </summary>
- </member>
- <member name="?:UnityEngine.ReflectionProbe.reflectionProbeChanged(System.Action`2&lt;UnityEngine.ReflectionProbe,UnityEngine.ReflectionProbe/ReflectionProbeEvent&gt;)">
- <summary>
- <para>Adds a delegate to get notifications when a Reflection Probe is added to a scene or removed from a scene.</para>
- </summary>
- <param name="value"></param>
- </member>
- <member name="P:UnityEngine.ReflectionProbe.refreshMode">
- <summary>
- <para>Sets the way the probe will refresh.
-
-See Also: ReflectionProbeRefreshMode.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ReflectionProbe.resolution">
- <summary>
- <para>Resolution of the underlying reflection texture in pixels.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ReflectionProbe.shadowDistance">
- <summary>
- <para>Shadow drawing distance when rendering the probe.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ReflectionProbe.size">
- <summary>
- <para>The size of the box area in which reflections will be applied to the objects. Measured in the probes's local space.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ReflectionProbe.texture">
- <summary>
- <para>Texture which is passed to the shader of the objects in the vicinity of the reflection probe (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ReflectionProbe.textureHDRDecodeValues">
- <summary>
- <para>HDR decode values of the reflection probe texture.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ReflectionProbe.timeSlicingMode">
- <summary>
- <para>Sets this probe time-slicing mode
-
-See Also: ReflectionProbeTimeSlicingMode.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.ReflectionProbe.BlendCubemap(UnityEngine.Texture,UnityEngine.Texture,System.Single,UnityEngine.RenderTexture)">
- <summary>
- <para>Utility method to blend 2 cubemaps into a target render texture.</para>
- </summary>
- <param name="src">Cubemap to blend from.</param>
- <param name="dst">Cubemap to blend to.</param>
- <param name="blend">Blend weight.</param>
- <param name="target">RenderTexture which will hold the result of the blend.</param>
- <returns>
- <para>Returns trues if cubemaps were blended, false otherwise.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.ReflectionProbe.IsFinishedRendering(System.Int32)">
- <summary>
- <para>Checks if a probe has finished a time-sliced render.</para>
- </summary>
- <param name="renderId">An integer representing the RenderID as returned by the RenderProbe method.</param>
- <returns>
- <para>
- True if the render has finished, false otherwise.
-
- See Also: timeSlicingMode
- </para>
- </returns>
- </member>
- <member name="T:UnityEngine.ReflectionProbe.ReflectionProbeEvent">
- <summary>
- <para>Types of events that occur when ReflectionProbe components are used in a scene.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ReflectionProbe.ReflectionProbeEvent.ReflectionProbeAdded">
- <summary>
- <para>An event that occurs when a Reflection Probe component is added to a scene or enabled in a scene.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ReflectionProbe.ReflectionProbeEvent.ReflectionProbeRemoved">
- <summary>
- <para>An event that occurs when a Reflection Probe component is unloaded from a scene or disabled in a scene.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.ReflectionProbe.RenderProbe(UnityEngine.RenderTexture)">
- <summary>
- <para>Refreshes the probe's cubemap.</para>
- </summary>
- <param name="targetTexture">Target RendeTexture in which rendering should be done. Specifying null will update the probe's default texture.</param>
- <returns>
- <para>
- An integer representing a RenderID which can subsequently be used to check if the probe has finished rendering while rendering in time-slice mode.
-
- See Also: IsFinishedRendering
- See Also: timeSlicingMode
- </para>
- </returns>
- </member>
- <member name="T:UnityEngine.RenderBuffer">
- <summary>
- <para>Color or depth buffer part of a RenderTexture.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.RenderBuffer.GetNativeRenderBufferPtr">
- <summary>
- <para>Returns native RenderBuffer. Be warned this is not native Texture, but rather pointer to unity struct that can be used with native unity API. Currently such API exists only on iOS.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Renderer">
- <summary>
- <para>General functionality for all renderers.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Renderer.allowOcclusionWhenDynamic">
- <summary>
- <para>Controls if dynamic occlusion culling should be performed for this renderer.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Renderer.bounds">
- <summary>
- <para>The bounding volume of the renderer (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Renderer.enabled">
- <summary>
- <para>Makes the rendered 3D object visible if enabled.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Renderer.isPartOfStaticBatch">
- <summary>
- <para>Has this renderer been statically batched with any other renderers?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Renderer.isVisible">
- <summary>
- <para>Is this renderer visible in any camera? (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Renderer.lightmapIndex">
- <summary>
- <para>The index of the baked lightmap applied to this renderer.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Renderer.lightmapScaleOffset">
- <summary>
- <para>The UV scale &amp; offset used for a lightmap.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Renderer.lightProbeProxyVolumeOverride">
- <summary>
- <para>If set, the Renderer will use the Light Probe Proxy Volume component attached to the source GameObject.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Renderer.lightProbeUsage">
- <summary>
- <para>The light probe interpolation type.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Renderer.localToWorldMatrix">
- <summary>
- <para>Matrix that transforms a point from local space into world space (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Renderer.material">
- <summary>
- <para>Returns the first instantiated Material assigned to the renderer.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Renderer.materials">
- <summary>
- <para>Returns all the instantiated materials of this object.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Renderer.motionVectorGenerationMode">
- <summary>
- <para>Specifies the mode for motion vector rendering.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Renderer.motionVectors">
- <summary>
- <para>Specifies whether this renderer has a per-object motion vector pass.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Renderer.probeAnchor">
- <summary>
- <para>If set, Renderer will use this Transform's position to find the light or reflection probe.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Renderer.realtimeLightmapIndex">
- <summary>
- <para>The index of the realtime lightmap applied to this renderer.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Renderer.realtimeLightmapScaleOffset">
- <summary>
- <para>The UV scale &amp; offset used for a realtime lightmap.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Renderer.receiveShadows">
- <summary>
- <para>Does this object receive shadows?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Renderer.reflectionProbeUsage">
- <summary>
- <para>Should reflection probes be used for this Renderer?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Renderer.renderingLayerMask">
- <summary>
- <para>Determines which rendering layer this renderer lives on.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Renderer.shadowCastingMode">
- <summary>
- <para>Does this object cast shadows?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Renderer.sharedMaterial">
- <summary>
- <para>The shared material of this object.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Renderer.sharedMaterials">
- <summary>
- <para>All the shared materials of this object.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Renderer.sortingLayerID">
- <summary>
- <para>Unique ID of the Renderer's sorting layer.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Renderer.sortingLayerName">
- <summary>
- <para>Name of the Renderer's sorting layer.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Renderer.sortingOrder">
- <summary>
- <para>Renderer's order within a sorting layer.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Renderer.useLightProbes">
- <summary>
- <para>Should light probes be used for this Renderer?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Renderer.worldToLocalMatrix">
- <summary>
- <para>Matrix that transforms a point from world space into local space (Read Only).</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Renderer.GetClosestReflectionProbes(System.Collections.Generic.List`1&lt;UnityEngine.Rendering.ReflectionProbeBlendInfo&gt;)">
- <summary>
- <para>Returns an array of closest reflection probes with weights, weight shows how much influence the probe has on the renderer, this value is also used when blending between reflection probes occur.</para>
- </summary>
- <param name="result"></param>
- </member>
- <member name="M:UnityEngine.Renderer.GetMaterials(System.Collections.Generic.List`1&lt;UnityEngine.Material&gt;)">
- <summary>
- <para>Returns all the instantiated materials of this object.</para>
- </summary>
- <param name="m">A list of materials to populate.</param>
- </member>
- <member name="M:UnityEngine.Renderer.GetPropertyBlock(UnityEngine.MaterialPropertyBlock)">
- <summary>
- <para>Get per-Renderer or per-Material property block.</para>
- </summary>
- <param name="properties">Material parameters to retrieve.</param>
- <param name="materialIndex">The index of the Material you want to get overridden parameters from. The index ranges from 0 to Renderer.sharedMaterials.Length-1.</param>
- </member>
- <member name="M:UnityEngine.Renderer.GetPropertyBlock(UnityEngine.MaterialPropertyBlock,System.Int32)">
- <summary>
- <para>Get per-Renderer or per-Material property block.</para>
- </summary>
- <param name="properties">Material parameters to retrieve.</param>
- <param name="materialIndex">The index of the Material you want to get overridden parameters from. The index ranges from 0 to Renderer.sharedMaterials.Length-1.</param>
- </member>
- <member name="M:UnityEngine.Renderer.GetSharedMaterials(System.Collections.Generic.List`1&lt;UnityEngine.Material&gt;)">
- <summary>
- <para>Returns all the shared materials of this object.</para>
- </summary>
- <param name="m">A list of materials to populate.</param>
- </member>
- <member name="M:UnityEngine.Renderer.HasPropertyBlock">
- <summary>
- <para>Returns true if the Renderer has a material property block attached via SetPropertyBlock.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Renderer.SetPropertyBlock(UnityEngine.MaterialPropertyBlock)">
- <summary>
- <para>Lets you set or clear per-renderer or per-material parameter overrides.</para>
- </summary>
- <param name="properties">Property block with values you want to override.</param>
- <param name="materialIndex">The index of the Material you want to override the parameters of. The index ranges from 0 to Renderer.sharedMaterial.Length-1.</param>
- </member>
- <member name="M:UnityEngine.Renderer.SetPropertyBlock(UnityEngine.MaterialPropertyBlock,System.Int32)">
- <summary>
- <para>Lets you set or clear per-renderer or per-material parameter overrides.</para>
- </summary>
- <param name="properties">Property block with values you want to override.</param>
- <param name="materialIndex">The index of the Material you want to override the parameters of. The index ranges from 0 to Renderer.sharedMaterial.Length-1.</param>
- </member>
- <member name="T:UnityEngine.RendererExtensions">
- <summary>
- <para>Extension methods to the Renderer class, used only for the UpdateGIMaterials method used by the Global Illumination System.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.RendererExtensions.UpdateGIMaterials(UnityEngine.Renderer)">
- <summary>
- <para>Schedules an update of the albedo and emissive Textures of a system that contains the Renderer.</para>
- </summary>
- <param name="renderer"></param>
- </member>
- <member name="T:UnityEngine.Rendering.AmbientMode">
- <summary>
- <para>Ambient lighting mode.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.AmbientMode.Custom">
- <summary>
- <para>Ambient lighting is defined by a custom cubemap.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.AmbientMode.Flat">
- <summary>
- <para>Flat ambient lighting.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.AmbientMode.Skybox">
- <summary>
- <para>Skybox-based or custom ambient lighting.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.AmbientMode.Trilight">
- <summary>
- <para>Trilight ambient lighting.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Rendering.AsyncGPUReadback">
- <summary>
- <para>Allows the asynchronous read back of GPU resources.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Rendering.AsyncGPUReadback.Request(UnityEngine.ComputeBuffer)">
- <summary>
- <para>Triggers a request to asynchronously fetch the data from a GPU resource.</para>
- </summary>
- <param name="src">The resource to read the data from.</param>
- <param name="size">Size in bytes of the data to be retrieved from the ComputeBuffer.</param>
- <param name="offset">Offset in bytes in the ComputeBuffer.</param>
- <param name="mipIndex">The index of the mipmap to be fetched.</param>
- <param name="dstFormat">The target TextureFormat of the data. Conversion will happen automatically if format is different from the format stored on GPU.</param>
- <param name="x">Starting X coordinate in pixels of the Texture data to be fetched.</param>
- <param name="width">Width in pixels of the Texture data to be fetched.</param>
- <param name="y">Starting Y coordinate in pixels of the Texture data to be fetched.</param>
- <param name="height">Height in pixels of the Texture data to be fetched.</param>
- <param name="z">Start Z coordinate in pixels for the Texture3D being fetched. Index of Start layer for TextureCube, Texture2DArray and TextureCubeArray being fetched.</param>
- <param name="depth">Depth in pixels for Texture3D being fetched. Number of layers for TextureCube, TextureArray and TextureCubeArray.</param>
- <param name="callback">An optional delegate System.Action called once the request is fullfilled. The done request is passed as parameter to the System.Action.</param>
- <returns>
- <para>An AsyncGPUReadbackRequest that can be used to both access the data and check whether it is available.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Rendering.AsyncGPUReadback.Request(UnityEngine.ComputeBuffer,System.Int32,System.Int32)">
- <summary>
- <para>Triggers a request to asynchronously fetch the data from a GPU resource.</para>
- </summary>
- <param name="src">The resource to read the data from.</param>
- <param name="size">Size in bytes of the data to be retrieved from the ComputeBuffer.</param>
- <param name="offset">Offset in bytes in the ComputeBuffer.</param>
- <param name="mipIndex">The index of the mipmap to be fetched.</param>
- <param name="dstFormat">The target TextureFormat of the data. Conversion will happen automatically if format is different from the format stored on GPU.</param>
- <param name="x">Starting X coordinate in pixels of the Texture data to be fetched.</param>
- <param name="width">Width in pixels of the Texture data to be fetched.</param>
- <param name="y">Starting Y coordinate in pixels of the Texture data to be fetched.</param>
- <param name="height">Height in pixels of the Texture data to be fetched.</param>
- <param name="z">Start Z coordinate in pixels for the Texture3D being fetched. Index of Start layer for TextureCube, Texture2DArray and TextureCubeArray being fetched.</param>
- <param name="depth">Depth in pixels for Texture3D being fetched. Number of layers for TextureCube, TextureArray and TextureCubeArray.</param>
- <param name="callback">An optional delegate System.Action called once the request is fullfilled. The done request is passed as parameter to the System.Action.</param>
- <returns>
- <para>An AsyncGPUReadbackRequest that can be used to both access the data and check whether it is available.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Rendering.AsyncGPUReadback.Request(UnityEngine.Texture,System.Int32)">
- <summary>
- <para>Triggers a request to asynchronously fetch the data from a GPU resource.</para>
- </summary>
- <param name="src">The resource to read the data from.</param>
- <param name="size">Size in bytes of the data to be retrieved from the ComputeBuffer.</param>
- <param name="offset">Offset in bytes in the ComputeBuffer.</param>
- <param name="mipIndex">The index of the mipmap to be fetched.</param>
- <param name="dstFormat">The target TextureFormat of the data. Conversion will happen automatically if format is different from the format stored on GPU.</param>
- <param name="x">Starting X coordinate in pixels of the Texture data to be fetched.</param>
- <param name="width">Width in pixels of the Texture data to be fetched.</param>
- <param name="y">Starting Y coordinate in pixels of the Texture data to be fetched.</param>
- <param name="height">Height in pixels of the Texture data to be fetched.</param>
- <param name="z">Start Z coordinate in pixels for the Texture3D being fetched. Index of Start layer for TextureCube, Texture2DArray and TextureCubeArray being fetched.</param>
- <param name="depth">Depth in pixels for Texture3D being fetched. Number of layers for TextureCube, TextureArray and TextureCubeArray.</param>
- <param name="callback">An optional delegate System.Action called once the request is fullfilled. The done request is passed as parameter to the System.Action.</param>
- <returns>
- <para>An AsyncGPUReadbackRequest that can be used to both access the data and check whether it is available.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Rendering.AsyncGPUReadback.Request(UnityEngine.Texture,System.Int32,UnityEngine.TextureFormat)">
- <summary>
- <para>Triggers a request to asynchronously fetch the data from a GPU resource.</para>
- </summary>
- <param name="src">The resource to read the data from.</param>
- <param name="size">Size in bytes of the data to be retrieved from the ComputeBuffer.</param>
- <param name="offset">Offset in bytes in the ComputeBuffer.</param>
- <param name="mipIndex">The index of the mipmap to be fetched.</param>
- <param name="dstFormat">The target TextureFormat of the data. Conversion will happen automatically if format is different from the format stored on GPU.</param>
- <param name="x">Starting X coordinate in pixels of the Texture data to be fetched.</param>
- <param name="width">Width in pixels of the Texture data to be fetched.</param>
- <param name="y">Starting Y coordinate in pixels of the Texture data to be fetched.</param>
- <param name="height">Height in pixels of the Texture data to be fetched.</param>
- <param name="z">Start Z coordinate in pixels for the Texture3D being fetched. Index of Start layer for TextureCube, Texture2DArray and TextureCubeArray being fetched.</param>
- <param name="depth">Depth in pixels for Texture3D being fetched. Number of layers for TextureCube, TextureArray and TextureCubeArray.</param>
- <param name="callback">An optional delegate System.Action called once the request is fullfilled. The done request is passed as parameter to the System.Action.</param>
- <returns>
- <para>An AsyncGPUReadbackRequest that can be used to both access the data and check whether it is available.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Rendering.AsyncGPUReadback.Request(UnityEngine.Texture,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
- <summary>
- <para>Triggers a request to asynchronously fetch the data from a GPU resource.</para>
- </summary>
- <param name="src">The resource to read the data from.</param>
- <param name="size">Size in bytes of the data to be retrieved from the ComputeBuffer.</param>
- <param name="offset">Offset in bytes in the ComputeBuffer.</param>
- <param name="mipIndex">The index of the mipmap to be fetched.</param>
- <param name="dstFormat">The target TextureFormat of the data. Conversion will happen automatically if format is different from the format stored on GPU.</param>
- <param name="x">Starting X coordinate in pixels of the Texture data to be fetched.</param>
- <param name="width">Width in pixels of the Texture data to be fetched.</param>
- <param name="y">Starting Y coordinate in pixels of the Texture data to be fetched.</param>
- <param name="height">Height in pixels of the Texture data to be fetched.</param>
- <param name="z">Start Z coordinate in pixels for the Texture3D being fetched. Index of Start layer for TextureCube, Texture2DArray and TextureCubeArray being fetched.</param>
- <param name="depth">Depth in pixels for Texture3D being fetched. Number of layers for TextureCube, TextureArray and TextureCubeArray.</param>
- <param name="callback">An optional delegate System.Action called once the request is fullfilled. The done request is passed as parameter to the System.Action.</param>
- <returns>
- <para>An AsyncGPUReadbackRequest that can be used to both access the data and check whether it is available.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Rendering.AsyncGPUReadback.Request(UnityEngine.Texture,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,UnityEngine.TextureFormat)">
- <summary>
- <para>Triggers a request to asynchronously fetch the data from a GPU resource.</para>
- </summary>
- <param name="src">The resource to read the data from.</param>
- <param name="size">Size in bytes of the data to be retrieved from the ComputeBuffer.</param>
- <param name="offset">Offset in bytes in the ComputeBuffer.</param>
- <param name="mipIndex">The index of the mipmap to be fetched.</param>
- <param name="dstFormat">The target TextureFormat of the data. Conversion will happen automatically if format is different from the format stored on GPU.</param>
- <param name="x">Starting X coordinate in pixels of the Texture data to be fetched.</param>
- <param name="width">Width in pixels of the Texture data to be fetched.</param>
- <param name="y">Starting Y coordinate in pixels of the Texture data to be fetched.</param>
- <param name="height">Height in pixels of the Texture data to be fetched.</param>
- <param name="z">Start Z coordinate in pixels for the Texture3D being fetched. Index of Start layer for TextureCube, Texture2DArray and TextureCubeArray being fetched.</param>
- <param name="depth">Depth in pixels for Texture3D being fetched. Number of layers for TextureCube, TextureArray and TextureCubeArray.</param>
- <param name="callback">An optional delegate System.Action called once the request is fullfilled. The done request is passed as parameter to the System.Action.</param>
- <returns>
- <para>An AsyncGPUReadbackRequest that can be used to both access the data and check whether it is available.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.Rendering.AsyncGPUReadbackRequest">
- <summary>
- <para>Represents an asynchronous request for a GPU resource.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rendering.AsyncGPUReadbackRequest.depth">
- <summary>
- <para>When reading data from a ComputeBuffer, depth is 1, otherwise, the property takes the value of the requested depth from the texture.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rendering.AsyncGPUReadbackRequest.done">
- <summary>
- <para>Checks whether the request has been processed.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rendering.AsyncGPUReadbackRequest.hasError">
- <summary>
- <para>This property is true if the request has encountered an error.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rendering.AsyncGPUReadbackRequest.height">
- <summary>
- <para>When reading data from a ComputeBuffer, height is 1, otherwise, the property takes the value of the requested height from the texture.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rendering.AsyncGPUReadbackRequest.layerCount">
- <summary>
- <para>Number of layers in the current request.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rendering.AsyncGPUReadbackRequest.layerDataSize">
- <summary>
- <para>The size in bytes of one layer of the readback data.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rendering.AsyncGPUReadbackRequest.width">
- <summary>
- <para>The width of the requested GPU data.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Rendering.AsyncGPUReadbackRequest.GetData(System.Int32)">
- <summary>
- <para>Fetches the data of a successful request.</para>
- </summary>
- <param name="layer">The index of the layer to retrieve.</param>
- </member>
- <member name="M:UnityEngine.Rendering.AsyncGPUReadbackRequest.Update">
- <summary>
- <para>Triggers an update of the request.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Rendering.AsyncGPUReadbackRequest.WaitForCompletion">
- <summary>
- <para>Waits for completion of the request.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Rendering.BlendMode">
- <summary>
- <para>Blend mode for controlling the blending.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BlendMode.DstAlpha">
- <summary>
- <para>Blend factor is (Ad, Ad, Ad, Ad).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BlendMode.DstColor">
- <summary>
- <para>Blend factor is (Rd, Gd, Bd, Ad).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BlendMode.One">
- <summary>
- <para>Blend factor is (1, 1, 1, 1).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BlendMode.OneMinusDstAlpha">
- <summary>
- <para>Blend factor is (1 - Ad, 1 - Ad, 1 - Ad, 1 - Ad).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BlendMode.OneMinusDstColor">
- <summary>
- <para>Blend factor is (1 - Rd, 1 - Gd, 1 - Bd, 1 - Ad).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BlendMode.OneMinusSrcAlpha">
- <summary>
- <para>Blend factor is (1 - As, 1 - As, 1 - As, 1 - As).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BlendMode.OneMinusSrcColor">
- <summary>
- <para>Blend factor is (1 - Rs, 1 - Gs, 1 - Bs, 1 - As).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BlendMode.SrcAlpha">
- <summary>
- <para>Blend factor is (As, As, As, As).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BlendMode.SrcAlphaSaturate">
- <summary>
- <para>Blend factor is (f, f, f, 1); where f = min(As, 1 - Ad).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BlendMode.SrcColor">
- <summary>
- <para>Blend factor is (Rs, Gs, Bs, As).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BlendMode.Zero">
- <summary>
- <para>Blend factor is (0, 0, 0, 0).</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Rendering.BlendOp">
- <summary>
- <para>Blend operation.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BlendOp.Add">
- <summary>
- <para>Add (s + d).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BlendOp.ColorBurn">
- <summary>
- <para>Color burn (Advanced OpenGL blending).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BlendOp.ColorDodge">
- <summary>
- <para>Color dodge (Advanced OpenGL blending).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BlendOp.Darken">
- <summary>
- <para>Darken (Advanced OpenGL blending).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BlendOp.Difference">
- <summary>
- <para>Difference (Advanced OpenGL blending).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BlendOp.Exclusion">
- <summary>
- <para>Exclusion (Advanced OpenGL blending).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BlendOp.HardLight">
- <summary>
- <para>Hard light (Advanced OpenGL blending).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BlendOp.HSLColor">
- <summary>
- <para>HSL color (Advanced OpenGL blending).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BlendOp.HSLHue">
- <summary>
- <para>HSL Hue (Advanced OpenGL blending).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BlendOp.HSLLuminosity">
- <summary>
- <para>HSL luminosity (Advanced OpenGL blending).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BlendOp.HSLSaturation">
- <summary>
- <para>HSL saturation (Advanced OpenGL blending).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BlendOp.Lighten">
- <summary>
- <para>Lighten (Advanced OpenGL blending).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BlendOp.LogicalAnd">
- <summary>
- <para>Logical AND (s &amp; d) (D3D11.1 only).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BlendOp.LogicalAndInverted">
- <summary>
- <para>Logical inverted AND (!s &amp; d) (D3D11.1 only).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BlendOp.LogicalAndReverse">
- <summary>
- <para>Logical reverse AND (s &amp; !d) (D3D11.1 only).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BlendOp.LogicalClear">
- <summary>
- <para>Logical Clear (0).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BlendOp.LogicalCopy">
- <summary>
- <para>Logical Copy (s) (D3D11.1 only).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BlendOp.LogicalCopyInverted">
- <summary>
- <para>Logical inverted Copy (!s) (D3D11.1 only).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BlendOp.LogicalEquivalence">
- <summary>
- <para>Logical Equivalence !(s XOR d) (D3D11.1 only).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BlendOp.LogicalInvert">
- <summary>
- <para>Logical Inverse (!d) (D3D11.1 only).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BlendOp.LogicalNand">
- <summary>
- <para>Logical NAND !(s &amp; d). D3D11.1 only.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BlendOp.LogicalNoop">
- <summary>
- <para>Logical No-op (d) (D3D11.1 only).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BlendOp.LogicalNor">
- <summary>
- <para>Logical NOR !(s | d) (D3D11.1 only).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BlendOp.LogicalOr">
- <summary>
- <para>Logical OR (s | d) (D3D11.1 only).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BlendOp.LogicalOrInverted">
- <summary>
- <para>Logical inverted OR (!s | d) (D3D11.1 only).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BlendOp.LogicalOrReverse">
- <summary>
- <para>Logical reverse OR (s | !d) (D3D11.1 only).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BlendOp.LogicalSet">
- <summary>
- <para>Logical SET (1) (D3D11.1 only).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BlendOp.LogicalXor">
- <summary>
- <para>Logical XOR (s XOR d) (D3D11.1 only).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BlendOp.Max">
- <summary>
- <para>Max.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BlendOp.Min">
- <summary>
- <para>Min.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BlendOp.Multiply">
- <summary>
- <para>Multiply (Advanced OpenGL blending).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BlendOp.Overlay">
- <summary>
- <para>Overlay (Advanced OpenGL blending).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BlendOp.ReverseSubtract">
- <summary>
- <para>Reverse subtract.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BlendOp.Screen">
- <summary>
- <para>Screen (Advanced OpenGL blending).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BlendOp.SoftLight">
- <summary>
- <para>Soft light (Advanced OpenGL blending).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BlendOp.Subtract">
- <summary>
- <para>Subtract.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Rendering.BuiltinRenderTextureType">
- <summary>
- <para>Built-in temporary render textures produced during camera's rendering.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BuiltinRenderTextureType.BufferPtr">
- <summary>
- <para>The raw RenderBuffer pointer to be used.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BuiltinRenderTextureType.CameraTarget">
- <summary>
- <para>Target texture of currently rendering camera.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BuiltinRenderTextureType.CurrentActive">
- <summary>
- <para>Currently active render target.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BuiltinRenderTextureType.Depth">
- <summary>
- <para>Camera's depth texture.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BuiltinRenderTextureType.DepthNormals">
- <summary>
- <para>Camera's depth+normals texture.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BuiltinRenderTextureType.GBuffer0">
- <summary>
- <para>Deferred shading G-buffer #0 (typically diffuse color).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BuiltinRenderTextureType.GBuffer1">
- <summary>
- <para>Deferred shading G-buffer #1 (typically specular + roughness).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BuiltinRenderTextureType.GBuffer2">
- <summary>
- <para>Deferred shading G-buffer #2 (typically normals).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BuiltinRenderTextureType.GBuffer3">
- <summary>
- <para>Deferred shading G-buffer #3 (typically emission/lighting).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BuiltinRenderTextureType.GBuffer4">
- <summary>
- <para>Deferred shading G-buffer #4 (typically occlusion mask for static lights if any).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BuiltinRenderTextureType.GBuffer5">
- <summary>
- <para>G-buffer #5 Available.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BuiltinRenderTextureType.GBuffer6">
- <summary>
- <para>G-buffer #6 Available.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BuiltinRenderTextureType.GBuffer7">
- <summary>
- <para>G-buffer #7 Available.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BuiltinRenderTextureType.MotionVectors">
- <summary>
- <para>Motion Vectors generated when the camera has motion vectors enabled.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BuiltinRenderTextureType.PrepassLight">
- <summary>
- <para>Deferred lighting light buffer.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BuiltinRenderTextureType.PrepassLightSpec">
- <summary>
- <para>Deferred lighting HDR specular light buffer (Xbox 360 only).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BuiltinRenderTextureType.PrepassNormalsSpec">
- <summary>
- <para>Deferred lighting (normals+specular) G-buffer.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BuiltinRenderTextureType.PropertyName">
- <summary>
- <para>A globally set property name.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BuiltinRenderTextureType.Reflections">
- <summary>
- <para>Reflections gathered from default reflection and reflections probes.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BuiltinRenderTextureType.RenderTexture">
- <summary>
- <para>The given RenderTexture.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BuiltinRenderTextureType.ResolvedDepth">
- <summary>
- <para>Resolved depth buffer from deferred.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Rendering.BuiltinShaderDefine">
- <summary>
- <para>Defines set by editor when compiling shaders, depending on target platform and tier.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BuiltinShaderDefine.SHADER_API_DESKTOP">
- <summary>
- <para>SHADER_API_DESKTOP is set when compiling shader for "desktop" platforms.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BuiltinShaderDefine.SHADER_API_MOBILE">
- <summary>
- <para>SHADER_API_MOBILE is set when compiling shader for mobile platforms.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BuiltinShaderDefine.UNITY_COLORSPACE_GAMMA">
- <summary>
- <para>UNITY_COLORSPACE_GAMMA is set when compiling shaders for Gamma Color Space.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BuiltinShaderDefine.UNITY_ENABLE_DETAIL_NORMALMAP">
- <summary>
- <para>UNITY_ENABLE_DETAIL_NORMALMAP is set if Detail Normal Map should be sampled if assigned.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BuiltinShaderDefine.UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS">
- <summary>
- <para>UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS enables use of built-in shadow comparison samplers on OpenGL ES 2.0.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BuiltinShaderDefine.UNITY_ENABLE_REFLECTION_BUFFERS">
- <summary>
- <para>UNITY_ENABLE_REFLECTION_BUFFERS is set when deferred shading renders reflection probes in deferred mode. With this option set reflections are rendered into a per-pixel buffer. This is similar to the way lights are rendered into a per-pixel buffer. UNITY_ENABLE_REFLECTION_BUFFERS is on by default when using deferred shading, but you can turn it off by setting “No support” for the Deferred Reflections shader option in Graphics Settings. When the setting is off, reflection probes are rendered per-object, similar to the way forward rendering works.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BuiltinShaderDefine.UNITY_FRAMEBUFFER_FETCH_AVAILABLE">
- <summary>
- <para>UNITY_FRAMEBUFFER_FETCH_AVAILABLE is set when compiling shaders for platforms where framebuffer fetch is potentially available.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BuiltinShaderDefine.UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS">
- <summary>
- <para>UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS is set automatically for platforms that don't require full floating-point precision support in fragment shaders.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BuiltinShaderDefine.UNITY_HARDWARE_TIER1">
- <summary>
- <para>UNITY_HARDWARE_TIER1 is set when compiling shaders for GraphicsTier.Tier1.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BuiltinShaderDefine.UNITY_HARDWARE_TIER2">
- <summary>
- <para>UNITY_HARDWARE_TIER2 is set when compiling shaders for GraphicsTier.Tier2.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BuiltinShaderDefine.UNITY_HARDWARE_TIER3">
- <summary>
- <para>UNITY_HARDWARE_TIER3 is set when compiling shaders for GraphicsTier.Tier3.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BuiltinShaderDefine.UNITY_LIGHT_PROBE_PROXY_VOLUME">
- <summary>
- <para>UNITY_LIGHT_PROBE_PROXY_VOLUME is set when Light Probe Proxy Volume feature is supported by the current graphics API and is enabled in the current Tier Settings(Graphics Settings).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BuiltinShaderDefine.UNITY_LIGHTMAP_DLDR_ENCODING">
- <summary>
- <para>UNITY_LIGHTMAP_DLDR_ENCODING is set when lightmap textures are using double LDR encoding to store the values in the texture.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BuiltinShaderDefine.UNITY_LIGHTMAP_FULL_HDR">
- <summary>
- <para>UNITY_LIGHTMAP_FULL_HDR is set when lightmap textures are not using any encoding to store the values in the texture.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BuiltinShaderDefine.UNITY_LIGHTMAP_RGBM_ENCODING">
- <summary>
- <para>UNITY_LIGHTMAP_RGBM_ENCODING is set when lightmap textures are using RGBM encoding to store the values in the texture.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BuiltinShaderDefine.UNITY_METAL_SHADOWS_USE_POINT_FILTERING">
- <summary>
- <para>UNITY_METAL_SHADOWS_USE_POINT_FILTERING is set if shadow sampler should use point filtering on iOS Metal.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BuiltinShaderDefine.UNITY_NO_DXT5nm">
- <summary>
- <para>UNITY_NO_DXT5nm is set when compiling shader for platform that do not support DXT5NM, meaning that normal maps will be encoded in RGB instead.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BuiltinShaderDefine.UNITY_NO_FULL_STANDARD_SHADER">
- <summary>
- <para>UNITY_NO_FULL_STANDARD_SHADER is set if Standard shader BRDF3 with extra simplifications should be used.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BuiltinShaderDefine.UNITY_NO_RGBM">
- <summary>
- <para>UNITY_NO_RGBM is set when compiling shader for platform that do not support RGBM, so dLDR will be used instead.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BuiltinShaderDefine.UNITY_NO_SCREENSPACE_SHADOWS">
- <summary>
- <para>UNITY_NO_SCREENSPACE_SHADOWS is set when screenspace cascaded shadow maps are disabled.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BuiltinShaderDefine.UNITY_PBS_USE_BRDF1">
- <summary>
- <para>UNITY_PBS_USE_BRDF1 is set if Standard Shader BRDF1 should be used.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BuiltinShaderDefine.UNITY_PBS_USE_BRDF2">
- <summary>
- <para>UNITY_PBS_USE_BRDF2 is set if Standard Shader BRDF2 should be used.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BuiltinShaderDefine.UNITY_PBS_USE_BRDF3">
- <summary>
- <para>UNITY_PBS_USE_BRDF3 is set if Standard Shader BRDF3 should be used.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BuiltinShaderDefine.UNITY_SPECCUBE_BLENDING">
- <summary>
- <para>UNITY_SPECCUBE_BLENDING is set if Reflection Probes Blending is enabled.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BuiltinShaderDefine.UNITY_SPECCUBE_BOX_PROJECTION">
- <summary>
- <para>UNITY_SPECCUBE_BLENDING is set if Reflection Probes Box Projection is enabled.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BuiltinShaderDefine.UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS">
- <summary>
- <para>UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS is set when Semitransparent Shadows are enabled.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Rendering.BuiltinShaderMode">
- <summary>
- <para>Built-in shader modes used by Rendering.GraphicsSettings.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BuiltinShaderMode.Disabled">
- <summary>
- <para>Don't use any shader, effectively disabling the functionality.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BuiltinShaderMode.UseBuiltin">
- <summary>
- <para>Use built-in shader (default).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BuiltinShaderMode.UseCustom">
- <summary>
- <para>Use custom shader instead of built-in one.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Rendering.BuiltinShaderType">
- <summary>
- <para>Built-in shader types used by Rendering.GraphicsSettings.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BuiltinShaderType.DeferredReflections">
- <summary>
- <para>Shader used for deferred reflection probes.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BuiltinShaderType.DeferredShading">
- <summary>
- <para>Shader used for deferred shading calculations.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BuiltinShaderType.DepthNormals">
- <summary>
- <para>Shader used for depth and normals texture when enabled on a Camera.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BuiltinShaderType.LegacyDeferredLighting">
- <summary>
- <para>Shader used for legacy deferred lighting calculations.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BuiltinShaderType.LensFlare">
- <summary>
- <para>Default shader used for lens flares.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BuiltinShaderType.LightHalo">
- <summary>
- <para>Default shader used for light halos.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BuiltinShaderType.MotionVectors">
- <summary>
- <para>Shader used for Motion Vectors when enabled on a Camera.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.BuiltinShaderType.ScreenSpaceShadows">
- <summary>
- <para>Shader used for screen-space cascaded shadows.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Rendering.CameraEvent">
- <summary>
- <para>Defines a place in camera's rendering to attach Rendering.CommandBuffer objects to.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.CameraEvent.AfterDepthNormalsTexture">
- <summary>
- <para>After camera's depth+normals texture is generated.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.CameraEvent.AfterDepthTexture">
- <summary>
- <para>After camera's depth texture is generated.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.CameraEvent.AfterEverything">
- <summary>
- <para>After camera has done rendering everything.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.CameraEvent.AfterFinalPass">
- <summary>
- <para>After final geometry pass in deferred lighting.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.CameraEvent.AfterForwardAlpha">
- <summary>
- <para>After transparent objects in forward rendering.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.CameraEvent.AfterForwardOpaque">
- <summary>
- <para>After opaque objects in forward rendering.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.CameraEvent.AfterGBuffer">
- <summary>
- <para>After deferred rendering G-buffer is rendered.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.CameraEvent.AfterHaloAndLensFlares">
- <summary>
- <para>After halo and lens flares.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.CameraEvent.AfterImageEffects">
- <summary>
- <para>After image effects.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.CameraEvent.AfterImageEffectsOpaque">
- <summary>
- <para>After image effects that happen between opaque &amp; transparent objects.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.CameraEvent.AfterLighting">
- <summary>
- <para>After lighting pass in deferred rendering.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.CameraEvent.AfterReflections">
- <summary>
- <para>After reflections pass in deferred rendering.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.CameraEvent.AfterSkybox">
- <summary>
- <para>After skybox is drawn.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.CameraEvent.BeforeDepthNormalsTexture">
- <summary>
- <para>Before camera's depth+normals texture is generated.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.CameraEvent.BeforeDepthTexture">
- <summary>
- <para>Before camera's depth texture is generated.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.CameraEvent.BeforeFinalPass">
- <summary>
- <para>Before final geometry pass in deferred lighting.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.CameraEvent.BeforeForwardAlpha">
- <summary>
- <para>Before transparent objects in forward rendering.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.CameraEvent.BeforeForwardOpaque">
- <summary>
- <para>Before opaque objects in forward rendering.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.CameraEvent.BeforeGBuffer">
- <summary>
- <para>Before deferred rendering G-buffer is rendered.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.CameraEvent.BeforeHaloAndLensFlares">
- <summary>
- <para>Before halo and lens flares.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.CameraEvent.BeforeImageEffects">
- <summary>
- <para>Before image effects.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.CameraEvent.BeforeImageEffectsOpaque">
- <summary>
- <para>Before image effects that happen between opaque &amp; transparent objects.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.CameraEvent.BeforeLighting">
- <summary>
- <para>Before lighting pass in deferred rendering.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.CameraEvent.BeforeReflections">
- <summary>
- <para>Before reflections pass in deferred rendering.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.CameraEvent.BeforeSkybox">
- <summary>
- <para>Before skybox is drawn.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Rendering.CameraHDRMode">
- <summary>
- <para>The HDR mode to use for rendering.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.CameraHDRMode.FP16">
- <summary>
- <para>Uses RenderTextureFormat.ARGBHalf.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.CameraHDRMode.R11G11B10">
- <summary>
- <para>Uses RenderTextureFormat.RGB111110Float.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Rendering.ColorWriteMask">
- <summary>
- <para>Specifies which color components will get written into the target framebuffer.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.ColorWriteMask.All">
- <summary>
- <para>Write all components (R, G, B and Alpha).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.ColorWriteMask.Alpha">
- <summary>
- <para>Write alpha component.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.ColorWriteMask.Blue">
- <summary>
- <para>Write blue component.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.ColorWriteMask.Green">
- <summary>
- <para>Write green component.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.ColorWriteMask.Red">
- <summary>
- <para>Write red component.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Rendering.CommandBuffer">
- <summary>
- <para>List of graphics commands to execute.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rendering.CommandBuffer.name">
- <summary>
- <para>Name of this command buffer.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rendering.CommandBuffer.sizeInBytes">
- <summary>
- <para>Size of this command buffer in bytes (Read Only).</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.BeginSample(System.String)">
- <summary>
- <para>Adds a command to begin profile sampling.</para>
- </summary>
- <param name="name">Name of the profile information used for sampling.</param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.Blit(UnityEngine.Texture,UnityEngine.Rendering.RenderTargetIdentifier)">
- <summary>
- <para>Add a "blit into a render texture" command.</para>
- </summary>
- <param name="source">Source texture or render target to blit from.</param>
- <param name="dest">Destination to blit into.</param>
- <param name="mat">Material to use.</param>
- <param name="pass">Shader pass to use (default is -1, meaning "all passes").</param>
- <param name="scale">Scale applied to the source texture coordinate.</param>
- <param name="offset">Offset applied to the source texture coordinate.</param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.Blit(UnityEngine.Texture,UnityEngine.Rendering.RenderTargetIdentifier,UnityEngine.Material)">
- <summary>
- <para>Add a "blit into a render texture" command.</para>
- </summary>
- <param name="source">Source texture or render target to blit from.</param>
- <param name="dest">Destination to blit into.</param>
- <param name="mat">Material to use.</param>
- <param name="pass">Shader pass to use (default is -1, meaning "all passes").</param>
- <param name="scale">Scale applied to the source texture coordinate.</param>
- <param name="offset">Offset applied to the source texture coordinate.</param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.Blit(UnityEngine.Texture,UnityEngine.Rendering.RenderTargetIdentifier,UnityEngine.Material,System.Int32)">
- <summary>
- <para>Add a "blit into a render texture" command.</para>
- </summary>
- <param name="source">Source texture or render target to blit from.</param>
- <param name="dest">Destination to blit into.</param>
- <param name="mat">Material to use.</param>
- <param name="pass">Shader pass to use (default is -1, meaning "all passes").</param>
- <param name="scale">Scale applied to the source texture coordinate.</param>
- <param name="offset">Offset applied to the source texture coordinate.</param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.Blit(UnityEngine.Texture,UnityEngine.Rendering.RenderTargetIdentifier,UnityEngine.Vector2,UnityEngine.Vector2)">
- <summary>
- <para>Add a "blit into a render texture" command.</para>
- </summary>
- <param name="source">Source texture or render target to blit from.</param>
- <param name="dest">Destination to blit into.</param>
- <param name="mat">Material to use.</param>
- <param name="pass">Shader pass to use (default is -1, meaning "all passes").</param>
- <param name="scale">Scale applied to the source texture coordinate.</param>
- <param name="offset">Offset applied to the source texture coordinate.</param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.Blit(UnityEngine.Rendering.RenderTargetIdentifier,UnityEngine.Rendering.RenderTargetIdentifier)">
- <summary>
- <para>Add a "blit into a render texture" command.</para>
- </summary>
- <param name="source">Source texture or render target to blit from.</param>
- <param name="dest">Destination to blit into.</param>
- <param name="mat">Material to use.</param>
- <param name="pass">Shader pass to use (default is -1, meaning "all passes").</param>
- <param name="scale">Scale applied to the source texture coordinate.</param>
- <param name="offset">Offset applied to the source texture coordinate.</param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.Blit(UnityEngine.Rendering.RenderTargetIdentifier,UnityEngine.Rendering.RenderTargetIdentifier,UnityEngine.Material)">
- <summary>
- <para>Add a "blit into a render texture" command.</para>
- </summary>
- <param name="source">Source texture or render target to blit from.</param>
- <param name="dest">Destination to blit into.</param>
- <param name="mat">Material to use.</param>
- <param name="pass">Shader pass to use (default is -1, meaning "all passes").</param>
- <param name="scale">Scale applied to the source texture coordinate.</param>
- <param name="offset">Offset applied to the source texture coordinate.</param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.Blit(UnityEngine.Rendering.RenderTargetIdentifier,UnityEngine.Rendering.RenderTargetIdentifier,UnityEngine.Material,System.Int32)">
- <summary>
- <para>Add a "blit into a render texture" command.</para>
- </summary>
- <param name="source">Source texture or render target to blit from.</param>
- <param name="dest">Destination to blit into.</param>
- <param name="mat">Material to use.</param>
- <param name="pass">Shader pass to use (default is -1, meaning "all passes").</param>
- <param name="scale">Scale applied to the source texture coordinate.</param>
- <param name="offset">Offset applied to the source texture coordinate.</param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.Blit(UnityEngine.Rendering.RenderTargetIdentifier,UnityEngine.Rendering.RenderTargetIdentifier,UnityEngine.Vector2,UnityEngine.Vector2)">
- <summary>
- <para>Add a "blit into a render texture" command.</para>
- </summary>
- <param name="source">Source texture or render target to blit from.</param>
- <param name="dest">Destination to blit into.</param>
- <param name="mat">Material to use.</param>
- <param name="pass">Shader pass to use (default is -1, meaning "all passes").</param>
- <param name="scale">Scale applied to the source texture coordinate.</param>
- <param name="offset">Offset applied to the source texture coordinate.</param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.Clear">
- <summary>
- <para>Clear all commands in the buffer.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.ClearRandomWriteTargets">
- <summary>
- <para>Clear random write targets for level pixel shaders.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.ClearRenderTarget(System.Boolean,System.Boolean,UnityEngine.Color,System.Single)">
- <summary>
- <para>Adds a "clear render target" command.</para>
- </summary>
- <param name="clearDepth">Should clear depth buffer?</param>
- <param name="clearColor">Should clear color buffer?</param>
- <param name="backgroundColor">Color to clear with.</param>
- <param name="depth">Depth to clear with (default is 1.0).</param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.ConvertTexture(UnityEngine.Rendering.RenderTargetIdentifier,UnityEngine.Rendering.RenderTargetIdentifier)">
- <summary>
- <para>Converts and copies a source texture to a destination texture with a different format or dimensions.</para>
- </summary>
- <param name="src">Source texture.</param>
- <param name="dst">Destination texture.</param>
- <param name="srcElement">Source element (e.g. cubemap face). Set this to 0 for 2D source textures.</param>
- <param name="dstElement">Destination element (e.g. cubemap face or texture array element).</param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.ConvertTexture(UnityEngine.Rendering.RenderTargetIdentifier,System.Int32,UnityEngine.Rendering.RenderTargetIdentifier,System.Int32)">
- <summary>
- <para>Converts and copies a source texture to a destination texture with a different format or dimensions.</para>
- </summary>
- <param name="src">Source texture.</param>
- <param name="dst">Destination texture.</param>
- <param name="srcElement">Source element (e.g. cubemap face). Set this to 0 for 2D source textures.</param>
- <param name="dstElement">Destination element (e.g. cubemap face or texture array element).</param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.CopyCounterValue(UnityEngine.ComputeBuffer,UnityEngine.ComputeBuffer,System.UInt32)">
- <summary>
- <para>Adds a command to copy ComputeBuffer counter value.</para>
- </summary>
- <param name="src">Append/consume buffer to copy the counter from.</param>
- <param name="dst">A buffer to copy the counter to.</param>
- <param name="dstOffsetBytes">Target byte offset in dst buffer.</param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.CopyTexture(UnityEngine.Rendering.RenderTargetIdentifier,UnityEngine.Rendering.RenderTargetIdentifier)">
- <summary>
- <para>Adds a command to copy a texture into another texture.</para>
- </summary>
- <param name="src">Source texture or identifier, see RenderTargetIdentifier.</param>
- <param name="dst">Destination texture or identifier, see RenderTargetIdentifier.</param>
- <param name="srcElement">Source texture element (cubemap face, texture array layer or 3D texture depth slice).</param>
- <param name="srcMip">Source texture mipmap level.</param>
- <param name="dstElement">Destination texture element (cubemap face, texture array layer or 3D texture depth slice).</param>
- <param name="dstMip">Destination texture mipmap level.</param>
- <param name="srcX">X coordinate of source texture region to copy (left side is zero).</param>
- <param name="srcY">Y coordinate of source texture region to copy (bottom is zero).</param>
- <param name="srcWidth">Width of source texture region to copy.</param>
- <param name="srcHeight">Height of source texture region to copy.</param>
- <param name="dstX">X coordinate of where to copy region in destination texture (left side is zero).</param>
- <param name="dstY">Y coordinate of where to copy region in destination texture (bottom is zero).</param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.CopyTexture(UnityEngine.Rendering.RenderTargetIdentifier,System.Int32,UnityEngine.Rendering.RenderTargetIdentifier,System.Int32)">
- <summary>
- <para>Adds a command to copy a texture into another texture.</para>
- </summary>
- <param name="src">Source texture or identifier, see RenderTargetIdentifier.</param>
- <param name="dst">Destination texture or identifier, see RenderTargetIdentifier.</param>
- <param name="srcElement">Source texture element (cubemap face, texture array layer or 3D texture depth slice).</param>
- <param name="srcMip">Source texture mipmap level.</param>
- <param name="dstElement">Destination texture element (cubemap face, texture array layer or 3D texture depth slice).</param>
- <param name="dstMip">Destination texture mipmap level.</param>
- <param name="srcX">X coordinate of source texture region to copy (left side is zero).</param>
- <param name="srcY">Y coordinate of source texture region to copy (bottom is zero).</param>
- <param name="srcWidth">Width of source texture region to copy.</param>
- <param name="srcHeight">Height of source texture region to copy.</param>
- <param name="dstX">X coordinate of where to copy region in destination texture (left side is zero).</param>
- <param name="dstY">Y coordinate of where to copy region in destination texture (bottom is zero).</param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.CopyTexture(UnityEngine.Rendering.RenderTargetIdentifier,System.Int32,System.Int32,UnityEngine.Rendering.RenderTargetIdentifier,System.Int32,System.Int32)">
- <summary>
- <para>Adds a command to copy a texture into another texture.</para>
- </summary>
- <param name="src">Source texture or identifier, see RenderTargetIdentifier.</param>
- <param name="dst">Destination texture or identifier, see RenderTargetIdentifier.</param>
- <param name="srcElement">Source texture element (cubemap face, texture array layer or 3D texture depth slice).</param>
- <param name="srcMip">Source texture mipmap level.</param>
- <param name="dstElement">Destination texture element (cubemap face, texture array layer or 3D texture depth slice).</param>
- <param name="dstMip">Destination texture mipmap level.</param>
- <param name="srcX">X coordinate of source texture region to copy (left side is zero).</param>
- <param name="srcY">Y coordinate of source texture region to copy (bottom is zero).</param>
- <param name="srcWidth">Width of source texture region to copy.</param>
- <param name="srcHeight">Height of source texture region to copy.</param>
- <param name="dstX">X coordinate of where to copy region in destination texture (left side is zero).</param>
- <param name="dstY">Y coordinate of where to copy region in destination texture (bottom is zero).</param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.CopyTexture(UnityEngine.Rendering.RenderTargetIdentifier,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,UnityEngine.Rendering.RenderTargetIdentifier,System.Int32,System.Int32,System.Int32,System.Int32)">
- <summary>
- <para>Adds a command to copy a texture into another texture.</para>
- </summary>
- <param name="src">Source texture or identifier, see RenderTargetIdentifier.</param>
- <param name="dst">Destination texture or identifier, see RenderTargetIdentifier.</param>
- <param name="srcElement">Source texture element (cubemap face, texture array layer or 3D texture depth slice).</param>
- <param name="srcMip">Source texture mipmap level.</param>
- <param name="dstElement">Destination texture element (cubemap face, texture array layer or 3D texture depth slice).</param>
- <param name="dstMip">Destination texture mipmap level.</param>
- <param name="srcX">X coordinate of source texture region to copy (left side is zero).</param>
- <param name="srcY">Y coordinate of source texture region to copy (bottom is zero).</param>
- <param name="srcWidth">Width of source texture region to copy.</param>
- <param name="srcHeight">Height of source texture region to copy.</param>
- <param name="dstX">X coordinate of where to copy region in destination texture (left side is zero).</param>
- <param name="dstY">Y coordinate of where to copy region in destination texture (bottom is zero).</param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.CreateGPUFence(UnityEngine.Rendering.SynchronisationStage)">
- <summary>
- <para>Creates a GPUFence which will be passed after the last Blit, Clear, Draw, Dispatch or Texture Copy command prior to this call has been completed on the GPU.</para>
- </summary>
- <param name="stage">On some platforms there is a significant gap between the vertex processing completing and the pixel processing begining for a given draw call. This parameter allows for the fence to be passed after either the vertex or pixel processing for the proceeding draw has completed. If a compute shader dispatch was the last task submitted then this parameter is ignored.</param>
- <returns>
- <para>Returns a new GPUFence.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.#ctor">
- <summary>
- <para>Create a new empty command buffer.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.DisableScissorRect">
- <summary>
- <para>Add a command to disable the hardware scissor rectangle.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.DisableShaderKeyword(System.String)">
- <summary>
- <para>Adds a command to disable global shader keyword.</para>
- </summary>
- <param name="keyword">Shader keyword to disable.</param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.DispatchCompute(UnityEngine.ComputeShader,System.Int32,System.Int32,System.Int32,System.Int32)">
- <summary>
- <para>Add a command to execute a ComputeShader.</para>
- </summary>
- <param name="computeShader">ComputeShader to execute.</param>
- <param name="kernelIndex">Kernel index to execute, see ComputeShader.FindKernel.</param>
- <param name="threadGroupsX">Number of work groups in the X dimension.</param>
- <param name="threadGroupsY">Number of work groups in the Y dimension.</param>
- <param name="threadGroupsZ">Number of work groups in the Z dimension.</param>
- <param name="indirectBuffer">ComputeBuffer with dispatch arguments.</param>
- <param name="argsOffset">Byte offset indicating the location of the dispatch arguments in the buffer.</param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.DispatchCompute(UnityEngine.ComputeShader,System.Int32,UnityEngine.ComputeBuffer,System.UInt32)">
- <summary>
- <para>Add a command to execute a ComputeShader.</para>
- </summary>
- <param name="computeShader">ComputeShader to execute.</param>
- <param name="kernelIndex">Kernel index to execute, see ComputeShader.FindKernel.</param>
- <param name="threadGroupsX">Number of work groups in the X dimension.</param>
- <param name="threadGroupsY">Number of work groups in the Y dimension.</param>
- <param name="threadGroupsZ">Number of work groups in the Z dimension.</param>
- <param name="indirectBuffer">ComputeBuffer with dispatch arguments.</param>
- <param name="argsOffset">Byte offset indicating the location of the dispatch arguments in the buffer.</param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.DrawMesh(UnityEngine.Mesh,UnityEngine.Matrix4x4,UnityEngine.Material,System.Int32,System.Int32,UnityEngine.MaterialPropertyBlock)">
- <summary>
- <para>Add a "draw mesh" command.</para>
- </summary>
- <param name="mesh">Mesh to draw.</param>
- <param name="matrix">Transformation matrix to use.</param>
- <param name="material">Material to use.</param>
- <param name="submeshIndex">Which subset of the mesh to render.</param>
- <param name="shaderPass">Which pass of the shader to use (default is -1, which renders all passes).</param>
- <param name="properties">Additional material properties to apply onto material just before this mesh will be drawn. See MaterialPropertyBlock.</param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.DrawMeshInstanced(UnityEngine.Mesh,System.Int32,UnityEngine.Material,System.Int32,UnityEngine.Matrix4x4[],System.Int32,UnityEngine.MaterialPropertyBlock)">
- <summary>
- <para>Add a "draw mesh with instancing" command.
-
-The command will not immediately fail and throw an exception if Material.enableInstancing is false, but it will log an error and skips rendering each time the command is being executed if such a condition is detected.
-
-InvalidOperationException will be thrown if the current platform doesn't support this API (i.e. if GPU instancing is not available). See SystemInfo.supportsInstancing.</para>
- </summary>
- <param name="mesh">The Mesh to draw.</param>
- <param name="submeshIndex">Which subset of the mesh to draw. This applies only to meshes that are composed of several materials.</param>
- <param name="material">Material to use.</param>
- <param name="shaderPass">Which pass of the shader to use, or -1 which renders all passes.</param>
- <param name="matrices">The array of object transformation matrices.</param>
- <param name="count">The number of instances to be drawn.</param>
- <param name="properties">Additional material properties to apply onto material just before this mesh will be drawn. See MaterialPropertyBlock.</param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.DrawMeshInstancedIndirect(UnityEngine.Mesh,System.Int32,UnityEngine.Material,System.Int32,UnityEngine.ComputeBuffer,System.Int32,UnityEngine.MaterialPropertyBlock)">
- <summary>
- <para>Add a "draw mesh with indirect instancing" command.</para>
- </summary>
- <param name="mesh">The Mesh to draw.</param>
- <param name="submeshIndex">Which subset of the mesh to draw. This applies only to meshes that are composed of several materials.</param>
- <param name="material">Material to use.</param>
- <param name="shaderPass">Which pass of the shader to use, or -1 which renders all passes.</param>
- <param name="properties">Additional material properties to apply onto material just before this mesh will be drawn. See MaterialPropertyBlock.</param>
- <param name="bufferWithArgs">The GPU buffer containing the arguments for how many instances of this mesh to draw.</param>
- <param name="argsOffset">The byte offset into the buffer, where the draw arguments start.</param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.DrawProcedural(UnityEngine.Matrix4x4,UnityEngine.Material,System.Int32,UnityEngine.MeshTopology,System.Int32,System.Int32,UnityEngine.MaterialPropertyBlock)">
- <summary>
- <para>Add a "draw procedural geometry" command.</para>
- </summary>
- <param name="matrix">Transformation matrix to use.</param>
- <param name="material">Material to use.</param>
- <param name="shaderPass">Which pass of the shader to use (or -1 for all passes).</param>
- <param name="topology">Topology of the procedural geometry.</param>
- <param name="vertexCount">Vertex count to render.</param>
- <param name="instanceCount">Instance count to render.</param>
- <param name="properties">Additional material properties to apply just before rendering. See MaterialPropertyBlock.</param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.DrawProceduralIndirect(UnityEngine.Matrix4x4,UnityEngine.Material,System.Int32,UnityEngine.MeshTopology,UnityEngine.ComputeBuffer,System.Int32,UnityEngine.MaterialPropertyBlock)">
- <summary>
- <para>Add a "draw procedural geometry" command.</para>
- </summary>
- <param name="matrix">Transformation matrix to use.</param>
- <param name="material">Material to use.</param>
- <param name="shaderPass">Which pass of the shader to use (or -1 for all passes).</param>
- <param name="topology">Topology of the procedural geometry.</param>
- <param name="properties">Additional material properties to apply just before rendering. See MaterialPropertyBlock.</param>
- <param name="bufferWithArgs">Buffer with draw arguments.</param>
- <param name="argsOffset">Byte offset where in the buffer the draw arguments are.</param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.DrawRenderer(UnityEngine.Renderer,UnityEngine.Material,System.Int32,System.Int32)">
- <summary>
- <para>Add a "draw renderer" command.</para>
- </summary>
- <param name="renderer">Renderer to draw.</param>
- <param name="material">Material to use.</param>
- <param name="submeshIndex">Which subset of the mesh to render.</param>
- <param name="shaderPass">Which pass of the shader to use (default is -1, which renders all passes).</param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.EnableScissorRect(UnityEngine.Rect)">
- <summary>
- <para>Add a command to enable the hardware scissor rectangle.</para>
- </summary>
- <param name="scissor">Viewport rectangle in pixel coordinates.</param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.EnableShaderKeyword(System.String)">
- <summary>
- <para>Adds a command to enable global shader keyword.</para>
- </summary>
- <param name="keyword">Shader keyword to enable.</param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.EndSample(System.String)">
- <summary>
- <para>Adds a command to begin profile sampling.</para>
- </summary>
- <param name="name">Name of the profile information used for sampling.</param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.GenerateMips(UnityEngine.RenderTexture)">
- <summary>
- <para>Generate mipmap levels of a render texture.</para>
- </summary>
- <param name="rt">The render texture requiring mipmaps generation.</param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.GetTemporaryRT(System.Int32,System.Int32,System.Int32,System.Int32,UnityEngine.FilterMode,UnityEngine.RenderTextureFormat,UnityEngine.RenderTextureReadWrite,System.Int32,System.Boolean)">
- <summary>
- <para>Add a "get a temporary render texture" command.</para>
- </summary>
- <param name="nameID">Shader property name for this texture.</param>
- <param name="width">Width in pixels, or -1 for "camera pixel width".</param>
- <param name="height">Height in pixels, or -1 for "camera pixel height".</param>
- <param name="depthBuffer">Depth buffer bits (0, 16 or 24).</param>
- <param name="filter">Texture filtering mode (default is Point).</param>
- <param name="format">Format of the render texture (default is ARGB32).</param>
- <param name="readWrite">Color space conversion mode.</param>
- <param name="antiAliasing">Anti-aliasing (default is no anti-aliasing).</param>
- <param name="enableRandomWrite">Should random-write access into the texture be enabled (default is false).</param>
- <param name="desc">Use this RenderTextureDescriptor for the settings when creating the temporary RenderTexture.</param>
- <param name="memorylessMode">Render texture memoryless mode.</param>
- <param name="useDynamicScale"></param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.GetTemporaryRT(System.Int32,UnityEngine.RenderTextureDescriptor,UnityEngine.FilterMode)">
- <summary>
- <para>Add a "get a temporary render texture" command.</para>
- </summary>
- <param name="nameID">Shader property name for this texture.</param>
- <param name="width">Width in pixels, or -1 for "camera pixel width".</param>
- <param name="height">Height in pixels, or -1 for "camera pixel height".</param>
- <param name="depthBuffer">Depth buffer bits (0, 16 or 24).</param>
- <param name="filter">Texture filtering mode (default is Point).</param>
- <param name="format">Format of the render texture (default is ARGB32).</param>
- <param name="readWrite">Color space conversion mode.</param>
- <param name="antiAliasing">Anti-aliasing (default is no anti-aliasing).</param>
- <param name="enableRandomWrite">Should random-write access into the texture be enabled (default is false).</param>
- <param name="desc">Use this RenderTextureDescriptor for the settings when creating the temporary RenderTexture.</param>
- <param name="memorylessMode">Render texture memoryless mode.</param>
- <param name="useDynamicScale"></param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.GetTemporaryRTArray(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,UnityEngine.FilterMode,UnityEngine.RenderTextureFormat,UnityEngine.RenderTextureReadWrite,System.Int32,System.Boolean)">
- <summary>
- <para>Add a "get a temporary render texture array" command.</para>
- </summary>
- <param name="nameID">Shader property name for this texture.</param>
- <param name="width">Width in pixels, or -1 for "camera pixel width".</param>
- <param name="height">Height in pixels, or -1 for "camera pixel height".</param>
- <param name="slices">Number of slices in texture array.</param>
- <param name="depthBuffer">Depth buffer bits (0, 16 or 24).</param>
- <param name="filter">Texture filtering mode (default is Point).</param>
- <param name="format">Format of the render texture (default is ARGB32).</param>
- <param name="readWrite">Color space conversion mode.</param>
- <param name="antiAliasing">Anti-aliasing (default is no anti-aliasing).</param>
- <param name="enableRandomWrite">Should random-write access into the texture be enabled (default is false).</param>
- <param name="useDynamicScale"></param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.IssuePluginCustomBlit(System.IntPtr,System.UInt32,UnityEngine.Rendering.RenderTargetIdentifier,UnityEngine.Rendering.RenderTargetIdentifier,System.UInt32,System.UInt32)">
- <summary>
- <para>Send a user-defined blit event to a native code plugin.</para>
- </summary>
- <param name="callback">Native code callback to queue for Unity's renderer to invoke.</param>
- <param name="command">User defined command id to send to the callback.</param>
- <param name="source">Source render target.</param>
- <param name="dest">Destination render target.</param>
- <param name="commandParam">User data command parameters.</param>
- <param name="commandFlags">User data command flags.</param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.IssuePluginCustomTextureUpdate(System.IntPtr,UnityEngine.Texture,System.UInt32)">
- <summary>
- <para>Send a texture update event to a native code plugin.</para>
- </summary>
- <param name="callback">Native code callback to queue for Unity's renderer to invoke.</param>
- <param name="targetTexture">Texture resource to be updated.</param>
- <param name="commandParam">User data to send to the native plugin.</param>
- <param name="userData"></param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.IssuePluginEvent(System.IntPtr,System.Int32)">
- <summary>
- <para>Send a user-defined event to a native code plugin.</para>
- </summary>
- <param name="callback">Native code callback to queue for Unity's renderer to invoke.</param>
- <param name="eventID">User defined id to send to the callback.</param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.IssuePluginEventAndData(System.IntPtr,System.Int32,System.IntPtr)">
- <summary>
- <para>Send a user-defined event to a native code plugin with custom data.</para>
- </summary>
- <param name="callback">Native code callback to queue for Unity's renderer to invoke.</param>
- <param name="data">Custom data to pass to the native plugin callback.</param>
- <param name="eventID">Built in or user defined id to send to the callback.</param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.ReleaseTemporaryRT(System.Int32)">
- <summary>
- <para>Add a "release a temporary render texture" command.</para>
- </summary>
- <param name="nameID">Shader property name for this texture.</param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.RequestAsyncReadback(UnityEngine.ComputeBuffer,System.Action`1&lt;UnityEngine.Rendering.AsyncGPUReadbackRequest&gt;)">
- <summary>
- <para>Adds an asynchonous GPU readback request command to the command buffer.</para>
- </summary>
- <param name="src">The resource to read the data from.</param>
- <param name="size">Size in bytes of the data to be retrieved from the ComputeBuffer.</param>
- <param name="offset">Offset in bytes in the ComputeBuffer.</param>
- <param name="mipIndex">The index of the mipmap to be fetched.</param>
- <param name="dstFormat">The target TextureFormat of the data. Conversion will happen automatically if format is different from the format stored on GPU.</param>
- <param name="x">Starting X coordinate in pixels of the Texture data to be fetched.</param>
- <param name="y">Starting Y coordinate in pixels of the Texture data to be fetched.</param>
- <param name="z">Start Z coordinate in pixels for the Texture3D being fetched. Index of Start layer for TextureCube, Texture2DArray and TextureCubeArray being fetched.</param>
- <param name="depth">Depth in pixels for Texture3D being fetched. Number of layers for TextureCube, TextureArray and TextureCubeArray.</param>
- <param name="width">Width in pixels of the Texture data to be fetched.</param>
- <param name="height">Height in pixels of the Texture data to be fetched.</param>
- <param name="callback">A delegate System.Action called once the request is fullfilled. The done request is passed as parameter to the System.Action.</param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.RequestAsyncReadback(UnityEngine.ComputeBuffer,System.Int32,System.Int32,System.Action`1&lt;UnityEngine.Rendering.AsyncGPUReadbackRequest&gt;)">
- <summary>
- <para>Adds an asynchonous GPU readback request command to the command buffer.</para>
- </summary>
- <param name="src">The resource to read the data from.</param>
- <param name="size">Size in bytes of the data to be retrieved from the ComputeBuffer.</param>
- <param name="offset">Offset in bytes in the ComputeBuffer.</param>
- <param name="mipIndex">The index of the mipmap to be fetched.</param>
- <param name="dstFormat">The target TextureFormat of the data. Conversion will happen automatically if format is different from the format stored on GPU.</param>
- <param name="x">Starting X coordinate in pixels of the Texture data to be fetched.</param>
- <param name="y">Starting Y coordinate in pixels of the Texture data to be fetched.</param>
- <param name="z">Start Z coordinate in pixels for the Texture3D being fetched. Index of Start layer for TextureCube, Texture2DArray and TextureCubeArray being fetched.</param>
- <param name="depth">Depth in pixels for Texture3D being fetched. Number of layers for TextureCube, TextureArray and TextureCubeArray.</param>
- <param name="width">Width in pixels of the Texture data to be fetched.</param>
- <param name="height">Height in pixels of the Texture data to be fetched.</param>
- <param name="callback">A delegate System.Action called once the request is fullfilled. The done request is passed as parameter to the System.Action.</param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.RequestAsyncReadback(UnityEngine.Texture,System.Action`1&lt;UnityEngine.Rendering.AsyncGPUReadbackRequest&gt;)">
- <summary>
- <para>Adds an asynchonous GPU readback request command to the command buffer.</para>
- </summary>
- <param name="src">The resource to read the data from.</param>
- <param name="size">Size in bytes of the data to be retrieved from the ComputeBuffer.</param>
- <param name="offset">Offset in bytes in the ComputeBuffer.</param>
- <param name="mipIndex">The index of the mipmap to be fetched.</param>
- <param name="dstFormat">The target TextureFormat of the data. Conversion will happen automatically if format is different from the format stored on GPU.</param>
- <param name="x">Starting X coordinate in pixels of the Texture data to be fetched.</param>
- <param name="y">Starting Y coordinate in pixels of the Texture data to be fetched.</param>
- <param name="z">Start Z coordinate in pixels for the Texture3D being fetched. Index of Start layer for TextureCube, Texture2DArray and TextureCubeArray being fetched.</param>
- <param name="depth">Depth in pixels for Texture3D being fetched. Number of layers for TextureCube, TextureArray and TextureCubeArray.</param>
- <param name="width">Width in pixels of the Texture data to be fetched.</param>
- <param name="height">Height in pixels of the Texture data to be fetched.</param>
- <param name="callback">A delegate System.Action called once the request is fullfilled. The done request is passed as parameter to the System.Action.</param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.RequestAsyncReadback(UnityEngine.Texture,System.Int32,System.Action`1&lt;UnityEngine.Rendering.AsyncGPUReadbackRequest&gt;)">
- <summary>
- <para>Adds an asynchonous GPU readback request command to the command buffer.</para>
- </summary>
- <param name="src">The resource to read the data from.</param>
- <param name="size">Size in bytes of the data to be retrieved from the ComputeBuffer.</param>
- <param name="offset">Offset in bytes in the ComputeBuffer.</param>
- <param name="mipIndex">The index of the mipmap to be fetched.</param>
- <param name="dstFormat">The target TextureFormat of the data. Conversion will happen automatically if format is different from the format stored on GPU.</param>
- <param name="x">Starting X coordinate in pixels of the Texture data to be fetched.</param>
- <param name="y">Starting Y coordinate in pixels of the Texture data to be fetched.</param>
- <param name="z">Start Z coordinate in pixels for the Texture3D being fetched. Index of Start layer for TextureCube, Texture2DArray and TextureCubeArray being fetched.</param>
- <param name="depth">Depth in pixels for Texture3D being fetched. Number of layers for TextureCube, TextureArray and TextureCubeArray.</param>
- <param name="width">Width in pixels of the Texture data to be fetched.</param>
- <param name="height">Height in pixels of the Texture data to be fetched.</param>
- <param name="callback">A delegate System.Action called once the request is fullfilled. The done request is passed as parameter to the System.Action.</param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.RequestAsyncReadback(UnityEngine.Texture,System.Int32,UnityEngine.TextureFormat,System.Action`1&lt;UnityEngine.Rendering.AsyncGPUReadbackRequest&gt;)">
- <summary>
- <para>Adds an asynchonous GPU readback request command to the command buffer.</para>
- </summary>
- <param name="src">The resource to read the data from.</param>
- <param name="size">Size in bytes of the data to be retrieved from the ComputeBuffer.</param>
- <param name="offset">Offset in bytes in the ComputeBuffer.</param>
- <param name="mipIndex">The index of the mipmap to be fetched.</param>
- <param name="dstFormat">The target TextureFormat of the data. Conversion will happen automatically if format is different from the format stored on GPU.</param>
- <param name="x">Starting X coordinate in pixels of the Texture data to be fetched.</param>
- <param name="y">Starting Y coordinate in pixels of the Texture data to be fetched.</param>
- <param name="z">Start Z coordinate in pixels for the Texture3D being fetched. Index of Start layer for TextureCube, Texture2DArray and TextureCubeArray being fetched.</param>
- <param name="depth">Depth in pixels for Texture3D being fetched. Number of layers for TextureCube, TextureArray and TextureCubeArray.</param>
- <param name="width">Width in pixels of the Texture data to be fetched.</param>
- <param name="height">Height in pixels of the Texture data to be fetched.</param>
- <param name="callback">A delegate System.Action called once the request is fullfilled. The done request is passed as parameter to the System.Action.</param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.RequestAsyncReadback(UnityEngine.Texture,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Action`1&lt;UnityEngine.Rendering.AsyncGPUReadbackRequest&gt;)">
- <summary>
- <para>Adds an asynchonous GPU readback request command to the command buffer.</para>
- </summary>
- <param name="src">The resource to read the data from.</param>
- <param name="size">Size in bytes of the data to be retrieved from the ComputeBuffer.</param>
- <param name="offset">Offset in bytes in the ComputeBuffer.</param>
- <param name="mipIndex">The index of the mipmap to be fetched.</param>
- <param name="dstFormat">The target TextureFormat of the data. Conversion will happen automatically if format is different from the format stored on GPU.</param>
- <param name="x">Starting X coordinate in pixels of the Texture data to be fetched.</param>
- <param name="y">Starting Y coordinate in pixels of the Texture data to be fetched.</param>
- <param name="z">Start Z coordinate in pixels for the Texture3D being fetched. Index of Start layer for TextureCube, Texture2DArray and TextureCubeArray being fetched.</param>
- <param name="depth">Depth in pixels for Texture3D being fetched. Number of layers for TextureCube, TextureArray and TextureCubeArray.</param>
- <param name="width">Width in pixels of the Texture data to be fetched.</param>
- <param name="height">Height in pixels of the Texture data to be fetched.</param>
- <param name="callback">A delegate System.Action called once the request is fullfilled. The done request is passed as parameter to the System.Action.</param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.RequestAsyncReadback(UnityEngine.Texture,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,UnityEngine.TextureFormat,System.Action`1&lt;UnityEngine.Rendering.AsyncGPUReadbackRequest&gt;)">
- <summary>
- <para>Adds an asynchonous GPU readback request command to the command buffer.</para>
- </summary>
- <param name="src">The resource to read the data from.</param>
- <param name="size">Size in bytes of the data to be retrieved from the ComputeBuffer.</param>
- <param name="offset">Offset in bytes in the ComputeBuffer.</param>
- <param name="mipIndex">The index of the mipmap to be fetched.</param>
- <param name="dstFormat">The target TextureFormat of the data. Conversion will happen automatically if format is different from the format stored on GPU.</param>
- <param name="x">Starting X coordinate in pixels of the Texture data to be fetched.</param>
- <param name="y">Starting Y coordinate in pixels of the Texture data to be fetched.</param>
- <param name="z">Start Z coordinate in pixels for the Texture3D being fetched. Index of Start layer for TextureCube, Texture2DArray and TextureCubeArray being fetched.</param>
- <param name="depth">Depth in pixels for Texture3D being fetched. Number of layers for TextureCube, TextureArray and TextureCubeArray.</param>
- <param name="width">Width in pixels of the Texture data to be fetched.</param>
- <param name="height">Height in pixels of the Texture data to be fetched.</param>
- <param name="callback">A delegate System.Action called once the request is fullfilled. The done request is passed as parameter to the System.Action.</param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.SetComputeBufferParam(UnityEngine.ComputeShader,System.Int32,System.String,UnityEngine.ComputeBuffer)">
- <summary>
- <para>Adds a command to set an input or output buffer parameter on a ComputeShader.</para>
- </summary>
- <param name="computeShader">ComputeShader to set parameter for.</param>
- <param name="kernelIndex">Which kernel the buffer is being set for. See ComputeShader.FindKernel.</param>
- <param name="name">Name of the buffer variable in shader code.</param>
- <param name="nameID">Property name ID. Use Shader.PropertyToID to get this ID.</param>
- <param name="buffer">Buffer to set.</param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.SetComputeBufferParam(UnityEngine.ComputeShader,System.Int32,System.Int32,UnityEngine.ComputeBuffer)">
- <summary>
- <para>Adds a command to set an input or output buffer parameter on a ComputeShader.</para>
- </summary>
- <param name="computeShader">ComputeShader to set parameter for.</param>
- <param name="kernelIndex">Which kernel the buffer is being set for. See ComputeShader.FindKernel.</param>
- <param name="name">Name of the buffer variable in shader code.</param>
- <param name="nameID">Property name ID. Use Shader.PropertyToID to get this ID.</param>
- <param name="buffer">Buffer to set.</param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.SetComputeFloatParam(UnityEngine.ComputeShader,System.String,System.Single)">
- <summary>
- <para>Adds a command to set a float parameter on a ComputeShader.</para>
- </summary>
- <param name="computeShader">ComputeShader to set parameter for.</param>
- <param name="name">Name of the variable in shader code.</param>
- <param name="nameID">Property name ID. Use Shader.PropertyToID to get this ID.</param>
- <param name="val">Value to set.</param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.SetComputeFloatParam(UnityEngine.ComputeShader,System.Int32,System.Single)">
- <summary>
- <para>Adds a command to set a float parameter on a ComputeShader.</para>
- </summary>
- <param name="computeShader">ComputeShader to set parameter for.</param>
- <param name="name">Name of the variable in shader code.</param>
- <param name="nameID">Property name ID. Use Shader.PropertyToID to get this ID.</param>
- <param name="val">Value to set.</param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.SetComputeFloatParams(UnityEngine.ComputeShader,System.String,System.Single[])">
- <summary>
- <para>Adds a command to set multiple consecutive float parameters on a ComputeShader.</para>
- </summary>
- <param name="computeShader">ComputeShader to set parameter for.</param>
- <param name="name">Name of the variable in shader code.</param>
- <param name="nameID">Property name ID. Use Shader.PropertyToID to get this ID.</param>
- <param name="values">Values to set.</param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.SetComputeFloatParams(UnityEngine.ComputeShader,System.Int32,System.Single[])">
- <summary>
- <para>Adds a command to set multiple consecutive float parameters on a ComputeShader.</para>
- </summary>
- <param name="computeShader">ComputeShader to set parameter for.</param>
- <param name="name">Name of the variable in shader code.</param>
- <param name="nameID">Property name ID. Use Shader.PropertyToID to get this ID.</param>
- <param name="values">Values to set.</param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.SetComputeIntParam(UnityEngine.ComputeShader,System.String,System.Int32)">
- <summary>
- <para>Adds a command to set an integer parameter on a ComputeShader.</para>
- </summary>
- <param name="computeShader">ComputeShader to set parameter for.</param>
- <param name="name">Name of the variable in shader code.</param>
- <param name="nameID">Property name ID. Use Shader.PropertyToID to get this ID.</param>
- <param name="val">Value to set.</param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.SetComputeIntParam(UnityEngine.ComputeShader,System.Int32,System.Int32)">
- <summary>
- <para>Adds a command to set an integer parameter on a ComputeShader.</para>
- </summary>
- <param name="computeShader">ComputeShader to set parameter for.</param>
- <param name="name">Name of the variable in shader code.</param>
- <param name="nameID">Property name ID. Use Shader.PropertyToID to get this ID.</param>
- <param name="val">Value to set.</param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.SetComputeIntParams(UnityEngine.ComputeShader,System.String,System.Int32[])">
- <summary>
- <para>Adds a command to set multiple consecutive integer parameters on a ComputeShader.</para>
- </summary>
- <param name="computeShader">ComputeShader to set parameter for.</param>
- <param name="name">Name of the variable in shader code.</param>
- <param name="nameID">Property name ID. Use Shader.PropertyToID to get this ID.</param>
- <param name="values">Values to set.</param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.SetComputeIntParams(UnityEngine.ComputeShader,System.Int32,System.Int32[])">
- <summary>
- <para>Adds a command to set multiple consecutive integer parameters on a ComputeShader.</para>
- </summary>
- <param name="computeShader">ComputeShader to set parameter for.</param>
- <param name="name">Name of the variable in shader code.</param>
- <param name="nameID">Property name ID. Use Shader.PropertyToID to get this ID.</param>
- <param name="values">Values to set.</param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.SetComputeMatrixArrayParam(UnityEngine.ComputeShader,System.String,UnityEngine.Matrix4x4[])">
- <summary>
- <para>Adds a command to set a matrix array parameter on a ComputeShader.</para>
- </summary>
- <param name="computeShader">ComputeShader to set parameter for.</param>
- <param name="name">Name of the variable in shader code.</param>
- <param name="nameID">Property name ID. Use Shader.PropertyToID to get this ID.</param>
- <param name="values">Value to set.</param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.SetComputeMatrixArrayParam(UnityEngine.ComputeShader,System.Int32,UnityEngine.Matrix4x4[])">
- <summary>
- <para>Adds a command to set a matrix array parameter on a ComputeShader.</para>
- </summary>
- <param name="computeShader">ComputeShader to set parameter for.</param>
- <param name="name">Name of the variable in shader code.</param>
- <param name="nameID">Property name ID. Use Shader.PropertyToID to get this ID.</param>
- <param name="values">Value to set.</param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.SetComputeMatrixParam(UnityEngine.ComputeShader,System.String,UnityEngine.Matrix4x4)">
- <summary>
- <para>Adds a command to set a matrix parameter on a ComputeShader.</para>
- </summary>
- <param name="computeShader">ComputeShader to set parameter for.</param>
- <param name="name">Name of the variable in shader code.</param>
- <param name="nameID">Property name ID. Use Shader.PropertyToID to get this ID.</param>
- <param name="val">Value to set.</param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.SetComputeMatrixParam(UnityEngine.ComputeShader,System.Int32,UnityEngine.Matrix4x4)">
- <summary>
- <para>Adds a command to set a matrix parameter on a ComputeShader.</para>
- </summary>
- <param name="computeShader">ComputeShader to set parameter for.</param>
- <param name="name">Name of the variable in shader code.</param>
- <param name="nameID">Property name ID. Use Shader.PropertyToID to get this ID.</param>
- <param name="val">Value to set.</param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.SetComputeTextureParam(UnityEngine.ComputeShader,System.Int32,System.String,UnityEngine.Rendering.RenderTargetIdentifier)">
- <summary>
- <para>Adds a command to set a texture parameter on a ComputeShader.</para>
- </summary>
- <param name="computeShader">ComputeShader to set parameter for.</param>
- <param name="kernelIndex">Which kernel the texture is being set for. See ComputeShader.FindKernel.</param>
- <param name="name">Name of the texture variable in shader code.</param>
- <param name="nameID">Property name ID. Use Shader.PropertyToID to get this ID.</param>
- <param name="rt">Texture value or identifier to set, see RenderTargetIdentifier.</param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.SetComputeTextureParam(UnityEngine.ComputeShader,System.Int32,System.Int32,UnityEngine.Rendering.RenderTargetIdentifier)">
- <summary>
- <para>Adds a command to set a texture parameter on a ComputeShader.</para>
- </summary>
- <param name="computeShader">ComputeShader to set parameter for.</param>
- <param name="kernelIndex">Which kernel the texture is being set for. See ComputeShader.FindKernel.</param>
- <param name="name">Name of the texture variable in shader code.</param>
- <param name="nameID">Property name ID. Use Shader.PropertyToID to get this ID.</param>
- <param name="rt">Texture value or identifier to set, see RenderTargetIdentifier.</param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.SetComputeVectorArrayParam(UnityEngine.ComputeShader,System.String,UnityEngine.Vector4[])">
- <summary>
- <para>Adds a command to set a vector array parameter on a ComputeShader.</para>
- </summary>
- <param name="computeShader">ComputeShader to set parameter for.</param>
- <param name="name">Property name.</param>
- <param name="nameID">Property name ID. Use Shader.PropertyToID to get this ID.</param>
- <param name="values">Value to set.</param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.SetComputeVectorArrayParam(UnityEngine.ComputeShader,System.Int32,UnityEngine.Vector4[])">
- <summary>
- <para>Adds a command to set a vector array parameter on a ComputeShader.</para>
- </summary>
- <param name="computeShader">ComputeShader to set parameter for.</param>
- <param name="name">Property name.</param>
- <param name="nameID">Property name ID. Use Shader.PropertyToID to get this ID.</param>
- <param name="values">Value to set.</param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.SetComputeVectorParam(UnityEngine.ComputeShader,System.String,UnityEngine.Vector4)">
- <summary>
- <para>Adds a command to set a vector parameter on a ComputeShader.</para>
- </summary>
- <param name="computeShader">ComputeShader to set parameter for.</param>
- <param name="name">Name of the variable in shader code.</param>
- <param name="nameID">Property name ID. Use Shader.PropertyToID to get this ID.</param>
- <param name="val">Value to set.</param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.SetComputeVectorParam(UnityEngine.ComputeShader,System.Int32,UnityEngine.Vector4)">
- <summary>
- <para>Adds a command to set a vector parameter on a ComputeShader.</para>
- </summary>
- <param name="computeShader">ComputeShader to set parameter for.</param>
- <param name="name">Name of the variable in shader code.</param>
- <param name="nameID">Property name ID. Use Shader.PropertyToID to get this ID.</param>
- <param name="val">Value to set.</param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.SetGlobalBuffer(System.String,UnityEngine.ComputeBuffer)">
- <summary>
- <para>Add a "set global shader buffer property" command.</para>
- </summary>
- <param name="name"></param>
- <param name="value"></param>
- <param name="nameID"></param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.SetGlobalBuffer(System.Int32,UnityEngine.ComputeBuffer)">
- <summary>
- <para>Add a "set global shader buffer property" command.</para>
- </summary>
- <param name="name"></param>
- <param name="value"></param>
- <param name="nameID"></param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.SetGlobalColor(System.String,UnityEngine.Color)">
- <summary>
- <para>Add a "set global shader color property" command.</para>
- </summary>
- <param name="name"></param>
- <param name="value"></param>
- <param name="nameID"></param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.SetGlobalColor(System.Int32,UnityEngine.Color)">
- <summary>
- <para>Add a "set global shader color property" command.</para>
- </summary>
- <param name="name"></param>
- <param name="value"></param>
- <param name="nameID"></param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.SetGlobalDepthBias(System.Single,System.Single)">
- <summary>
- <para>Add a command to set global depth bias.</para>
- </summary>
- <param name="bias">Constant depth bias.</param>
- <param name="slopeBias">Slope-dependent depth bias.</param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.SetGlobalFloat(System.String,System.Single)">
- <summary>
- <para>Add a "set global shader float property" command.</para>
- </summary>
- <param name="name"></param>
- <param name="value"></param>
- <param name="nameID"></param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.SetGlobalFloat(System.Int32,System.Single)">
- <summary>
- <para>Add a "set global shader float property" command.</para>
- </summary>
- <param name="name"></param>
- <param name="value"></param>
- <param name="nameID"></param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.SetGlobalFloatArray(System.String,System.Single[])">
- <summary>
- <para>Add a "set global shader float array property" command.</para>
- </summary>
- <param name="propertyName"></param>
- <param name="values"></param>
- <param name="nameID"></param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.SetGlobalFloatArray(System.Int32,System.Single[])">
- <summary>
- <para>Add a "set global shader float array property" command.</para>
- </summary>
- <param name="propertyName"></param>
- <param name="values"></param>
- <param name="nameID"></param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.SetGlobalFloatArray(System.String,System.Collections.Generic.List`1&lt;System.Single&gt;)">
- <summary>
- <para>Add a "set global shader float array property" command.</para>
- </summary>
- <param name="propertyName"></param>
- <param name="values"></param>
- <param name="nameID"></param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.SetGlobalFloatArray(System.Int32,System.Collections.Generic.List`1&lt;System.Single&gt;)">
- <summary>
- <para>Add a "set global shader float array property" command.</para>
- </summary>
- <param name="propertyName"></param>
- <param name="values"></param>
- <param name="nameID"></param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.SetGlobalInt(System.String,System.Int32)">
- <summary>
- <para>Sets the given global integer property for all shaders.</para>
- </summary>
- <param name="name"></param>
- <param name="value"></param>
- <param name="nameID"></param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.SetGlobalInt(System.Int32,System.Int32)">
- <summary>
- <para>Sets the given global integer property for all shaders.</para>
- </summary>
- <param name="name"></param>
- <param name="value"></param>
- <param name="nameID"></param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.SetGlobalMatrix(System.String,UnityEngine.Matrix4x4)">
- <summary>
- <para>Add a "set global shader matrix property" command.</para>
- </summary>
- <param name="name"></param>
- <param name="value"></param>
- <param name="nameID"></param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.SetGlobalMatrix(System.Int32,UnityEngine.Matrix4x4)">
- <summary>
- <para>Add a "set global shader matrix property" command.</para>
- </summary>
- <param name="name"></param>
- <param name="value"></param>
- <param name="nameID"></param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.SetGlobalMatrixArray(System.String,UnityEngine.Matrix4x4[])">
- <summary>
- <para>Add a "set global shader matrix array property" command.</para>
- </summary>
- <param name="propertyName"></param>
- <param name="values"></param>
- <param name="nameID"></param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.SetGlobalMatrixArray(System.Int32,UnityEngine.Matrix4x4[])">
- <summary>
- <para>Add a "set global shader matrix array property" command.</para>
- </summary>
- <param name="propertyName"></param>
- <param name="values"></param>
- <param name="nameID"></param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.SetGlobalMatrixArray(System.String,System.Collections.Generic.List`1&lt;UnityEngine.Matrix4x4&gt;)">
- <summary>
- <para>Add a "set global shader matrix array property" command.</para>
- </summary>
- <param name="propertyName"></param>
- <param name="values"></param>
- <param name="nameID"></param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.SetGlobalMatrixArray(System.Int32,System.Collections.Generic.List`1&lt;UnityEngine.Matrix4x4&gt;)">
- <summary>
- <para>Add a "set global shader matrix array property" command.</para>
- </summary>
- <param name="propertyName"></param>
- <param name="values"></param>
- <param name="nameID"></param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.SetGlobalTexture(System.String,UnityEngine.Rendering.RenderTargetIdentifier)">
- <summary>
- <para>Add a "set global shader texture property" command, referencing a RenderTexture.</para>
- </summary>
- <param name="name"></param>
- <param name="value"></param>
- <param name="nameID"></param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.SetGlobalTexture(System.Int32,UnityEngine.Rendering.RenderTargetIdentifier)">
- <summary>
- <para>Add a "set global shader texture property" command, referencing a RenderTexture.</para>
- </summary>
- <param name="name"></param>
- <param name="value"></param>
- <param name="nameID"></param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.SetGlobalVector(System.String,UnityEngine.Vector4)">
- <summary>
- <para>Add a "set global shader vector property" command.</para>
- </summary>
- <param name="name"></param>
- <param name="value"></param>
- <param name="nameID"></param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.SetGlobalVector(System.Int32,UnityEngine.Vector4)">
- <summary>
- <para>Add a "set global shader vector property" command.</para>
- </summary>
- <param name="name"></param>
- <param name="value"></param>
- <param name="nameID"></param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.SetGlobalVectorArray(System.String,UnityEngine.Vector4[])">
- <summary>
- <para>Add a "set global shader vector array property" command.</para>
- </summary>
- <param name="propertyName"></param>
- <param name="values"></param>
- <param name="nameID"></param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.SetGlobalVectorArray(System.Int32,UnityEngine.Vector4[])">
- <summary>
- <para>Add a "set global shader vector array property" command.</para>
- </summary>
- <param name="propertyName"></param>
- <param name="values"></param>
- <param name="nameID"></param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.SetGlobalVectorArray(System.String,System.Collections.Generic.List`1&lt;UnityEngine.Vector4&gt;)">
- <summary>
- <para>Add a "set global shader vector array property" command.</para>
- </summary>
- <param name="propertyName"></param>
- <param name="values"></param>
- <param name="nameID"></param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.SetGlobalVectorArray(System.Int32,System.Collections.Generic.List`1&lt;UnityEngine.Vector4&gt;)">
- <summary>
- <para>Add a "set global shader vector array property" command.</para>
- </summary>
- <param name="propertyName"></param>
- <param name="values"></param>
- <param name="nameID"></param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.SetInvertCulling(System.Boolean)">
- <summary>
- <para>Add a "set invert culling" command to the buffer.</para>
- </summary>
- <param name="invertCulling">A boolean indicating whether to invert the backface culling (true) or not (false).</param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.SetProjectionMatrix(UnityEngine.Matrix4x4)">
- <summary>
- <para>Add a command to set the projection matrix.</para>
- </summary>
- <param name="proj">Projection (camera to clip space) matrix.</param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.SetRandomWriteTarget(System.Int32,UnityEngine.Rendering.RenderTargetIdentifier)">
- <summary>
- <para>Set random write target for level pixel shaders.</para>
- </summary>
- <param name="index">Index of the random write target in the shader.</param>
- <param name="buffer">ComputeBuffer to set as write targe.</param>
- <param name="preserveCounterValue">Whether to leave the append/consume counter value unchanged.</param>
- <param name="rt">RenderTargetIdentifier to set as write target.</param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.SetRandomWriteTarget(System.Int32,UnityEngine.ComputeBuffer,System.Boolean)">
- <summary>
- <para>Set random write target for level pixel shaders.</para>
- </summary>
- <param name="index">Index of the random write target in the shader.</param>
- <param name="buffer">ComputeBuffer to set as write targe.</param>
- <param name="preserveCounterValue">Whether to leave the append/consume counter value unchanged.</param>
- <param name="rt">RenderTargetIdentifier to set as write target.</param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.SetRenderTarget(UnityEngine.Rendering.RenderTargetIdentifier)">
- <summary>
- <para>Add a "set active render target" command.</para>
- </summary>
- <param name="rt">Render target to set for both color &amp; depth buffers.</param>
- <param name="color">Render target to set as a color buffer.</param>
- <param name="colors">Render targets to set as color buffers (MRT).</param>
- <param name="depth">Render target to set as a depth buffer.</param>
- <param name="mipLevel">The mip level of the render target to render into.</param>
- <param name="cubemapFace">The cubemap face of a cubemap render target to render into.</param>
- <param name="depthSlice">Slice of a 3D or array render target to set.</param>
- <param name="loadAction">Load action that is used for color and depth/stencil buffers.</param>
- <param name="storeAction">Store action that is used for color and depth/stencil buffers.</param>
- <param name="colorLoadAction">Load action that is used for the color buffer.</param>
- <param name="colorStoreAction">Store action that is used for the color buffer.</param>
- <param name="depthLoadAction">Load action that is used for the depth/stencil buffer.</param>
- <param name="depthStoreAction">Store action that is used for the depth/stencil buffer.</param>
- <param name="binding"></param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.SetRenderTarget(UnityEngine.Rendering.RenderTargetIdentifier,UnityEngine.Rendering.RenderBufferLoadAction,UnityEngine.Rendering.RenderBufferStoreAction)">
- <summary>
- <para>Add a "set active render target" command.</para>
- </summary>
- <param name="rt">Render target to set for both color &amp; depth buffers.</param>
- <param name="color">Render target to set as a color buffer.</param>
- <param name="colors">Render targets to set as color buffers (MRT).</param>
- <param name="depth">Render target to set as a depth buffer.</param>
- <param name="mipLevel">The mip level of the render target to render into.</param>
- <param name="cubemapFace">The cubemap face of a cubemap render target to render into.</param>
- <param name="depthSlice">Slice of a 3D or array render target to set.</param>
- <param name="loadAction">Load action that is used for color and depth/stencil buffers.</param>
- <param name="storeAction">Store action that is used for color and depth/stencil buffers.</param>
- <param name="colorLoadAction">Load action that is used for the color buffer.</param>
- <param name="colorStoreAction">Store action that is used for the color buffer.</param>
- <param name="depthLoadAction">Load action that is used for the depth/stencil buffer.</param>
- <param name="depthStoreAction">Store action that is used for the depth/stencil buffer.</param>
- <param name="binding"></param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.SetRenderTarget(UnityEngine.Rendering.RenderTargetIdentifier,UnityEngine.Rendering.RenderBufferLoadAction,UnityEngine.Rendering.RenderBufferStoreAction,UnityEngine.Rendering.RenderBufferLoadAction,UnityEngine.Rendering.RenderBufferStoreAction)">
- <summary>
- <para>Add a "set active render target" command.</para>
- </summary>
- <param name="rt">Render target to set for both color &amp; depth buffers.</param>
- <param name="color">Render target to set as a color buffer.</param>
- <param name="colors">Render targets to set as color buffers (MRT).</param>
- <param name="depth">Render target to set as a depth buffer.</param>
- <param name="mipLevel">The mip level of the render target to render into.</param>
- <param name="cubemapFace">The cubemap face of a cubemap render target to render into.</param>
- <param name="depthSlice">Slice of a 3D or array render target to set.</param>
- <param name="loadAction">Load action that is used for color and depth/stencil buffers.</param>
- <param name="storeAction">Store action that is used for color and depth/stencil buffers.</param>
- <param name="colorLoadAction">Load action that is used for the color buffer.</param>
- <param name="colorStoreAction">Store action that is used for the color buffer.</param>
- <param name="depthLoadAction">Load action that is used for the depth/stencil buffer.</param>
- <param name="depthStoreAction">Store action that is used for the depth/stencil buffer.</param>
- <param name="binding"></param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.SetRenderTarget(UnityEngine.Rendering.RenderTargetIdentifier,System.Int32)">
- <summary>
- <para>Add a "set active render target" command.</para>
- </summary>
- <param name="rt">Render target to set for both color &amp; depth buffers.</param>
- <param name="color">Render target to set as a color buffer.</param>
- <param name="colors">Render targets to set as color buffers (MRT).</param>
- <param name="depth">Render target to set as a depth buffer.</param>
- <param name="mipLevel">The mip level of the render target to render into.</param>
- <param name="cubemapFace">The cubemap face of a cubemap render target to render into.</param>
- <param name="depthSlice">Slice of a 3D or array render target to set.</param>
- <param name="loadAction">Load action that is used for color and depth/stencil buffers.</param>
- <param name="storeAction">Store action that is used for color and depth/stencil buffers.</param>
- <param name="colorLoadAction">Load action that is used for the color buffer.</param>
- <param name="colorStoreAction">Store action that is used for the color buffer.</param>
- <param name="depthLoadAction">Load action that is used for the depth/stencil buffer.</param>
- <param name="depthStoreAction">Store action that is used for the depth/stencil buffer.</param>
- <param name="binding"></param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.SetRenderTarget(UnityEngine.Rendering.RenderTargetIdentifier,System.Int32,UnityEngine.CubemapFace)">
- <summary>
- <para>Add a "set active render target" command.</para>
- </summary>
- <param name="rt">Render target to set for both color &amp; depth buffers.</param>
- <param name="color">Render target to set as a color buffer.</param>
- <param name="colors">Render targets to set as color buffers (MRT).</param>
- <param name="depth">Render target to set as a depth buffer.</param>
- <param name="mipLevel">The mip level of the render target to render into.</param>
- <param name="cubemapFace">The cubemap face of a cubemap render target to render into.</param>
- <param name="depthSlice">Slice of a 3D or array render target to set.</param>
- <param name="loadAction">Load action that is used for color and depth/stencil buffers.</param>
- <param name="storeAction">Store action that is used for color and depth/stencil buffers.</param>
- <param name="colorLoadAction">Load action that is used for the color buffer.</param>
- <param name="colorStoreAction">Store action that is used for the color buffer.</param>
- <param name="depthLoadAction">Load action that is used for the depth/stencil buffer.</param>
- <param name="depthStoreAction">Store action that is used for the depth/stencil buffer.</param>
- <param name="binding"></param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.SetRenderTarget(UnityEngine.Rendering.RenderTargetIdentifier,System.Int32,UnityEngine.CubemapFace,System.Int32)">
- <summary>
- <para>Add a "set active render target" command.</para>
- </summary>
- <param name="rt">Render target to set for both color &amp; depth buffers.</param>
- <param name="color">Render target to set as a color buffer.</param>
- <param name="colors">Render targets to set as color buffers (MRT).</param>
- <param name="depth">Render target to set as a depth buffer.</param>
- <param name="mipLevel">The mip level of the render target to render into.</param>
- <param name="cubemapFace">The cubemap face of a cubemap render target to render into.</param>
- <param name="depthSlice">Slice of a 3D or array render target to set.</param>
- <param name="loadAction">Load action that is used for color and depth/stencil buffers.</param>
- <param name="storeAction">Store action that is used for color and depth/stencil buffers.</param>
- <param name="colorLoadAction">Load action that is used for the color buffer.</param>
- <param name="colorStoreAction">Store action that is used for the color buffer.</param>
- <param name="depthLoadAction">Load action that is used for the depth/stencil buffer.</param>
- <param name="depthStoreAction">Store action that is used for the depth/stencil buffer.</param>
- <param name="binding"></param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.SetRenderTarget(UnityEngine.Rendering.RenderTargetIdentifier,UnityEngine.Rendering.RenderTargetIdentifier)">
- <summary>
- <para>Add a "set active render target" command.</para>
- </summary>
- <param name="rt">Render target to set for both color &amp; depth buffers.</param>
- <param name="color">Render target to set as a color buffer.</param>
- <param name="colors">Render targets to set as color buffers (MRT).</param>
- <param name="depth">Render target to set as a depth buffer.</param>
- <param name="mipLevel">The mip level of the render target to render into.</param>
- <param name="cubemapFace">The cubemap face of a cubemap render target to render into.</param>
- <param name="depthSlice">Slice of a 3D or array render target to set.</param>
- <param name="loadAction">Load action that is used for color and depth/stencil buffers.</param>
- <param name="storeAction">Store action that is used for color and depth/stencil buffers.</param>
- <param name="colorLoadAction">Load action that is used for the color buffer.</param>
- <param name="colorStoreAction">Store action that is used for the color buffer.</param>
- <param name="depthLoadAction">Load action that is used for the depth/stencil buffer.</param>
- <param name="depthStoreAction">Store action that is used for the depth/stencil buffer.</param>
- <param name="binding"></param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.SetRenderTarget(UnityEngine.Rendering.RenderTargetIdentifier,UnityEngine.Rendering.RenderBufferLoadAction,UnityEngine.Rendering.RenderBufferStoreAction,UnityEngine.Rendering.RenderTargetIdentifier,UnityEngine.Rendering.RenderBufferLoadAction,UnityEngine.Rendering.RenderBufferStoreAction)">
- <summary>
- <para>Add a "set active render target" command.</para>
- </summary>
- <param name="rt">Render target to set for both color &amp; depth buffers.</param>
- <param name="color">Render target to set as a color buffer.</param>
- <param name="colors">Render targets to set as color buffers (MRT).</param>
- <param name="depth">Render target to set as a depth buffer.</param>
- <param name="mipLevel">The mip level of the render target to render into.</param>
- <param name="cubemapFace">The cubemap face of a cubemap render target to render into.</param>
- <param name="depthSlice">Slice of a 3D or array render target to set.</param>
- <param name="loadAction">Load action that is used for color and depth/stencil buffers.</param>
- <param name="storeAction">Store action that is used for color and depth/stencil buffers.</param>
- <param name="colorLoadAction">Load action that is used for the color buffer.</param>
- <param name="colorStoreAction">Store action that is used for the color buffer.</param>
- <param name="depthLoadAction">Load action that is used for the depth/stencil buffer.</param>
- <param name="depthStoreAction">Store action that is used for the depth/stencil buffer.</param>
- <param name="binding"></param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.SetRenderTarget(UnityEngine.Rendering.RenderTargetIdentifier,UnityEngine.Rendering.RenderTargetIdentifier,System.Int32)">
- <summary>
- <para>Add a "set active render target" command.</para>
- </summary>
- <param name="rt">Render target to set for both color &amp; depth buffers.</param>
- <param name="color">Render target to set as a color buffer.</param>
- <param name="colors">Render targets to set as color buffers (MRT).</param>
- <param name="depth">Render target to set as a depth buffer.</param>
- <param name="mipLevel">The mip level of the render target to render into.</param>
- <param name="cubemapFace">The cubemap face of a cubemap render target to render into.</param>
- <param name="depthSlice">Slice of a 3D or array render target to set.</param>
- <param name="loadAction">Load action that is used for color and depth/stencil buffers.</param>
- <param name="storeAction">Store action that is used for color and depth/stencil buffers.</param>
- <param name="colorLoadAction">Load action that is used for the color buffer.</param>
- <param name="colorStoreAction">Store action that is used for the color buffer.</param>
- <param name="depthLoadAction">Load action that is used for the depth/stencil buffer.</param>
- <param name="depthStoreAction">Store action that is used for the depth/stencil buffer.</param>
- <param name="binding"></param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.SetRenderTarget(UnityEngine.Rendering.RenderTargetIdentifier,UnityEngine.Rendering.RenderTargetIdentifier,System.Int32,UnityEngine.CubemapFace)">
- <summary>
- <para>Add a "set active render target" command.</para>
- </summary>
- <param name="rt">Render target to set for both color &amp; depth buffers.</param>
- <param name="color">Render target to set as a color buffer.</param>
- <param name="colors">Render targets to set as color buffers (MRT).</param>
- <param name="depth">Render target to set as a depth buffer.</param>
- <param name="mipLevel">The mip level of the render target to render into.</param>
- <param name="cubemapFace">The cubemap face of a cubemap render target to render into.</param>
- <param name="depthSlice">Slice of a 3D or array render target to set.</param>
- <param name="loadAction">Load action that is used for color and depth/stencil buffers.</param>
- <param name="storeAction">Store action that is used for color and depth/stencil buffers.</param>
- <param name="colorLoadAction">Load action that is used for the color buffer.</param>
- <param name="colorStoreAction">Store action that is used for the color buffer.</param>
- <param name="depthLoadAction">Load action that is used for the depth/stencil buffer.</param>
- <param name="depthStoreAction">Store action that is used for the depth/stencil buffer.</param>
- <param name="binding"></param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.SetRenderTarget(UnityEngine.Rendering.RenderTargetIdentifier,UnityEngine.Rendering.RenderTargetIdentifier,System.Int32,UnityEngine.CubemapFace,System.Int32)">
- <summary>
- <para>Add a "set active render target" command.</para>
- </summary>
- <param name="rt">Render target to set for both color &amp; depth buffers.</param>
- <param name="color">Render target to set as a color buffer.</param>
- <param name="colors">Render targets to set as color buffers (MRT).</param>
- <param name="depth">Render target to set as a depth buffer.</param>
- <param name="mipLevel">The mip level of the render target to render into.</param>
- <param name="cubemapFace">The cubemap face of a cubemap render target to render into.</param>
- <param name="depthSlice">Slice of a 3D or array render target to set.</param>
- <param name="loadAction">Load action that is used for color and depth/stencil buffers.</param>
- <param name="storeAction">Store action that is used for color and depth/stencil buffers.</param>
- <param name="colorLoadAction">Load action that is used for the color buffer.</param>
- <param name="colorStoreAction">Store action that is used for the color buffer.</param>
- <param name="depthLoadAction">Load action that is used for the depth/stencil buffer.</param>
- <param name="depthStoreAction">Store action that is used for the depth/stencil buffer.</param>
- <param name="binding"></param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.SetRenderTarget(UnityEngine.Rendering.RenderTargetIdentifier[],UnityEngine.Rendering.RenderTargetIdentifier)">
- <summary>
- <para>Add a "set active render target" command.</para>
- </summary>
- <param name="rt">Render target to set for both color &amp; depth buffers.</param>
- <param name="color">Render target to set as a color buffer.</param>
- <param name="colors">Render targets to set as color buffers (MRT).</param>
- <param name="depth">Render target to set as a depth buffer.</param>
- <param name="mipLevel">The mip level of the render target to render into.</param>
- <param name="cubemapFace">The cubemap face of a cubemap render target to render into.</param>
- <param name="depthSlice">Slice of a 3D or array render target to set.</param>
- <param name="loadAction">Load action that is used for color and depth/stencil buffers.</param>
- <param name="storeAction">Store action that is used for color and depth/stencil buffers.</param>
- <param name="colorLoadAction">Load action that is used for the color buffer.</param>
- <param name="colorStoreAction">Store action that is used for the color buffer.</param>
- <param name="depthLoadAction">Load action that is used for the depth/stencil buffer.</param>
- <param name="depthStoreAction">Store action that is used for the depth/stencil buffer.</param>
- <param name="binding"></param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.SetRenderTarget(UnityEngine.Rendering.RenderTargetBinding)">
- <summary>
- <para>Add a "set active render target" command.</para>
- </summary>
- <param name="rt">Render target to set for both color &amp; depth buffers.</param>
- <param name="color">Render target to set as a color buffer.</param>
- <param name="colors">Render targets to set as color buffers (MRT).</param>
- <param name="depth">Render target to set as a depth buffer.</param>
- <param name="mipLevel">The mip level of the render target to render into.</param>
- <param name="cubemapFace">The cubemap face of a cubemap render target to render into.</param>
- <param name="depthSlice">Slice of a 3D or array render target to set.</param>
- <param name="loadAction">Load action that is used for color and depth/stencil buffers.</param>
- <param name="storeAction">Store action that is used for color and depth/stencil buffers.</param>
- <param name="colorLoadAction">Load action that is used for the color buffer.</param>
- <param name="colorStoreAction">Store action that is used for the color buffer.</param>
- <param name="depthLoadAction">Load action that is used for the depth/stencil buffer.</param>
- <param name="depthStoreAction">Store action that is used for the depth/stencil buffer.</param>
- <param name="binding"></param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.SetShadowSamplingMode(UnityEngine.Rendering.RenderTargetIdentifier,UnityEngine.Rendering.ShadowSamplingMode)">
- <summary>
- <para>Add a "set shadow sampling mode" command.</para>
- </summary>
- <param name="shadowmap">Shadowmap render target to change the sampling mode on.</param>
- <param name="mode">New sampling mode.</param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.SetViewMatrix(UnityEngine.Matrix4x4)">
- <summary>
- <para>Add a command to set the view matrix.</para>
- </summary>
- <param name="view">View (world to camera space) matrix.</param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.SetViewport(UnityEngine.Rect)">
- <summary>
- <para>Add a command to set the rendering viewport.</para>
- </summary>
- <param name="pixelRect">Viewport rectangle in pixel coordinates.</param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.SetViewProjectionMatrices(UnityEngine.Matrix4x4,UnityEngine.Matrix4x4)">
- <summary>
- <para>Add a command to set the view and projection matrices.</para>
- </summary>
- <param name="view">View (world to camera space) matrix.</param>
- <param name="proj">Projection (camera to clip space) matrix.</param>
- </member>
- <member name="M:UnityEngine.Rendering.CommandBuffer.WaitOnGPUFence(UnityEngine.Rendering.GPUFence,UnityEngine.Rendering.SynchronisationStage)">
- <summary>
- <para>Instructs the GPU to wait until the given GPUFence is passed.</para>
- </summary>
- <param name="fence">The GPUFence that the GPU will be instructed to wait upon.</param>
- <param name="stage">On some platforms there is a significant gap between the vertex processing completing and the pixel processing completing for a given draw call. This parameter allows for requested wait to be before the next items vertex or pixel processing begins. Some platforms can not differentiate between the start of vertex and pixel processing, these platforms will wait before the next items vertex processing. If a compute shader dispatch is the next item to be submitted then this parameter is ignored.</param>
- </member>
- <member name="T:UnityEngine.Rendering.CompareFunction">
- <summary>
- <para>Depth or stencil comparison function.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.CompareFunction.Always">
- <summary>
- <para>Always pass depth or stencil test.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.CompareFunction.Disabled">
- <summary>
- <para>Depth or stencil test is disabled.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.CompareFunction.Equal">
- <summary>
- <para>Pass depth or stencil test when values are equal.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.CompareFunction.Greater">
- <summary>
- <para>Pass depth or stencil test when new value is greater than old one.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.CompareFunction.GreaterEqual">
- <summary>
- <para>Pass depth or stencil test when new value is greater or equal than old one.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.CompareFunction.Less">
- <summary>
- <para>Pass depth or stencil test when new value is less than old one.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.CompareFunction.LessEqual">
- <summary>
- <para>Pass depth or stencil test when new value is less or equal than old one.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.CompareFunction.Never">
- <summary>
- <para>Never pass depth or stencil test.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.CompareFunction.NotEqual">
- <summary>
- <para>Pass depth or stencil test when values are different.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Rendering.ComputeQueueType">
- <summary>
- <para>Describes the desired characteristics with respect to prioritisation and load balancing of the queue that a command buffer being submitted via Graphics.ExecuteCommandBufferAsync or [[ScriptableRenderContext.ExecuteCommandBufferAsync] should be sent to.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.ComputeQueueType.Background">
- <summary>
- <para>Background queue types would be the choice for tasks intended to run for an extended period of time, e.g for most of a frame or for several frames. Dispatches on background queues would execute at a lower priority than gfx queue tasks.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.ComputeQueueType.Default">
- <summary>
- <para>This queue type would be the choice for compute tasks supporting or as optimisations to graphics processing. CommandBuffers sent to this queue would be expected to complete within the scope of a single frame and likely be synchronised with the graphics queue via GPUFence’s. Dispatches on default queue types would execute at a lower priority than graphics queue tasks.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.ComputeQueueType.Urgent">
- <summary>
- <para>This queue type would be the choice for compute tasks requiring processing as soon as possible and would be prioritised over the graphics queue.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Rendering.CopyTextureSupport">
- <summary>
- <para>Support for various Graphics.CopyTexture cases.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.CopyTextureSupport.Basic">
- <summary>
- <para>Basic Graphics.CopyTexture support.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.CopyTextureSupport.Copy3D">
- <summary>
- <para>Support for Texture3D in Graphics.CopyTexture.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.CopyTextureSupport.DifferentTypes">
- <summary>
- <para>Support for Graphics.CopyTexture between different texture types.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.CopyTextureSupport.None">
- <summary>
- <para>No support for Graphics.CopyTexture.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.CopyTextureSupport.RTToTexture">
- <summary>
- <para>Support for RenderTexture to Texture copies in Graphics.CopyTexture.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.CopyTextureSupport.TextureToRT">
- <summary>
- <para>Support for Texture to RenderTexture copies in Graphics.CopyTexture.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Rendering.CullMode">
- <summary>
- <para>Backface culling mode.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.CullMode.Back">
- <summary>
- <para>Cull back-facing geometry.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.CullMode.Front">
- <summary>
- <para>Cull front-facing geometry.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.CullMode.Off">
- <summary>
- <para>Disable culling.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Rendering.DefaultReflectionMode">
- <summary>
- <para>Default reflection mode.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.DefaultReflectionMode.Custom">
- <summary>
- <para>Custom default reflection.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.DefaultReflectionMode.Skybox">
- <summary>
- <para>Skybox-based default reflection.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Rendering.GPUFence">
- <summary>
- <para>Used to manage synchronisation between tasks on async compute queues and the graphics queue.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rendering.GPUFence.passed">
- <summary>
- <para>Has the GPUFence passed?
-
-Allows for CPU determination of whether the GPU has passed the point in its processing represented by the GPUFence.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Rendering.GraphicsDeviceType">
- <summary>
- <para>Graphics device API type.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.GraphicsDeviceType.Direct3D11">
- <summary>
- <para>Direct3D 11 graphics API.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.GraphicsDeviceType.Direct3D12">
- <summary>
- <para>Direct3D 12 graphics API.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.GraphicsDeviceType.Direct3D9">
- <summary>
- <para>Direct3D 9 graphics API.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.GraphicsDeviceType.Metal">
- <summary>
- <para>iOS Metal graphics API.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.GraphicsDeviceType.N3DS">
- <summary>
- <para>Nintendo 3DS graphics API.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.GraphicsDeviceType.Null">
- <summary>
- <para>No graphics API.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.GraphicsDeviceType.OpenGL2">
- <summary>
- <para>OpenGL 2.x graphics API. (deprecated, only available on Linux and MacOSX)</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.GraphicsDeviceType.OpenGLCore">
- <summary>
- <para>OpenGL (Core profile - GL3 or later) graphics API.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.GraphicsDeviceType.OpenGLES2">
- <summary>
- <para>OpenGL ES 2.0 graphics API.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.GraphicsDeviceType.OpenGLES3">
- <summary>
- <para>OpenGL ES 3.0 graphics API.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.GraphicsDeviceType.PlayStation3">
- <summary>
- <para>PlayStation 3 graphics API.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.GraphicsDeviceType.PlayStation4">
- <summary>
- <para>PlayStation 4 graphics API.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.GraphicsDeviceType.PlayStationMobile">
- <summary>
- <para>PlayStation Mobile (PSM) graphics API.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.GraphicsDeviceType.PlayStationVita">
- <summary>
- <para>PlayStation Vita graphics API.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.GraphicsDeviceType.Switch">
- <summary>
- <para>Nintendo Switch graphics API.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.GraphicsDeviceType.Vulkan">
- <summary>
- <para>Vulkan (EXPERIMENTAL).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.GraphicsDeviceType.XboxOne">
- <summary>
- <para>Xbox One graphics API using Direct3D 11.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.GraphicsDeviceType.XboxOneD3D12">
- <summary>
- <para>Xbox One graphics API using Direct3D 12.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Rendering.GraphicsSettings">
- <summary>
- <para>Script interface for.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rendering.GraphicsSettings.lightsUseColorTemperature">
- <summary>
- <para>Whether to use a Light's color temperature when calculating the final color of that Light."</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rendering.GraphicsSettings.lightsUseLinearIntensity">
- <summary>
- <para>If this is true, Light intensity is multiplied against linear color values. If it is false, gamma color values are used.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rendering.GraphicsSettings.renderPipelineAsset">
- <summary>
- <para>The RenderPipelineAsset that describes how the Scene should be rendered.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rendering.GraphicsSettings.transparencySortAxis">
- <summary>
- <para>An axis that describes the direction along which the distances of objects are measured for the purpose of sorting.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rendering.GraphicsSettings.transparencySortMode">
- <summary>
- <para>Transparent object sorting mode.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rendering.GraphicsSettings.useScriptableRenderPipelineBatching">
- <summary>
- <para>Enable/Disable SRP batcher (experimental) at runtime.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Rendering.GraphicsSettings.GetCustomShader(UnityEngine.Rendering.BuiltinShaderType)">
- <summary>
- <para>Get custom shader used instead of a built-in shader.</para>
- </summary>
- <param name="type">Built-in shader type to query custom shader for.</param>
- <returns>
- <para>The shader used.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Rendering.GraphicsSettings.GetShaderMode(UnityEngine.Rendering.BuiltinShaderType)">
- <summary>
- <para>Get built-in shader mode.</para>
- </summary>
- <param name="type">Built-in shader type to query.</param>
- <returns>
- <para>Mode used for built-in shader.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Rendering.GraphicsSettings.HasShaderDefine(UnityEngine.Rendering.GraphicsTier,UnityEngine.Rendering.BuiltinShaderDefine)">
- <summary>
- <para>Returns true if shader define was set when compiling shaders for current GraphicsTier.</para>
- </summary>
- <param name="tier"></param>
- <param name="defineHash"></param>
- </member>
- <member name="M:UnityEngine.Rendering.GraphicsSettings.HasShaderDefine(UnityEngine.Rendering.BuiltinShaderDefine)">
- <summary>
- <para>Returns true if shader define was set when compiling shaders for given tier.</para>
- </summary>
- <param name="defineHash"></param>
- </member>
- <member name="M:UnityEngine.Rendering.GraphicsSettings.SetCustomShader(UnityEngine.Rendering.BuiltinShaderType,UnityEngine.Shader)">
- <summary>
- <para>Set custom shader to use instead of a built-in shader.</para>
- </summary>
- <param name="type">Built-in shader type to set custom shader to.</param>
- <param name="shader">The shader to use.</param>
- </member>
- <member name="M:UnityEngine.Rendering.GraphicsSettings.SetShaderMode(UnityEngine.Rendering.BuiltinShaderType,UnityEngine.Rendering.BuiltinShaderMode)">
- <summary>
- <para>Set built-in shader mode.</para>
- </summary>
- <param name="type">Built-in shader type to change.</param>
- <param name="mode">Mode to use for built-in shader.</param>
- </member>
- <member name="T:UnityEngine.Rendering.GraphicsTier">
- <summary>
- <para>Graphics Tier.
-See Also: Graphics.activeTier.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.GraphicsTier.Tier1">
- <summary>
- <para>The first graphics tier (Low) - corresponds to shader define UNITY_HARDWARE_TIER1.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.GraphicsTier.Tier2">
- <summary>
- <para>The second graphics tier (Medium) - corresponds to shader define UNITY_HARDWARE_TIER2.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.GraphicsTier.Tier3">
- <summary>
- <para>The third graphics tier (High) - corresponds to shader define UNITY_HARDWARE_TIER3.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Rendering.IndexFormat">
- <summary>
- <para>Format of the mesh index buffer data.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.IndexFormat.UInt16">
- <summary>
- <para>16 bit mesh index buffer format.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.IndexFormat.UInt32">
- <summary>
- <para>32 bit mesh index buffer format.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Rendering.LightEvent">
- <summary>
- <para>Defines a place in light's rendering to attach Rendering.CommandBuffer objects to.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.LightEvent.AfterScreenspaceMask">
- <summary>
- <para>After directional light screenspace shadow mask is computed.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.LightEvent.AfterShadowMap">
- <summary>
- <para>After shadowmap is rendered.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.LightEvent.AfterShadowMapPass">
- <summary>
- <para>After shadowmap pass is rendered.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.LightEvent.BeforeScreenspaceMask">
- <summary>
- <para>Before directional light screenspace shadow mask is computed.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.LightEvent.BeforeShadowMap">
- <summary>
- <para>Before shadowmap is rendered.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.LightEvent.BeforeShadowMapPass">
- <summary>
- <para>Before shadowmap pass is rendered.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Rendering.LightProbeUsage">
- <summary>
- <para>Light probe interpolation type.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.LightProbeUsage.BlendProbes">
- <summary>
- <para>Simple light probe interpolation is used.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.LightProbeUsage.CustomProvided">
- <summary>
- <para>The light probe shader uniform values are extracted from the material property block set on the renderer.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.LightProbeUsage.Off">
- <summary>
- <para>Light Probes are not used. The scene's ambient probe is provided to the shader.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.LightProbeUsage.UseProxyVolume">
- <summary>
- <para>Uses a 3D grid of interpolated light probes.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Rendering.LightShadowResolution">
- <summary>
- <para>Shadow resolution options for a Light.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.LightShadowResolution.FromQualitySettings">
- <summary>
- <para>Use resolution from QualitySettings (default).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.LightShadowResolution.High">
- <summary>
- <para>High shadow map resolution.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.LightShadowResolution.Low">
- <summary>
- <para>Low shadow map resolution.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.LightShadowResolution.Medium">
- <summary>
- <para>Medium shadow map resolution.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.LightShadowResolution.VeryHigh">
- <summary>
- <para>Very high shadow map resolution.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Rendering.OpaqueSortMode">
- <summary>
- <para>Opaque object sorting mode of a Camera.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.OpaqueSortMode.Default">
- <summary>
- <para>Default opaque sorting mode.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.OpaqueSortMode.FrontToBack">
- <summary>
- <para>Do rough front-to-back sorting of opaque objects.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.OpaqueSortMode.NoDistanceSort">
- <summary>
- <para>Do not sort opaque objects by distance.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Rendering.PassType">
- <summary>
- <para>Shader pass type for Unity's lighting pipeline.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.PassType.Deferred">
- <summary>
- <para>Deferred Shading shader pass.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.PassType.ForwardAdd">
- <summary>
- <para>Forward rendering additive pixel light pass.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.PassType.ForwardBase">
- <summary>
- <para>Forward rendering base pass.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.PassType.LightPrePassBase">
- <summary>
- <para>Legacy deferred lighting (light pre-pass) base pass.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.PassType.LightPrePassFinal">
- <summary>
- <para>Legacy deferred lighting (light pre-pass) final pass.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.PassType.Meta">
- <summary>
- <para>Shader pass used to generate the albedo and emissive values used as input to lightmapping.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.PassType.MotionVectors">
- <summary>
- <para>Motion vector render pass.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.PassType.Normal">
- <summary>
- <para>Regular shader pass that does not interact with lighting.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.PassType.ScriptableRenderPipeline">
- <summary>
- <para>Custom scriptable pipeline.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.PassType.ScriptableRenderPipelineDefaultUnlit">
- <summary>
- <para>Custom scriptable pipeline when lightmode is set to default unlit or no light mode is set.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.PassType.ShadowCaster">
- <summary>
- <para>Shadow caster &amp; depth texure shader pass.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.PassType.Vertex">
- <summary>
- <para>Legacy vertex-lit shader pass.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.PassType.VertexLM">
- <summary>
- <para>Legacy vertex-lit shader pass, with mobile lightmaps.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.PassType.VertexLMRGBM">
- <summary>
- <para>Legacy vertex-lit shader pass, with desktop (RGBM) lightmaps.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Rendering.PlatformKeywordSet">
- <summary>
- <para>A collection of Rendering.ShaderKeyword that represents a specific platform variant.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Rendering.PlatformKeywordSet.Disable">
- <summary>
- <para>Disable a specific shader keyword.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Rendering.PlatformKeywordSet.Enable">
- <summary>
- <para>Enable a specific shader keyword.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Rendering.PlatformKeywordSet.IsEnabled(UnityEngine.Rendering.BuiltinShaderDefine)">
- <summary>
- <para>Check whether a specific shader keyword is enabled.</para>
- </summary>
- <param name="define"></param>
- </member>
- <member name="T:UnityEngine.Rendering.RealtimeGICPUUsage">
- <summary>
- <para>How much CPU usage to assign to the final lighting calculations at runtime.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.RealtimeGICPUUsage.High">
- <summary>
- <para>75% of the allowed CPU threads are used as worker threads.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.RealtimeGICPUUsage.Low">
- <summary>
- <para>25% of the allowed CPU threads are used as worker threads.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.RealtimeGICPUUsage.Medium">
- <summary>
- <para>50% of the allowed CPU threads are used as worker threads.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.RealtimeGICPUUsage.Unlimited">
- <summary>
- <para>100% of the allowed CPU threads are used as worker threads.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Rendering.ReflectionCubemapCompression">
- <summary>
- <para>Determines how Unity will compress baked reflection cubemap.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.ReflectionCubemapCompression.Auto">
- <summary>
- <para>Baked Reflection cubemap will be compressed if compression format is suitable.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.ReflectionCubemapCompression.Compressed">
- <summary>
- <para>Baked Reflection cubemap will be compressed.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.ReflectionCubemapCompression.Uncompressed">
- <summary>
- <para>Baked Reflection cubemap will be left uncompressed.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Rendering.ReflectionProbeBlendInfo">
- <summary>
- <para>ReflectionProbeBlendInfo contains information required for blending probes.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.ReflectionProbeBlendInfo.probe">
- <summary>
- <para>Reflection Probe used in blending.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.ReflectionProbeBlendInfo.weight">
- <summary>
- <para>Specifies the weight used in the interpolation between two probes, value varies from 0.0 to 1.0.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Rendering.ReflectionProbeClearFlags">
- <summary>
- <para>Values for ReflectionProbe.clearFlags, determining what to clear when rendering a ReflectionProbe.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.ReflectionProbeClearFlags.Skybox">
- <summary>
- <para>Clear with the skybox.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.ReflectionProbeClearFlags.SolidColor">
- <summary>
- <para>Clear with a background color.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Rendering.ReflectionProbeMode">
- <summary>
- <para>Reflection probe's update mode.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.ReflectionProbeMode.Baked">
- <summary>
- <para>Reflection probe is baked in the Editor.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.ReflectionProbeMode.Custom">
- <summary>
- <para>Reflection probe uses a custom texture specified by the user.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.ReflectionProbeMode.Realtime">
- <summary>
- <para>Reflection probe is updating in realtime.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Rendering.ReflectionProbeRefreshMode">
- <summary>
- <para>An enum describing the way a realtime reflection probe refreshes in the Player.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.ReflectionProbeRefreshMode.EveryFrame">
- <summary>
- <para>Causes Unity to update the probe's cubemap every frame.
-Note that updating a probe is very costly. Setting this option on too many probes could have a significant negative effect on frame rate. Use time-slicing to help improve performance.
-
-See Also: ReflectionProbeTimeSlicingMode.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.ReflectionProbeRefreshMode.OnAwake">
- <summary>
- <para>Causes the probe to update only on the first frame it becomes visible. The probe will no longer update automatically, however you may subsequently use RenderProbe to refresh the probe
-
-See Also: ReflectionProbe.RenderProbe.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.ReflectionProbeRefreshMode.ViaScripting">
- <summary>
- <para>Sets the probe to never be automatically updated by Unity while your game is running. Use this to completely control the probe refresh behavior by script.
-
-See Also: ReflectionProbe.RenderProbe.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Rendering.ReflectionProbeTimeSlicingMode">
- <summary>
- <para>When a probe's ReflectionProbe.refreshMode is set to ReflectionProbeRefreshMode.EveryFrame, this enum specify whether or not Unity should update the probe's cubemap over several frames or update the whole cubemap in one frame.
-Updating a probe's cubemap is a costly operation. Unity needs to render the entire scene for each face of the cubemap, as well as perform special blurring in order to get glossy reflections. The impact on frame rate can be significant. Time-slicing helps maintaning a more constant frame rate during these updates by performing the rendering over several frames.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.ReflectionProbeTimeSlicingMode.AllFacesAtOnce">
- <summary>
- <para>Instructs Unity to use time-slicing by first rendering all faces at once, then spreading the remaining work over the next 8 frames. Using this option, updating the probe will take 9 frames.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.ReflectionProbeTimeSlicingMode.IndividualFaces">
- <summary>
- <para>Instructs Unity to spread the rendering of each face over several frames. Using this option, updating the cubemap will take 14 frames. This option greatly reduces the impact on frame rate, however it may produce incorrect results, especially in scenes where lighting conditions change over these 14 frames.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.ReflectionProbeTimeSlicingMode.NoTimeSlicing">
- <summary>
- <para>Unity will render the probe entirely in one frame.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Rendering.ReflectionProbeUsage">
- <summary>
- <para>Reflection Probe usage.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.ReflectionProbeUsage.BlendProbes">
- <summary>
- <para>Reflection probes are enabled. Blending occurs only between probes, useful in indoor environments. The renderer will use default reflection if there are no reflection probes nearby, but no blending between default reflection and probe will occur.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.ReflectionProbeUsage.BlendProbesAndSkybox">
- <summary>
- <para>Reflection probes are enabled. Blending occurs between probes or probes and default reflection, useful for outdoor environments.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.ReflectionProbeUsage.Off">
- <summary>
- <para>Reflection probes are disabled, skybox will be used for reflection.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.ReflectionProbeUsage.Simple">
- <summary>
- <para>Reflection probes are enabled, but no blending will occur between probes when there are two overlapping volumes.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Rendering.RenderBufferLoadAction">
- <summary>
- <para>This enum describes what should be done on the render target when it is activated (loaded).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.RenderBufferLoadAction.Clear">
- <summary>
- <para>Upon activating the render buffer, clear its contents. Currently only works together with the RenderPass API.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.RenderBufferLoadAction.DontCare">
- <summary>
- <para>When this RenderBuffer is activated, the GPU is instructed not to care about the existing contents of that RenderBuffer. On tile-based GPUs this means that the RenderBuffer contents do not need to be loaded into the tile memory, providing a performance boost.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.RenderBufferLoadAction.Load">
- <summary>
- <para>When this RenderBuffer is activated, preserve the existing contents of it. This setting is expensive on tile-based GPUs and should be avoided whenever possible.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Rendering.RenderBufferStoreAction">
- <summary>
- <para>This enum describes what should be done on the render target when the GPU is done rendering into it.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.RenderBufferStoreAction.DontCare">
- <summary>
- <para>The contents of the RenderBuffer are not needed and can be discarded. Tile-based GPUs will skip writing out the surface contents altogether, providing performance boost.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.RenderBufferStoreAction.Resolve">
- <summary>
- <para>Resolve the (MSAA'd) surface. Currently only used with the RenderPass API.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.RenderBufferStoreAction.Store">
- <summary>
- <para>The RenderBuffer contents need to be stored to RAM. If the surface has MSAA enabled, this stores the non-resolved surface.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.RenderBufferStoreAction.StoreAndResolve">
- <summary>
- <para>Resolve the (MSAA'd) surface, but also store the multisampled version. Currently only used with the RenderPass API.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Rendering.RenderQueue">
- <summary>
- <para>Determine in which order objects are renderered.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.RenderQueue.AlphaTest">
- <summary>
- <para>Alpha tested geometry uses this queue.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.RenderQueue.Background">
- <summary>
- <para>This render queue is rendered before any others.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.RenderQueue.Geometry">
- <summary>
- <para>Opaque geometry uses this queue.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.RenderQueue.GeometryLast">
- <summary>
- <para>Last render queue that is considered "opaque".</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.RenderQueue.Overlay">
- <summary>
- <para>This render queue is meant for overlay effects.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.RenderQueue.Transparent">
- <summary>
- <para>This render queue is rendered after Geometry and AlphaTest, in back-to-front order.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Rendering.RenderTargetBinding">
- <summary>
- <para>Describes a render target with one or more color buffers, a depthstencil buffer and the associated loadstore-actions that are applied when the render target is active.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rendering.RenderTargetBinding.colorLoadActions">
- <summary>
- <para>Load actions for color buffers.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rendering.RenderTargetBinding.colorRenderTargets">
- <summary>
- <para>Color buffers to use as render targets.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rendering.RenderTargetBinding.colorStoreActions">
- <summary>
- <para>Store actions for color buffers.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rendering.RenderTargetBinding.depthLoadAction">
- <summary>
- <para>Load action for the depth/stencil buffer.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rendering.RenderTargetBinding.depthRenderTarget">
- <summary>
- <para>Depth/stencil buffer to use as render target.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rendering.RenderTargetBinding.depthStoreAction">
- <summary>
- <para>Store action for the depth/stencil buffer.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Rendering.RenderTargetBinding.#ctor(UnityEngine.Rendering.RenderTargetIdentifier,UnityEngine.Rendering.RenderBufferLoadAction,UnityEngine.Rendering.RenderBufferStoreAction,UnityEngine.Rendering.RenderTargetIdentifier,UnityEngine.Rendering.RenderBufferLoadAction,UnityEngine.Rendering.RenderBufferStoreAction)">
- <summary>
- <para>Constructs RenderTargetBinding.</para>
- </summary>
- <param name="color">Color buffers to use as render targets.</param>
- <param name="depth">Depth buffer to use as render target.</param>
- <param name="colorLoadAction">Load actions for color buffers.</param>
- <param name="colorStoreAction">Store actions for color buffers.</param>
- <param name="depthLoadAction">Load action for the depth/stencil buffer.</param>
- <param name="depthStoreAction">Store action for the depth/stencil buffer.</param>
- <param name="colorRenderTarget"></param>
- <param name="depthRenderTarget"></param>
- <param name="colorRenderTargets"></param>
- <param name="colorLoadActions"></param>
- <param name="colorStoreActions"></param>
- <param name="setup"></param>
- </member>
- <member name="M:UnityEngine.Rendering.RenderTargetBinding.#ctor(UnityEngine.Rendering.RenderTargetIdentifier[],UnityEngine.Rendering.RenderBufferLoadAction[],UnityEngine.Rendering.RenderBufferStoreAction[],UnityEngine.Rendering.RenderTargetIdentifier,UnityEngine.Rendering.RenderBufferLoadAction,UnityEngine.Rendering.RenderBufferStoreAction)">
- <summary>
- <para>Constructs RenderTargetBinding.</para>
- </summary>
- <param name="color">Color buffers to use as render targets.</param>
- <param name="depth">Depth buffer to use as render target.</param>
- <param name="colorLoadAction">Load actions for color buffers.</param>
- <param name="colorStoreAction">Store actions for color buffers.</param>
- <param name="depthLoadAction">Load action for the depth/stencil buffer.</param>
- <param name="depthStoreAction">Store action for the depth/stencil buffer.</param>
- <param name="colorRenderTarget"></param>
- <param name="depthRenderTarget"></param>
- <param name="colorRenderTargets"></param>
- <param name="colorLoadActions"></param>
- <param name="colorStoreActions"></param>
- <param name="setup"></param>
- </member>
- <member name="M:UnityEngine.Rendering.RenderTargetBinding.#ctor(UnityEngine.RenderTargetSetup)">
- <summary>
- <para>Constructs RenderTargetBinding.</para>
- </summary>
- <param name="color">Color buffers to use as render targets.</param>
- <param name="depth">Depth buffer to use as render target.</param>
- <param name="colorLoadAction">Load actions for color buffers.</param>
- <param name="colorStoreAction">Store actions for color buffers.</param>
- <param name="depthLoadAction">Load action for the depth/stencil buffer.</param>
- <param name="depthStoreAction">Store action for the depth/stencil buffer.</param>
- <param name="colorRenderTarget"></param>
- <param name="depthRenderTarget"></param>
- <param name="colorRenderTargets"></param>
- <param name="colorLoadActions"></param>
- <param name="colorStoreActions"></param>
- <param name="setup"></param>
- </member>
- <member name="T:UnityEngine.Rendering.RenderTargetIdentifier">
- <summary>
- <para>Identifies a RenderTexture for a Rendering.CommandBuffer.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Rendering.RenderTargetIdentifier.#ctor(UnityEngine.Rendering.BuiltinRenderTextureType)">
- <summary>
- <para>Creates a render target identifier.</para>
- </summary>
- <param name="type">Built-in temporary render texture type.</param>
- <param name="name">Temporary render texture name.</param>
- <param name="nameID">Temporary render texture name (as integer, see Shader.PropertyToID).</param>
- <param name="tex">RenderTexture or Texture object to use.</param>
- <param name="mipLevel">MipLevel of the RenderTexture to use.</param>
- <param name="cubemapFace">Cubemap face of the Cubemap RenderTexture to use.</param>
- <param name="depthSlice">Depth slice of the Array RenderTexture to use.</param>
- <param name="renderTargetIdentifier">An existing render target identifier.</param>
- <param name="cubeFace"></param>
- </member>
- <member name="M:UnityEngine.Rendering.RenderTargetIdentifier.#ctor(System.String)">
- <summary>
- <para>Creates a render target identifier.</para>
- </summary>
- <param name="type">Built-in temporary render texture type.</param>
- <param name="name">Temporary render texture name.</param>
- <param name="nameID">Temporary render texture name (as integer, see Shader.PropertyToID).</param>
- <param name="tex">RenderTexture or Texture object to use.</param>
- <param name="mipLevel">MipLevel of the RenderTexture to use.</param>
- <param name="cubemapFace">Cubemap face of the Cubemap RenderTexture to use.</param>
- <param name="depthSlice">Depth slice of the Array RenderTexture to use.</param>
- <param name="renderTargetIdentifier">An existing render target identifier.</param>
- <param name="cubeFace"></param>
- </member>
- <member name="M:UnityEngine.Rendering.RenderTargetIdentifier.#ctor(System.Int32)">
- <summary>
- <para>Creates a render target identifier.</para>
- </summary>
- <param name="type">Built-in temporary render texture type.</param>
- <param name="name">Temporary render texture name.</param>
- <param name="nameID">Temporary render texture name (as integer, see Shader.PropertyToID).</param>
- <param name="tex">RenderTexture or Texture object to use.</param>
- <param name="mipLevel">MipLevel of the RenderTexture to use.</param>
- <param name="cubemapFace">Cubemap face of the Cubemap RenderTexture to use.</param>
- <param name="depthSlice">Depth slice of the Array RenderTexture to use.</param>
- <param name="renderTargetIdentifier">An existing render target identifier.</param>
- <param name="cubeFace"></param>
- </member>
- <member name="M:UnityEngine.Rendering.RenderTargetIdentifier.#ctor(UnityEngine.Texture)">
- <summary>
- <para>Creates a render target identifier.</para>
- </summary>
- <param name="type">Built-in temporary render texture type.</param>
- <param name="name">Temporary render texture name.</param>
- <param name="nameID">Temporary render texture name (as integer, see Shader.PropertyToID).</param>
- <param name="tex">RenderTexture or Texture object to use.</param>
- <param name="mipLevel">MipLevel of the RenderTexture to use.</param>
- <param name="cubemapFace">Cubemap face of the Cubemap RenderTexture to use.</param>
- <param name="depthSlice">Depth slice of the Array RenderTexture to use.</param>
- <param name="renderTargetIdentifier">An existing render target identifier.</param>
- <param name="cubeFace"></param>
- </member>
- <member name="M:UnityEngine.Rendering.RenderTargetIdentifier.#ctor(UnityEngine.Rendering.RenderTargetIdentifier,System.Int32,UnityEngine.CubemapFace,System.Int32)">
- <summary>
- <para>Creates a render target identifier.</para>
- </summary>
- <param name="type">Built-in temporary render texture type.</param>
- <param name="name">Temporary render texture name.</param>
- <param name="nameID">Temporary render texture name (as integer, see Shader.PropertyToID).</param>
- <param name="tex">RenderTexture or Texture object to use.</param>
- <param name="mipLevel">MipLevel of the RenderTexture to use.</param>
- <param name="cubemapFace">Cubemap face of the Cubemap RenderTexture to use.</param>
- <param name="depthSlice">Depth slice of the Array RenderTexture to use.</param>
- <param name="renderTargetIdentifier">An existing render target identifier.</param>
- <param name="cubeFace"></param>
- </member>
- <member name="T:UnityEngine.Rendering.ShaderKeyword">
- <summary>
- <para>Identifier of a specific code path in a shader.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Rendering.ShaderKeyword.#ctor(System.String)">
- <summary>
- <para>Initializes a new instance of the ShaderKeyword class from a shader keyword name.</para>
- </summary>
- <param name="keywordName"></param>
- </member>
- <member name="M:UnityEngine.Rendering.ShaderKeyword.GetName">
- <summary>
- <para>Returns the string name of the keyword.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Rendering.ShaderKeyword.IsValid">
- <summary>
- <para>Returns true if the keyword has been imported by Unity.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Rendering.ShaderKeywordSet">
- <summary>
- <para>A collection of Rendering.ShaderKeyword that represents a specific shader variant.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Rendering.ShaderKeywordSet.Disable(UnityEngine.Rendering.ShaderKeyword)">
- <summary>
- <para>Disable a specific shader keyword.</para>
- </summary>
- <param name="keyword"></param>
- </member>
- <member name="M:UnityEngine.Rendering.ShaderKeywordSet.Enable(UnityEngine.Rendering.ShaderKeyword)">
- <summary>
- <para>Enable a specific shader keyword.</para>
- </summary>
- <param name="keyword"></param>
- </member>
- <member name="M:UnityEngine.Rendering.ShaderKeywordSet.GetShaderKeywords">
- <summary>
- <para>Return an array with all the enabled keywords in the ShaderKeywordSet.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Rendering.ShaderKeywordSet.IsEnabled(UnityEngine.Rendering.ShaderKeyword)">
- <summary>
- <para>Check whether a specific shader keyword is enabled.</para>
- </summary>
- <param name="keyword"></param>
- </member>
- <member name="T:UnityEngine.Rendering.ShadowCastingMode">
- <summary>
- <para>How shadows are cast from this object.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.ShadowCastingMode.Off">
- <summary>
- <para>No shadows are cast from this object.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.ShadowCastingMode.On">
- <summary>
- <para>Shadows are cast from this object.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.ShadowCastingMode.ShadowsOnly">
- <summary>
- <para>Object casts shadows, but is otherwise invisible in the scene.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.ShadowCastingMode.TwoSided">
- <summary>
- <para>Shadows are cast from this object, treating it as two-sided.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Rendering.ShadowMapPass">
- <summary>
- <para>Allows precise control over which shadow map passes to execute Rendering.CommandBuffer objects attached using Light.AddCommandBuffer.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.ShadowMapPass.All">
- <summary>
- <para>All shadow map passes.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.ShadowMapPass.Directional">
- <summary>
- <para>All directional shadow map passes.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.ShadowMapPass.DirectionalCascade0">
- <summary>
- <para>First directional shadow map cascade.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.ShadowMapPass.DirectionalCascade1">
- <summary>
- <para>Second directional shadow map cascade.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.ShadowMapPass.DirectionalCascade2">
- <summary>
- <para>Third directional shadow map cascade.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.ShadowMapPass.DirectionalCascade3">
- <summary>
- <para>Fourth directional shadow map cascade.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.ShadowMapPass.Pointlight">
- <summary>
- <para>All point light shadow passes.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.ShadowMapPass.PointlightNegativeX">
- <summary>
- <para>-X point light shadow cubemap face.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.ShadowMapPass.PointlightNegativeY">
- <summary>
- <para>-Y point light shadow cubemap face.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.ShadowMapPass.PointlightNegativeZ">
- <summary>
- <para>-Z point light shadow cubemap face.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.ShadowMapPass.PointlightPositiveX">
- <summary>
- <para>+X point light shadow cubemap face.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.ShadowMapPass.PointlightPositiveY">
- <summary>
- <para>+Y point light shadow cubemap face.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.ShadowMapPass.PointlightPositiveZ">
- <summary>
- <para>+Z point light shadow cubemap face.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.ShadowMapPass.Spotlight">
- <summary>
- <para>Spotlight shadow pass.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Rendering.ShadowSamplingMode">
- <summary>
- <para>Used by CommandBuffer.SetShadowSamplingMode.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.ShadowSamplingMode.CompareDepths">
- <summary>
- <para>Default shadow sampling mode: sampling with a comparison filter.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.ShadowSamplingMode.None">
- <summary>
- <para>In ShadowSamplingMode.None, depths are not compared. Use this value if a Texture is not a shadowmap.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.ShadowSamplingMode.RawDepth">
- <summary>
- <para>Shadow sampling mode for sampling the depth value.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Rendering.SortingGroup">
- <summary>
- <para>Adding a SortingGroup component to a GameObject will ensure that all Renderers within the GameObject's descendants will be sorted and rendered together.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rendering.SortingGroup.sortingLayerID">
- <summary>
- <para>Unique ID of the Renderer's sorting layer.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rendering.SortingGroup.sortingLayerName">
- <summary>
- <para>Name of the Renderer's sorting layer.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rendering.SortingGroup.sortingOrder">
- <summary>
- <para>Renderer's order within a sorting layer.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Rendering.SphericalHarmonicsL2">
- <summary>
- <para>Spherical harmonics up to the second order (3 bands, 9 coefficients).</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Rendering.SphericalHarmonicsL2.AddAmbientLight(UnityEngine.Color)">
- <summary>
- <para>Add ambient lighting to probe data.</para>
- </summary>
- <param name="color"></param>
- </member>
- <member name="M:UnityEngine.Rendering.SphericalHarmonicsL2.AddDirectionalLight(UnityEngine.Vector3,UnityEngine.Color,System.Single)">
- <summary>
- <para>Add directional light to probe data.</para>
- </summary>
- <param name="direction"></param>
- <param name="color"></param>
- <param name="intensity"></param>
- </member>
- <member name="M:UnityEngine.Rendering.SphericalHarmonicsL2.Clear">
- <summary>
- <para>Clears SH probe to zero.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Rendering.SphericalHarmonicsL2.Evaluate(UnityEngine.Vector3[],UnityEngine.Color[])">
- <summary>
- <para>Evaluates the Spherical Harmonics for each of the given directions. The result from the first direction is written into the first element of results, the result from the second direction is written into the second element of results, and so on. The array size of directions and results must match and directions must be normalized.</para>
- </summary>
- <param name="directions">Normalized directions for which the spherical harmonics are to be evaluated.</param>
- <param name="results">Output array for the evaluated values of the corresponding directions.</param>
- </member>
- <member name="?:UnityEngine.Rendering.SphericalHarmonicsL2.op_Equal(UnityEngine.Rendering.SphericalHarmonicsL2,UnityEngine.Rendering.SphericalHarmonicsL2)">
- <summary>
- <para>Returns true if SH probes are equal.</para>
- </summary>
- <param name="lhs"></param>
- <param name="rhs"></param>
- </member>
- <member name="?:UnityEngine.Rendering.SphericalHarmonicsL2.op_Multiply(UnityEngine.Rendering.SphericalHarmonicsL2,System.Single)">
- <summary>
- <para>Scales SH by a given factor.</para>
- </summary>
- <param name="lhs"></param>
- <param name="rhs"></param>
- </member>
- <member name="?:UnityEngine.Rendering.SphericalHarmonicsL2.op_Multiply(System.Single,UnityEngine.Rendering.SphericalHarmonicsL2)">
- <summary>
- <para>Scales SH by a given factor.</para>
- </summary>
- <param name="lhs"></param>
- <param name="rhs"></param>
- </member>
- <member name="?:UnityEngine.Rendering.SphericalHarmonicsL2.op_NotEqual(UnityEngine.Rendering.SphericalHarmonicsL2,UnityEngine.Rendering.SphericalHarmonicsL2)">
- <summary>
- <para>Returns true if SH probes are different.</para>
- </summary>
- <param name="lhs"></param>
- <param name="rhs"></param>
- </member>
- <member name="?:UnityEngine.Rendering.SphericalHarmonicsL2.op_Plus(UnityEngine.Rendering.SphericalHarmonicsL2,UnityEngine.Rendering.SphericalHarmonicsL2)">
- <summary>
- <para>Adds two SH probes.</para>
- </summary>
- <param name="lhs"></param>
- <param name="rhs"></param>
- </member>
- <member name="P:UnityEngine.Rendering.SphericalHarmonicsL2.this">
- <summary>
- <para>Access individual SH coefficients.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Rendering.SplashScreen">
- <summary>
- <para>Provides an interface to the Unity splash screen.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rendering.SplashScreen.isFinished">
- <summary>
- <para>Returns true once the splash screen as finished. This is once all logos have been shown for their specified duration.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Rendering.SplashScreen.Begin">
- <summary>
- <para>Initializes the splash screen so it is ready to begin drawing. Call this before you start calling Rendering.SplashScreen.Draw. Internally this function resets the timer and prepares the logos for drawing.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Rendering.SplashScreen.Draw">
- <summary>
- <para>Immediately draws the splash screen. Ensure you have called Rendering.SplashScreen.Begin before you start calling this.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Rendering.StencilOp">
- <summary>
- <para>Specifies the operation that's performed on the stencil buffer when rendering.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.StencilOp.DecrementSaturate">
- <summary>
- <para>Decrements the current stencil buffer value. Clamps to 0.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.StencilOp.DecrementWrap">
- <summary>
- <para>Decrements the current stencil buffer value. Wraps stencil buffer value to the maximum representable unsigned value when decrementing a stencil buffer value of zero.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.StencilOp.IncrementSaturate">
- <summary>
- <para>Increments the current stencil buffer value. Clamps to the maximum representable unsigned value.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.StencilOp.IncrementWrap">
- <summary>
- <para>Increments the current stencil buffer value. Wraps stencil buffer value to zero when incrementing the maximum representable unsigned value.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.StencilOp.Invert">
- <summary>
- <para>Bitwise inverts the current stencil buffer value.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.StencilOp.Keep">
- <summary>
- <para>Keeps the current stencil value.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.StencilOp.Replace">
- <summary>
- <para>Replace the stencil buffer value with reference value (specified in the shader).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.StencilOp.Zero">
- <summary>
- <para>Sets the stencil buffer value to zero.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Rendering.SynchronisationStage">
- <summary>
- <para>Broadly describes the stages of processing a draw call on the GPU.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.SynchronisationStage.PixelProcessing">
- <summary>
- <para>The process of creating and shading the fragments.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.SynchronisationStage.VertexProcessing">
- <summary>
- <para>All aspects of vertex processing.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Rendering.TextureDimension">
- <summary>
- <para>Texture "dimension" (type).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.TextureDimension.Any">
- <summary>
- <para>Any texture type.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.TextureDimension.Cube">
- <summary>
- <para>Cubemap texture.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.TextureDimension.CubeArray">
- <summary>
- <para>Cubemap array texture (CubemapArray).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.TextureDimension.None">
- <summary>
- <para>No texture is assigned.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.TextureDimension.Tex2D">
- <summary>
- <para>2D texture (Texture2D).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.TextureDimension.Tex2DArray">
- <summary>
- <para>2D array texture (Texture2DArray).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.TextureDimension.Tex3D">
- <summary>
- <para>3D volume texture (Texture3D).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.TextureDimension.Unknown">
- <summary>
- <para>Texture type is not initialized or unknown.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.RenderingPath">
- <summary>
- <para>Rendering path of a Camera.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RenderingPath.DeferredLighting">
- <summary>
- <para>Deferred Lighting (Legacy).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RenderingPath.DeferredShading">
- <summary>
- <para>Deferred Shading.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RenderingPath.Forward">
- <summary>
- <para>Forward Rendering.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RenderingPath.UsePlayerSettings">
- <summary>
- <para>Use Player Settings.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RenderingPath.VertexLit">
- <summary>
- <para>Vertex Lit.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.RenderSettings">
- <summary>
- <para>The Render Settings contain values for a range of visual elements in your scene, like fog and ambient light.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RenderSettings.ambientEquatorColor">
- <summary>
- <para>Ambient lighting coming from the sides.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RenderSettings.ambientGroundColor">
- <summary>
- <para>Ambient lighting coming from below.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RenderSettings.ambientIntensity">
- <summary>
- <para>How much the light from the Ambient Source affects the scene.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RenderSettings.ambientLight">
- <summary>
- <para>Flat ambient lighting color.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RenderSettings.ambientMode">
- <summary>
- <para>Ambient lighting mode.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RenderSettings.ambientProbe">
- <summary>
- <para>Custom or skybox ambient lighting data.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RenderSettings.ambientSkyColor">
- <summary>
- <para>Ambient lighting coming from above.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RenderSettings.customReflection">
- <summary>
- <para>Custom specular reflection cubemap.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RenderSettings.defaultReflectionMode">
- <summary>
- <para>Default reflection mode.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RenderSettings.defaultReflectionResolution">
- <summary>
- <para>Cubemap resolution for default reflection.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RenderSettings.flareFadeSpeed">
- <summary>
- <para>The fade speed of all flares in the scene.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RenderSettings.flareStrength">
- <summary>
- <para>The intensity of all flares in the scene.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RenderSettings.fog">
- <summary>
- <para>Is fog enabled?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RenderSettings.fogColor">
- <summary>
- <para>The color of the fog.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RenderSettings.fogDensity">
- <summary>
- <para>The density of the exponential fog.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RenderSettings.fogEndDistance">
- <summary>
- <para>The ending distance of linear fog.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RenderSettings.fogMode">
- <summary>
- <para>Fog mode to use.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RenderSettings.fogStartDistance">
- <summary>
- <para>The starting distance of linear fog.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RenderSettings.haloStrength">
- <summary>
- <para>Size of the Light halos.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RenderSettings.reflectionBounces">
- <summary>
- <para>The number of times a reflection includes other reflections.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RenderSettings.reflectionIntensity">
- <summary>
- <para>How much the skybox / custom cubemap reflection affects the scene.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RenderSettings.skybox">
- <summary>
- <para>The global skybox to use.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RenderSettings.subtractiveShadowColor">
- <summary>
- <para>The color used for the sun shadows in the Subtractive lightmode.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RenderSettings.sun">
- <summary>
- <para>The light used by the procedural skybox.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.RenderTargetSetup">
- <summary>
- <para>Fully describes setup of RenderTarget.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RenderTargetSetup.color">
- <summary>
- <para>Color Buffers to set.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RenderTargetSetup.colorLoad">
- <summary>
- <para>Load Actions for Color Buffers. It will override any actions set on RenderBuffers themselves.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RenderTargetSetup.colorStore">
- <summary>
- <para>Store Actions for Color Buffers. It will override any actions set on RenderBuffers themselves.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RenderTargetSetup.cubemapFace">
- <summary>
- <para>Cubemap face to render to.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RenderTargetSetup.depth">
- <summary>
- <para>Depth Buffer to set.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RenderTargetSetup.depthLoad">
- <summary>
- <para>Load Action for Depth Buffer. It will override any actions set on RenderBuffer itself.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RenderTargetSetup.depthSlice">
- <summary>
- <para>Slice of a Texture3D or Texture2DArray to set as a render target.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RenderTargetSetup.depthStore">
- <summary>
- <para>Store Actions for Depth Buffer. It will override any actions set on RenderBuffer itself.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RenderTargetSetup.mipLevel">
- <summary>
- <para>Mip Level to render to.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.RenderTargetSetup.#ctor(UnityEngine.RenderBuffer,UnityEngine.RenderBuffer)">
- <summary>
- <para>Constructs RenderTargetSetup.</para>
- </summary>
- <param name="color">Color Buffer(s) to set.</param>
- <param name="depth">Depth Buffer to set.</param>
- <param name="mipLevel">Mip Level to render to.</param>
- <param name="face">Cubemap face to render to.</param>
- <param name="mip"></param>
- </member>
- <member name="M:UnityEngine.RenderTargetSetup.#ctor(UnityEngine.RenderBuffer,UnityEngine.RenderBuffer,System.Int32)">
- <summary>
- <para>Constructs RenderTargetSetup.</para>
- </summary>
- <param name="color">Color Buffer(s) to set.</param>
- <param name="depth">Depth Buffer to set.</param>
- <param name="mipLevel">Mip Level to render to.</param>
- <param name="face">Cubemap face to render to.</param>
- <param name="mip"></param>
- </member>
- <member name="M:UnityEngine.RenderTargetSetup.#ctor(UnityEngine.RenderBuffer,UnityEngine.RenderBuffer,System.Int32,UnityEngine.CubemapFace)">
- <summary>
- <para>Constructs RenderTargetSetup.</para>
- </summary>
- <param name="color">Color Buffer(s) to set.</param>
- <param name="depth">Depth Buffer to set.</param>
- <param name="mipLevel">Mip Level to render to.</param>
- <param name="face">Cubemap face to render to.</param>
- <param name="mip"></param>
- </member>
- <member name="M:UnityEngine.RenderTargetSetup.#ctor(UnityEngine.RenderBuffer[],UnityEngine.RenderBuffer)">
- <summary>
- <para>Constructs RenderTargetSetup.</para>
- </summary>
- <param name="color">Color Buffer(s) to set.</param>
- <param name="depth">Depth Buffer to set.</param>
- <param name="mipLevel">Mip Level to render to.</param>
- <param name="face">Cubemap face to render to.</param>
- <param name="mip"></param>
- </member>
- <member name="M:UnityEngine.RenderTargetSetup.#ctor(UnityEngine.RenderBuffer[],UnityEngine.RenderBuffer,System.Int32)">
- <summary>
- <para>Constructs RenderTargetSetup.</para>
- </summary>
- <param name="color">Color Buffer(s) to set.</param>
- <param name="depth">Depth Buffer to set.</param>
- <param name="mipLevel">Mip Level to render to.</param>
- <param name="face">Cubemap face to render to.</param>
- <param name="mip"></param>
- </member>
- <member name="M:UnityEngine.RenderTargetSetup.#ctor(UnityEngine.RenderBuffer[],UnityEngine.RenderBuffer,System.Int32,UnityEngine.CubemapFace)">
- <summary>
- <para>Constructs RenderTargetSetup.</para>
- </summary>
- <param name="color">Color Buffer(s) to set.</param>
- <param name="depth">Depth Buffer to set.</param>
- <param name="mipLevel">Mip Level to render to.</param>
- <param name="face">Cubemap face to render to.</param>
- <param name="mip"></param>
- </member>
- <member name="T:UnityEngine.RenderTexture">
- <summary>
- <para>Render textures are textures that can be rendered to.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RenderTexture.active">
- <summary>
- <para>Currently active render texture.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RenderTexture.antiAliasing">
- <summary>
- <para>The antialiasing level for the RenderTexture.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RenderTexture.autoGenerateMips">
- <summary>
- <para>Mipmap levels are generated automatically when this flag is set.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RenderTexture.bindTextureMS">
- <summary>
- <para>If true and antiAliasing is greater than 1, the render texture will not be resolved by default. Use this if the render texture needs to be bound as a multisampled texture in a shader.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RenderTexture.colorBuffer">
- <summary>
- <para>Color buffer of the render texture (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RenderTexture.depth">
- <summary>
- <para>The precision of the render texture's depth buffer in bits (0, 16, 24/32 are supported).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RenderTexture.depthBuffer">
- <summary>
- <para>Depth/stencil buffer of the render texture (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RenderTexture.descriptor">
- <summary>
- <para>This struct contains all the information required to create a RenderTexture. It can be copied, cached, and reused to easily create RenderTextures that all share the same properties.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RenderTexture.dimension">
- <summary>
- <para>Dimensionality (type) of the render texture.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RenderTexture.enableRandomWrite">
- <summary>
- <para>Enable random access write into this render texture on Shader Model 5.0 level shaders.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RenderTexture.format">
- <summary>
- <para>The color format of the render texture.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RenderTexture.height">
- <summary>
- <para>The height of the render texture in pixels.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RenderTexture.isVolume">
- <summary>
- <para>If enabled, this Render Texture will be used as a Texture3D.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RenderTexture.memorylessMode">
- <summary>
- <para>The render texture memoryless mode property.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RenderTexture.sRGB">
- <summary>
- <para>Does this render texture use sRGB read/write conversions (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RenderTexture.useDynamicScale">
- <summary>
- <para>Is the render texture marked to be scaled by the Dynamic Resolution system.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RenderTexture.useMipMap">
- <summary>
- <para>Render texture has mipmaps when this flag is set.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RenderTexture.volumeDepth">
- <summary>
- <para>Volume extent of a 3D render texture or number of slices of array texture.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RenderTexture.vrUsage">
- <summary>
- <para>If this RenderTexture is a VR eye texture used in stereoscopic rendering, this property decides what special rendering occurs, if any.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RenderTexture.width">
- <summary>
- <para>The width of the render texture in pixels.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.RenderTexture.ConvertToEquirect(UnityEngine.RenderTexture,UnityEngine.Camera/MonoOrStereoscopicEye)">
- <summary>
- <para>Converts the render texture to equirectangular format (both stereoscopic or monoscopic equirect).
-The left eye will occupy the top half and the right eye will occupy the bottom. The monoscopic version will occupy the whole texture.
-Texture dimension must be of type TextureDimension.Cube.</para>
- </summary>
- <param name="equirect">RenderTexture to render the equirect format to.</param>
- <param name="eye">A Camera eye corresponding to the left or right eye for stereoscopic rendering, or neither for monoscopic rendering.</param>
- </member>
- <member name="M:UnityEngine.RenderTexture.Create">
- <summary>
- <para>Actually creates the RenderTexture.</para>
- </summary>
- <returns>
- <para>True if the texture is created, else false.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.RenderTexture.#ctor(System.Int32,System.Int32,System.Int32,UnityEngine.RenderTextureFormat,UnityEngine.RenderTextureReadWrite)">
- <summary>
- <para>Creates a new RenderTexture object.</para>
- </summary>
- <param name="width">Texture width in pixels.</param>
- <param name="height">Texture height in pixels.</param>
- <param name="depth">Number of bits in depth buffer (0, 16 or 24). Note that only 24 bit depth has stencil buffer.</param>
- <param name="format">Texture color format.</param>
- <param name="readWrite">How or if color space conversions should be done on texture read/write.</param>
- <param name="desc">Create the RenderTexture with the settings in the RenderTextureDescriptor.</param>
- <param name="textureToCopy">Copy the settings from another RenderTexture.</param>
- </member>
- <member name="M:UnityEngine.RenderTexture.#ctor(UnityEngine.RenderTexture)">
- <summary>
- <para>Creates a new RenderTexture object.</para>
- </summary>
- <param name="width">Texture width in pixels.</param>
- <param name="height">Texture height in pixels.</param>
- <param name="depth">Number of bits in depth buffer (0, 16 or 24). Note that only 24 bit depth has stencil buffer.</param>
- <param name="format">Texture color format.</param>
- <param name="readWrite">How or if color space conversions should be done on texture read/write.</param>
- <param name="desc">Create the RenderTexture with the settings in the RenderTextureDescriptor.</param>
- <param name="textureToCopy">Copy the settings from another RenderTexture.</param>
- </member>
- <member name="M:UnityEngine.RenderTexture.#ctor(UnityEngine.RenderTextureDescriptor)">
- <summary>
- <para>Creates a new RenderTexture object.</para>
- </summary>
- <param name="width">Texture width in pixels.</param>
- <param name="height">Texture height in pixels.</param>
- <param name="depth">Number of bits in depth buffer (0, 16 or 24). Note that only 24 bit depth has stencil buffer.</param>
- <param name="format">Texture color format.</param>
- <param name="readWrite">How or if color space conversions should be done on texture read/write.</param>
- <param name="desc">Create the RenderTexture with the settings in the RenderTextureDescriptor.</param>
- <param name="textureToCopy">Copy the settings from another RenderTexture.</param>
- </member>
- <member name="M:UnityEngine.RenderTexture.DiscardContents">
- <summary>
- <para>Hint the GPU driver that the contents of the RenderTexture will not be used.</para>
- </summary>
- <param name="discardColor">Should the colour buffer be discarded?</param>
- <param name="discardDepth">Should the depth buffer be discarded?</param>
- </member>
- <member name="M:UnityEngine.RenderTexture.DiscardContents(System.Boolean,System.Boolean)">
- <summary>
- <para>Hint the GPU driver that the contents of the RenderTexture will not be used.</para>
- </summary>
- <param name="discardColor">Should the colour buffer be discarded?</param>
- <param name="discardDepth">Should the depth buffer be discarded?</param>
- </member>
- <member name="M:UnityEngine.RenderTexture.GenerateMips">
- <summary>
- <para>Generate mipmap levels of a render texture.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.RenderTexture.GetNativeDepthBufferPtr">
- <summary>
- <para>Retrieve a native (underlying graphics API) pointer to the depth buffer resource.</para>
- </summary>
- <returns>
- <para>Pointer to an underlying graphics API depth buffer resource.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.RenderTexture.GetTemporary(UnityEngine.RenderTextureDescriptor)">
- <summary>
- <para>Allocate a temporary render texture.</para>
- </summary>
- <param name="width">Width in pixels.</param>
- <param name="height">Height in pixels.</param>
- <param name="depthBuffer">Depth buffer bits (0, 16 or 24). Note that only 24 bit depth has stencil buffer.</param>
- <param name="format">Render texture format.</param>
- <param name="readWrite">Color space conversion mode.</param>
- <param name="antiAliasing">Number of antialiasing samples to store in the texture. Valid values are 1, 2, 4, and 8. Throws an exception if any other value is passed.</param>
- <param name="memorylessMode">Render texture memoryless mode.</param>
- <param name="desc">Use this RenderTextureDesc for the settings when creating the temporary RenderTexture.</param>
- <param name="vrUsage"></param>
- <param name="useDynamicScale"></param>
- </member>
- <member name="M:UnityEngine.RenderTexture.GetTemporary(System.Int32,System.Int32,System.Int32,UnityEngine.RenderTextureFormat,UnityEngine.RenderTextureReadWrite,System.Int32,UnityEngine.RenderTextureMemoryless,UnityEngine.VRTextureUsage,System.Boolean)">
- <summary>
- <para>Allocate a temporary render texture.</para>
- </summary>
- <param name="width">Width in pixels.</param>
- <param name="height">Height in pixels.</param>
- <param name="depthBuffer">Depth buffer bits (0, 16 or 24). Note that only 24 bit depth has stencil buffer.</param>
- <param name="format">Render texture format.</param>
- <param name="readWrite">Color space conversion mode.</param>
- <param name="antiAliasing">Number of antialiasing samples to store in the texture. Valid values are 1, 2, 4, and 8. Throws an exception if any other value is passed.</param>
- <param name="memorylessMode">Render texture memoryless mode.</param>
- <param name="desc">Use this RenderTextureDesc for the settings when creating the temporary RenderTexture.</param>
- <param name="vrUsage"></param>
- <param name="useDynamicScale"></param>
- </member>
- <member name="M:UnityEngine.RenderTexture.IsCreated">
- <summary>
- <para>Is the render texture actually created?</para>
- </summary>
- </member>
- <member name="M:UnityEngine.RenderTexture.MarkRestoreExpected">
- <summary>
- <para>Indicate that there's a RenderTexture restore operation expected.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.RenderTexture.Release">
- <summary>
- <para>Releases the RenderTexture.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.RenderTexture.ReleaseTemporary(UnityEngine.RenderTexture)">
- <summary>
- <para>Release a temporary texture allocated with GetTemporary.</para>
- </summary>
- <param name="temp"></param>
- </member>
- <member name="M:UnityEngine.RenderTexture.ResolveAntiAliasedSurface">
- <summary>
- <para>Force an antialiased render texture to be resolved.</para>
- </summary>
- <param name="target">The render texture to resolve into. If set, the target render texture must have the same dimensions and format as the source.</param>
- </member>
- <member name="M:UnityEngine.RenderTexture.ResolveAntiAliasedSurface(UnityEngine.RenderTexture)">
- <summary>
- <para>Force an antialiased render texture to be resolved.</para>
- </summary>
- <param name="target">The render texture to resolve into. If set, the target render texture must have the same dimensions and format as the source.</param>
- </member>
- <member name="M:UnityEngine.RenderTexture.SetGlobalShaderProperty(System.String)">
- <summary>
- <para>Assigns this RenderTexture as a global shader property named propertyName.</para>
- </summary>
- <param name="propertyName"></param>
- </member>
- <member name="M:UnityEngine.RenderTexture.SupportsStencil(UnityEngine.RenderTexture)">
- <summary>
- <para>Does a RenderTexture have stencil buffer?</para>
- </summary>
- <param name="rt">Render texture, or null for main screen.</param>
- </member>
- <member name="T:UnityEngine.RenderTextureCreationFlags">
- <summary>
- <para>Set of flags that control the state of a newly-created RenderTexture.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RenderTextureCreationFlags.AllowVerticalFlip">
- <summary>
- <para>Clear this flag when a RenderTexture is a VR eye texture and the device does not automatically flip the texture when being displayed. This is platform specific and
-It is set by default. This flag is only cleared when part of a RenderTextureDesc that is returned from GetDefaultVREyeTextureDesc or other VR functions that return a RenderTextureDesc. Currently, only Hololens eye textures need to clear this flag.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RenderTextureCreationFlags.AutoGenerateMips">
- <summary>
- <para>Determines whether or not mipmaps are automatically generated when the RenderTexture is modified.
-This flag is set by default, and has no effect if the RenderTextureCreationFlags.MipMap flag is not also set.
-See RenderTexture.autoGenerateMips for more details.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RenderTextureCreationFlags.BindMS">
- <summary>
- <para>Setting this flag causes the RenderTexture to be bound as a multisampled texture in a shader. The flag prevents the RenderTexture from being resolved by default when RenderTexture.antiAliasing is greater than 1.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RenderTextureCreationFlags.CreatedFromScript">
- <summary>
- <para>This flag is always set internally when a RenderTexture is created from script. It has no effect when set manually from script code.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RenderTextureCreationFlags.DynamicallyScalable">
- <summary>
- <para>Set this flag to mark this RenderTexture for Dynamic Resolution should the target platform/graphics API support Dynamic Resolution. See ScalabeBufferManager for more details.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RenderTextureCreationFlags.EnableRandomWrite">
- <summary>
- <para>Set this flag to enable random access writes to the RenderTexture from shaders.
-Normally, pixel shaders only operate on pixels they are given. Compute shaders cannot write to textures without this flag. Random write enables shaders to write to arbitrary locations on a RenderTexture. See RenderTexture.enableRandomWrite for more details, including supported platforms.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RenderTextureCreationFlags.EyeTexture">
- <summary>
- <para>Set this flag when the Texture is to be used as a VR eye texture. This flag is cleared by default. This flag is set on a RenderTextureDesc when it is returned from GetDefaultVREyeTextureDesc or other VR functions returning a RenderTextureDesc.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RenderTextureCreationFlags.MipMap">
- <summary>
- <para>Set this flag to allocate mipmaps in the RenderTexture. See RenderTexture.useMipMap for more details.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RenderTextureCreationFlags.NoResolvedColorSurface">
- <summary>
- <para>When this flag is set, the engine will not automatically resolve the color surface.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RenderTextureCreationFlags.SRGB">
- <summary>
- <para>When this flag is set, reads and writes to this texture are converted to SRGB color space. See RenderTexture.sRGB for more details.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.RenderTextureDescriptor">
- <summary>
- <para>This struct contains all the information required to create a RenderTexture. It can be copied, cached, and reused to easily create RenderTextures that all share the same properties.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RenderTextureDescriptor.autoGenerateMips">
- <summary>
- <para>Mipmap levels are generated automatically when this flag is set.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RenderTextureDescriptor.bindMS">
- <summary>
- <para>If true and msaaSamples is greater than 1, the render texture will not be resolved by default. Use this if the render texture needs to be bound as a multisampled texture in a shader.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RenderTextureDescriptor.colorFormat">
- <summary>
- <para>The color format for the RenderTexture.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RenderTextureDescriptor.depthBufferBits">
- <summary>
- <para>The precision of the render texture's depth buffer in bits (0, 16, 24/32 are supported).
-
-See RenderTexture.depth.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RenderTextureDescriptor.dimension">
- <summary>
- <para>Dimensionality (type) of the render texture.
-
-See RenderTexture.dimension.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RenderTextureDescriptor.enableRandomWrite">
- <summary>
- <para>Enable random access write into this render texture on Shader Model 5.0 level shaders.
-
-See RenderTexture.enableRandomWrite.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RenderTextureDescriptor.flags">
- <summary>
- <para>A set of RenderTextureCreationFlags that control how the texture is created.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RenderTextureDescriptor.height">
- <summary>
- <para>The height of the render texture in pixels.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RenderTextureDescriptor.memoryless">
- <summary>
- <para>The render texture memoryless mode property.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RenderTextureDescriptor.msaaSamples">
- <summary>
- <para>The multisample antialiasing level for the RenderTexture.
-
-See RenderTexture.antiAliasing.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RenderTextureDescriptor.shadowSamplingMode">
- <summary>
- <para>Determines how the RenderTexture is sampled if it is used as a shadow map.
-
-See ShadowSamplingMode for more details.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RenderTextureDescriptor.sRGB">
- <summary>
- <para>This flag causes the render texture uses sRGB read/write conversions.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RenderTextureDescriptor.useMipMap">
- <summary>
- <para>Render texture has mipmaps when this flag is set.
-
-See RenderTexture.useMipMap.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RenderTextureDescriptor.volumeDepth">
- <summary>
- <para>Volume extent of a 3D render texture.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RenderTextureDescriptor.vrUsage">
- <summary>
- <para>If this RenderTexture is a VR eye texture used in stereoscopic rendering, this property decides what special rendering occurs, if any. Instead of setting this manually, use the value returned by XR.XRSettings.eyeTextureDesc|eyeTextureDesc or other VR functions returning a RenderTextureDescriptor.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RenderTextureDescriptor.width">
- <summary>
- <para>The width of the render texture in pixels.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.RenderTextureDescriptor.#ctor(System.Int32,System.Int32)">
- <summary>
- <para>Create a RenderTextureDescriptor with default values, or a certain width, height, and format.</para>
- </summary>
- <param name="width">Width of the RenderTexture in pixels.</param>
- <param name="height">Height of the RenderTexture in pixels.</param>
- <param name="colorFormat">The color format for the RenderTexture.</param>
- <param name="depthBufferBits">The number of bits to use for the depth buffer.</param>
- </member>
- <member name="M:UnityEngine.RenderTextureDescriptor.#ctor(System.Int32,System.Int32,UnityEngine.RenderTextureFormat)">
- <summary>
- <para>Create a RenderTextureDescriptor with default values, or a certain width, height, and format.</para>
- </summary>
- <param name="width">Width of the RenderTexture in pixels.</param>
- <param name="height">Height of the RenderTexture in pixels.</param>
- <param name="colorFormat">The color format for the RenderTexture.</param>
- <param name="depthBufferBits">The number of bits to use for the depth buffer.</param>
- </member>
- <member name="M:UnityEngine.RenderTextureDescriptor.#ctor(System.Int32,System.Int32,UnityEngine.RenderTextureFormat,System.Int32)">
- <summary>
- <para>Create a RenderTextureDescriptor with default values, or a certain width, height, and format.</para>
- </summary>
- <param name="width">Width of the RenderTexture in pixels.</param>
- <param name="height">Height of the RenderTexture in pixels.</param>
- <param name="colorFormat">The color format for the RenderTexture.</param>
- <param name="depthBufferBits">The number of bits to use for the depth buffer.</param>
- </member>
- <member name="T:UnityEngine.RenderTextureFormat">
- <summary>
- <para>Format of a RenderTexture.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RenderTextureFormat.ARGB1555">
- <summary>
- <para>Color render texture format, 1 bit for Alpha channel, 5 bits for Red, Green and Blue channels.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RenderTextureFormat.ARGB2101010">
- <summary>
- <para>Color render texture format. 10 bits for colors, 2 bits for alpha.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RenderTextureFormat.ARGB32">
- <summary>
- <para>Color render texture format, 8 bits per channel.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RenderTextureFormat.ARGB4444">
- <summary>
- <para>Color render texture format, 4 bit per channel.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RenderTextureFormat.ARGB64">
- <summary>
- <para>Four color render texture format, 16 bits per channel, fixed point, unsigned normalized.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RenderTextureFormat.ARGBFloat">
- <summary>
- <para>Color render texture format, 32 bit floating point per channel.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RenderTextureFormat.ARGBHalf">
- <summary>
- <para>Color render texture format, 16 bit floating point per channel.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RenderTextureFormat.ARGBInt">
- <summary>
- <para>Four channel (ARGB) render texture format, 32 bit signed integer per channel.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RenderTextureFormat.BGR101010_XR">
- <summary>
- <para>Color render texture format, 10 bit per channel, extended range.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RenderTextureFormat.BGRA10101010_XR">
- <summary>
- <para>Color render texture format, 10 bit per channel, extended range.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RenderTextureFormat.BGRA32">
- <summary>
- <para>Color render texture format, 8 bits per channel.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RenderTextureFormat.Default">
- <summary>
- <para>Default color render texture format: will be chosen accordingly to Frame Buffer format and Platform.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RenderTextureFormat.DefaultHDR">
- <summary>
- <para>Default HDR color render texture format: will be chosen accordingly to Frame Buffer format and Platform.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RenderTextureFormat.Depth">
- <summary>
- <para>A depth render texture format.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RenderTextureFormat.R8">
- <summary>
- <para>Scalar (R) render texture format, 8 bit fixed point.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RenderTextureFormat.RFloat">
- <summary>
- <para>Scalar (R) render texture format, 32 bit floating point.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RenderTextureFormat.RG16">
- <summary>
- <para>Two channel (RG) render texture format, 8 bits per channel.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RenderTextureFormat.RG32">
- <summary>
- <para>Two color (RG) render texture format, 16 bits per channel, fixed point, unsigned normalized.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RenderTextureFormat.RGB111110Float">
- <summary>
- <para>Color render texture format. R and G channels are 11 bit floating point, B channel is 10 bit floating point.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RenderTextureFormat.RGB565">
- <summary>
- <para>Color render texture format.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RenderTextureFormat.RGBAUShort">
- <summary>
- <para>Four channel (RGBA) render texture format, 16 bit unsigned integer per channel.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RenderTextureFormat.RGFloat">
- <summary>
- <para>Two color (RG) render texture format, 32 bit floating point per channel.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RenderTextureFormat.RGHalf">
- <summary>
- <para>Two color (RG) render texture format, 16 bit floating point per channel.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RenderTextureFormat.RGInt">
- <summary>
- <para>Two channel (RG) render texture format, 32 bit signed integer per channel.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RenderTextureFormat.RHalf">
- <summary>
- <para>Scalar (R) render texture format, 16 bit floating point.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RenderTextureFormat.RInt">
- <summary>
- <para>Scalar (R) render texture format, 32 bit signed integer.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RenderTextureFormat.Shadowmap">
- <summary>
- <para>A native shadowmap render texture format.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.RenderTextureMemoryless">
- <summary>
- <para>Flags enumeration of the render texture memoryless modes.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RenderTextureMemoryless.Color">
- <summary>
- <para>Render texture color pixels are memoryless when RenderTexture.antiAliasing is set to 1.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RenderTextureMemoryless.Depth">
- <summary>
- <para>Render texture depth pixels are memoryless.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RenderTextureMemoryless.MSAA">
- <summary>
- <para>Render texture color pixels are memoryless when RenderTexture.antiAliasing is set to 2, 4 or 8.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RenderTextureMemoryless.None">
- <summary>
- <para>The render texture is not memoryless.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.RenderTextureReadWrite">
- <summary>
- <para>Color space conversion mode of a RenderTexture.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RenderTextureReadWrite.sRGB">
- <summary>
- <para>Render texture contains sRGB (color) data, perform Linear&lt;-&gt;sRGB conversions on it.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RenderTextureReadWrite.Default">
- <summary>
- <para>Default color space conversion based on project settings.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RenderTextureReadWrite.Linear">
- <summary>
- <para>Render texture contains linear (non-color) data; don't perform color conversions on it.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.RequireComponent">
- <summary>
- <para>The RequireComponent attribute automatically adds required components as dependencies.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.RequireComponent.#ctor(System.Type)">
- <summary>
- <para>Require a single component.</para>
- </summary>
- <param name="requiredComponent"></param>
- </member>
- <member name="M:UnityEngine.RequireComponent.#ctor(System.Type,System.Type)">
- <summary>
- <para>Require two components.</para>
- </summary>
- <param name="requiredComponent"></param>
- <param name="requiredComponent2"></param>
- </member>
- <member name="M:UnityEngine.RequireComponent.#ctor(System.Type,System.Type,System.Type)">
- <summary>
- <para>Require three components.</para>
- </summary>
- <param name="requiredComponent"></param>
- <param name="requiredComponent2"></param>
- <param name="requiredComponent3"></param>
- </member>
- <member name="T:UnityEngine.Resolution">
- <summary>
- <para>Represents a display resolution.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Resolution.height">
- <summary>
- <para>Resolution height in pixels.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Resolution.refreshRate">
- <summary>
- <para>Resolution's vertical refresh rate in Hz.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Resolution.width">
- <summary>
- <para>Resolution width in pixels.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Resolution.ToString">
- <summary>
- <para>Returns a nicely formatted string of the resolution.</para>
- </summary>
- <returns>
- <para>A string with the format "width x height @ refreshRateHz".</para>
- </returns>
- </member>
- <member name="T:UnityEngine.ResourceRequest">
- <summary>
- <para>Asynchronous load request from the Resources bundle.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ResourceRequest.asset">
- <summary>
- <para>Asset object being loaded (Read Only).</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Resources">
- <summary>
- <para>The Resources class allows you to find and access Objects including assets.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Resources.FindObjectsOfTypeAll(System.Type)">
- <summary>
- <para>Returns a list of all objects of Type type.</para>
- </summary>
- <param name="type">Type of the class to match while searching.</param>
- <returns>
- <para>An array of objects whose class is type or is derived from type.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Resources.FindObjectsOfTypeAll">
- <summary>
- <para>Returns a list of all objects of Type T.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Resources.Load(System.String)">
- <summary>
- <para>Loads an asset stored at path in a Resources folder.</para>
- </summary>
- <param name="path">Pathname of the target folder. When using the empty string (i.e., ""), the function will load the entire contents of the Resources folder.</param>
- </member>
- <member name="M:UnityEngine.Resources.Load(System.String)">
- <summary>
- <para>Loads an asset stored at path in a Resources folder.</para>
- </summary>
- <param name="path">Pathname of the target folder. When using the empty string (i.e., ""), the function will load the entire contents of the Resources folder.</param>
- <param name="systemTypeInstance">Type filter for objects returned.</param>
- </member>
- <member name="M:UnityEngine.Resources.Load(System.String,System.Type)">
- <summary>
- <para>Loads an asset stored at path in a Resources folder.</para>
- </summary>
- <param name="path">Pathname of the target folder. When using the empty string (i.e., ""), the function will load the entire contents of the Resources folder.</param>
- <param name="systemTypeInstance">Type filter for objects returned.</param>
- </member>
- <member name="M:UnityEngine.Resources.LoadAll(System.String)">
- <summary>
- <para>Loads all assets in a folder or file at path in a Resources folder.</para>
- </summary>
- <param name="path">Pathname of the target folder. When using the empty string (i.e., ""), the function will load the entire contents of the Resources folder.</param>
- <param name="systemTypeInstance">Type filter for objects returned.</param>
- </member>
- <member name="M:UnityEngine.Resources.LoadAll(System.String,System.Type)">
- <summary>
- <para>Loads all assets in a folder or file at path in a Resources folder.</para>
- </summary>
- <param name="path">Pathname of the target folder. When using the empty string (i.e., ""), the function will load the entire contents of the Resources folder.</param>
- <param name="systemTypeInstance">Type filter for objects returned.</param>
- </member>
- <member name="M:UnityEngine.Resources.LoadAll(System.String)">
- <summary>
- <para>Loads all assets in a folder or file at path in a Resources folder.</para>
- </summary>
- <param name="path">Pathname of the target folder. When using the empty string (i.e., ""), the function will load the entire contents of the Resources folder.</param>
- </member>
- <member name="M:UnityEngine.Resources.LoadAsync(System.String)">
- <summary>
- <para>Asynchronously loads an asset stored at path in a Resources folder.</para>
- </summary>
- <param name="path">Pathname of the target folder. When using the empty string (i.e., ""), the function will load the entire contents of the Resources folder.</param>
- <param name="systemTypeInstance">Type filter for objects returned.</param>
- <param name="type"></param>
- </member>
- <member name="M:UnityEngine.Resources.LoadAsync(System.String,System.Type)">
- <summary>
- <para>Asynchronously loads an asset stored at path in a Resources folder.</para>
- </summary>
- <param name="path">Pathname of the target folder. When using the empty string (i.e., ""), the function will load the entire contents of the Resources folder.</param>
- <param name="systemTypeInstance">Type filter for objects returned.</param>
- <param name="type"></param>
- </member>
- <member name="M:UnityEngine.Resources.LoadAsync(System.String)">
- <summary>
- <para>Asynchronously loads an asset stored at path in a Resources folder.</para>
- </summary>
- <param name="path">Pathname of the target folder. When using the empty string (i.e., ""), the function will load the entire contents of the Resources folder.</param>
- </member>
- <member name="M:UnityEngine.Resources.UnloadAsset(UnityEngine.Object)">
- <summary>
- <para>Unloads assetToUnload from memory.</para>
- </summary>
- <param name="assetToUnload"></param>
- </member>
- <member name="M:UnityEngine.Resources.UnloadUnusedAssets">
- <summary>
- <para>Unloads assets that are not used.</para>
- </summary>
- <returns>
- <para>Object on which you can yield to wait until the operation completes.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.RuntimeInitializeLoadType">
- <summary>
- <para>Set RuntimeInitializeOnLoadMethod type.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RuntimeInitializeLoadType.AfterSceneLoad">
- <summary>
- <para>After scene is loaded.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RuntimeInitializeLoadType.BeforeSceneLoad">
- <summary>
- <para>Before scene is loaded.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.RuntimeInitializeOnLoadMethodAttribute">
- <summary>
- <para>Allow a runtime class method to be initialized when a game is loaded at runtime
- without action from the user.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RuntimeInitializeOnLoadMethodAttribute.loadType">
- <summary>
- <para>Set RuntimeInitializeOnLoadMethod type.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.RuntimeInitializeOnLoadMethodAttribute.#ctor">
- <summary>
- <para>Creation of the runtime class used when scenes are loaded.</para>
- </summary>
- <param name="loadType">Determine whether methods are called before or after the
- scene is loaded.</param>
- </member>
- <member name="M:UnityEngine.RuntimeInitializeOnLoadMethodAttribute.#ctor(UnityEngine.RuntimeInitializeLoadType)">
- <summary>
- <para>Creation of the runtime class used when scenes are loaded.</para>
- </summary>
- <param name="loadType">Determine whether methods are called before or after the
- scene is loaded.</param>
- </member>
- <member name="T:UnityEngine.RuntimePlatform">
- <summary>
- <para>The platform application is running. Returned by Application.platform.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RuntimePlatform.tvOS">
- <summary>
- <para>In the player on the Apple's tvOS.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RuntimePlatform.Android">
- <summary>
- <para>In the player on Android devices.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RuntimePlatform.IPhonePlayer">
- <summary>
- <para>In the player on the iPhone.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RuntimePlatform.LinuxEditor">
- <summary>
- <para>In the Unity editor on Linux.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RuntimePlatform.LinuxPlayer">
- <summary>
- <para>In the player on Linux.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RuntimePlatform.OSXDashboardPlayer">
- <summary>
- <para>In the Dashboard widget on macOS.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RuntimePlatform.OSXEditor">
- <summary>
- <para>In the Unity editor on macOS.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RuntimePlatform.OSXPlayer">
- <summary>
- <para>In the player on macOS.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RuntimePlatform.OSXWebPlayer">
- <summary>
- <para>In the web player on macOS.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RuntimePlatform.PS4">
- <summary>
- <para>In the player on the Playstation 4.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RuntimePlatform.PSP2">
- <summary>
- <para>In the player on the PS Vita.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RuntimePlatform.Switch">
- <summary>
- <para>In the player on Nintendo Switch.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RuntimePlatform.WebGLPlayer">
- <summary>
- <para>In the player on WebGL</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RuntimePlatform.WindowsEditor">
- <summary>
- <para>In the Unity editor on Windows.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RuntimePlatform.WindowsPlayer">
- <summary>
- <para>In the player on Windows.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RuntimePlatform.WindowsWebPlayer">
- <summary>
- <para>In the web player on Windows.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RuntimePlatform.WSAPlayerARM">
- <summary>
- <para>In the player on Windows Store Apps when CPU architecture is ARM.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RuntimePlatform.WSAPlayerX64">
- <summary>
- <para>In the player on Windows Store Apps when CPU architecture is X64.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RuntimePlatform.WSAPlayerX86">
- <summary>
- <para>In the player on Windows Store Apps when CPU architecture is X86.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RuntimePlatform.XboxOne">
- <summary>
- <para>In the player on Xbox One.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ScalableBufferManager">
- <summary>
- <para>Scales render textures to support dynamic resolution if the target platform/graphics API supports it.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ScalableBufferManager.heightScaleFactor">
- <summary>
- <para>Height scale factor to control dynamic resolution.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ScalableBufferManager.widthScaleFactor">
- <summary>
- <para>Width scale factor to control dynamic resolution.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.ScalableBufferManager.ResizeBuffers(System.Single,System.Single)">
- <summary>
- <para>Function to resize all buffers marked as DynamicallyScalable.</para>
- </summary>
- <param name="widthScale">New scale factor for the width the ScalableBufferManager will use to resize all render textures the user marked as DynamicallyScalable, has to be some value greater than 0.0 and less than or equal to 1.0.</param>
- <param name="heightScale">New scale factor for the height the ScalableBufferManager will use to resize all render textures the user marked as DynamicallyScalable, has to be some value greater than 0.0 and less than or equal to 1.0.</param>
- </member>
- <member name="T:UnityEngine.SceneManagement.LoadSceneMode">
- <summary>
- <para>Used when loading a scene in a player.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SceneManagement.LoadSceneMode.Additive">
- <summary>
- <para>Adds the scene to the current loaded scenes.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SceneManagement.LoadSceneMode.Single">
- <summary>
- <para>Closes all current loaded scenes and loads a scene.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.SceneManagement.Scene">
- <summary>
- <para>Run-time data structure for *.unity file.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SceneManagement.Scene.buildIndex">
- <summary>
- <para>Returns the index of the scene in the Build Settings. Always returns -1 if the scene was loaded through an AssetBundle.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SceneManagement.Scene.isDirty">
- <summary>
- <para>Returns true if the scene is modifed.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SceneManagement.Scene.isLoaded">
- <summary>
- <para>Returns true if the scene is loaded.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SceneManagement.Scene.name">
- <summary>
- <para>Returns the name of the scene.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SceneManagement.Scene.path">
- <summary>
- <para>Returns the relative path of the scene. Like: "AssetsMyScenesMyScene.unity".</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SceneManagement.Scene.rootCount">
- <summary>
- <para>The number of root transforms of this scene.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.SceneManagement.Scene.GetRootGameObjects">
- <summary>
- <para>Returns all the root game objects in the scene.</para>
- </summary>
- <returns>
- <para>An array of game objects.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.SceneManagement.Scene.GetRootGameObjects(System.Collections.Generic.List`1&lt;UnityEngine.GameObject&gt;)">
- <summary>
- <para>Returns all the root game objects in the scene.</para>
- </summary>
- <param name="rootGameObjects">A list which is used to return the root game objects.</param>
- </member>
- <member name="M:UnityEngine.SceneManagement.Scene.IsValid">
- <summary>
- <para>Whether this is a valid scene.
-A scene may be invalid if, for example, you tried to open a scene that does not exist. In this case, the scene returned from EditorSceneManager.OpenScene would return False for IsValid.</para>
- </summary>
- <returns>
- <para>Whether this is a valid scene.</para>
- </returns>
- </member>
- <member name="?:UnityEngine.SceneManagement.Scene.op_Equal(UnityEngine.SceneManagement.Scene,UnityEngine.SceneManagement.Scene)">
- <summary>
- <para>Returns true if the Scenes are equal.</para>
- </summary>
- <param name="lhs"></param>
- <param name="rhs"></param>
- </member>
- <member name="?:UnityEngine.SceneManagement.Scene.op_NotEqual(UnityEngine.SceneManagement.Scene,UnityEngine.SceneManagement.Scene)">
- <summary>
- <para>Returns true if the Scenes are different.</para>
- </summary>
- <param name="lhs"></param>
- <param name="rhs"></param>
- </member>
- <member name="T:UnityEngine.SceneManagement.SceneManager">
- <summary>
- <para>Scene management at run-time.</para>
- </summary>
- </member>
- <member name="?:UnityEngine.SceneManagement.SceneManager.activeSceneChanged(UnityEngine.Events.UnityAction`2&lt;UnityEngine.SceneManagement.Scene,UnityEngine.SceneManagement.Scene&gt;)">
- <summary>
- <para>Subscribe to this event to get notified when the active Scene has changed.</para>
- </summary>
- <param name="value">Previous active scene and the new active scene.</param>
- </member>
- <member name="P:UnityEngine.SceneManagement.SceneManager.sceneCount">
- <summary>
- <para>The total number of currently loaded Scenes.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SceneManagement.SceneManager.sceneCountInBuildSettings">
- <summary>
- <para>Number of Scenes in Build Settings.</para>
- </summary>
- </member>
- <member name="?:UnityEngine.SceneManagement.SceneManager.sceneLoaded(UnityEngine.Events.UnityAction`2&lt;UnityEngine.SceneManagement.Scene,UnityEngine.SceneManagement.LoadSceneMode&gt;)">
- <summary>
- <para>Add a delegate to this to get notifications when a Scene has loaded.</para>
- </summary>
- <param name="value"></param>
- </member>
- <member name="?:UnityEngine.SceneManagement.SceneManager.sceneUnloaded(UnityEngine.Events.UnityAction`1&lt;UnityEngine.SceneManagement.Scene&gt;)">
- <summary>
- <para>Add a delegate to this to get notifications when a Scene has unloaded</para>
- </summary>
- <param name="value"></param>
- </member>
- <member name="M:UnityEngine.SceneManagement.SceneManager.CreateScene(System.String)">
- <summary>
- <para>Create an empty new Scene at runtime with the given name.</para>
- </summary>
- <param name="sceneName">The name of the new Scene. It cannot be empty or null, or same as the name of the existing Scenes.</param>
- <returns>
- <para>A reference to the new Scene that was created, or an invalid Scene if creation failed.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.SceneManagement.SceneManager.GetActiveScene">
- <summary>
- <para>Gets the currently active Scene.</para>
- </summary>
- <returns>
- <para>The active Scene.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.SceneManagement.SceneManager.GetAllScenes">
- <summary>
- <para>Returns an array of all the Scenes currently open in the hierarchy.</para>
- </summary>
- <returns>
- <para>Array of Scenes in the Hierarchy.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.SceneManagement.SceneManager.GetSceneAt(System.Int32)">
- <summary>
- <para>Get the Scene at index in the SceneManager's list of loaded Scenes.</para>
- </summary>
- <param name="index">Index of the Scene to get. Index must be greater than or equal to 0 and less than SceneManager.sceneCount.</param>
- <returns>
- <para>A reference to the Scene at the index specified.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.SceneManagement.SceneManager.GetSceneByBuildIndex(System.Int32)">
- <summary>
- <para>Get a Scene struct from a build index.</para>
- </summary>
- <param name="buildIndex">Build index as shown in the Build Settings window.</param>
- <returns>
- <para>A reference to the Scene, if valid. If not, an invalid Scene is returned.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.SceneManagement.SceneManager.GetSceneByName(System.String)">
- <summary>
- <para>Searches through the Scenes loaded for a Scene with the given name.</para>
- </summary>
- <param name="name">Name of Scene to find.</param>
- <returns>
- <para>A reference to the Scene, if valid. If not, an invalid Scene is returned.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.SceneManagement.SceneManager.GetSceneByPath(System.String)">
- <summary>
- <para>Searches all Scenes loaded for a Scene that has the given asset path.</para>
- </summary>
- <param name="scenePath">Path of the Scene. Should be relative to the project folder. Like: "AssetsMyScenesMyScene.unity".</param>
- <returns>
- <para>A reference to the Scene, if valid. If not, an invalid Scene is returned.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.SceneManagement.SceneManager.LoadScene(System.Int32,UnityEngine.SceneManagement.LoadSceneMode)">
- <summary>
- <para>Loads the Scene by its name or index in Build Settings.</para>
- </summary>
- <param name="sceneName">Name or path of the Scene to load.</param>
- <param name="sceneBuildIndex">Index of the Scene in the Build Settings to load.</param>
- <param name="mode">Allows you to specify whether or not to load the Scene additively.
- See SceneManagement.LoadSceneMode for more information about the options.</param>
- </member>
- <member name="M:UnityEngine.SceneManagement.SceneManager.LoadScene(System.String,UnityEngine.SceneManagement.LoadSceneMode)">
- <summary>
- <para>Loads the Scene by its name or index in Build Settings.</para>
- </summary>
- <param name="sceneName">Name or path of the Scene to load.</param>
- <param name="sceneBuildIndex">Index of the Scene in the Build Settings to load.</param>
- <param name="mode">Allows you to specify whether or not to load the Scene additively.
- See SceneManagement.LoadSceneMode for more information about the options.</param>
- </member>
- <member name="M:UnityEngine.SceneManagement.SceneManager.LoadSceneAsync(System.String,UnityEngine.SceneManagement.LoadSceneMode)">
- <summary>
- <para>Loads the Scene asynchronously in the background.</para>
- </summary>
- <param name="sceneName">Name or path of the Scene to load.</param>
- <param name="sceneBuildIndex">Index of the Scene in the Build Settings to load.</param>
- <param name="mode">If LoadSceneMode.Single then all current Scenes will be unloaded before loading.</param>
- <returns>
- <para>Use the AsyncOperation to determine if the operation has completed.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.SceneManagement.SceneManager.LoadSceneAsync(System.Int32,UnityEngine.SceneManagement.LoadSceneMode)">
- <summary>
- <para>Loads the Scene asynchronously in the background.</para>
- </summary>
- <param name="sceneName">Name or path of the Scene to load.</param>
- <param name="sceneBuildIndex">Index of the Scene in the Build Settings to load.</param>
- <param name="mode">If LoadSceneMode.Single then all current Scenes will be unloaded before loading.</param>
- <returns>
- <para>Use the AsyncOperation to determine if the operation has completed.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.SceneManagement.SceneManager.MergeScenes(UnityEngine.SceneManagement.Scene,UnityEngine.SceneManagement.Scene)">
- <summary>
- <para>This will merge the source Scene into the destinationScene.</para>
- </summary>
- <param name="sourceScene">The Scene that will be merged into the destination Scene.</param>
- <param name="destinationScene">Existing Scene to merge the source Scene into.</param>
- </member>
- <member name="M:UnityEngine.SceneManagement.SceneManager.MoveGameObjectToScene(UnityEngine.GameObject,UnityEngine.SceneManagement.Scene)">
- <summary>
- <para>Move a GameObject from its current Scene to a new Scene.</para>
- </summary>
- <param name="go">GameObject to move.</param>
- <param name="scene">Scene to move into.</param>
- </member>
- <member name="M:UnityEngine.SceneManagement.SceneManager.SetActiveScene(UnityEngine.SceneManagement.Scene)">
- <summary>
- <para>Set the Scene to be active.</para>
- </summary>
- <param name="scene">The Scene to be set.</param>
- <returns>
- <para>Returns false if the Scene is not loaded yet.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.SceneManagement.SceneManager.UnloadScene(System.Int32)">
- <summary>
- <para>Destroys all GameObjects associated with the given Scene and removes the Scene from the SceneManager.</para>
- </summary>
- <param name="sceneBuildIndex">Index of the Scene in the Build Settings to unload.</param>
- <param name="sceneName">Name or path of the Scene to unload.</param>
- <param name="scene">Scene to unload.</param>
- <returns>
- <para>Returns true if the Scene is unloaded.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.SceneManagement.SceneManager.UnloadScene(System.String)">
- <summary>
- <para>Destroys all GameObjects associated with the given Scene and removes the Scene from the SceneManager.</para>
- </summary>
- <param name="sceneBuildIndex">Index of the Scene in the Build Settings to unload.</param>
- <param name="sceneName">Name or path of the Scene to unload.</param>
- <param name="scene">Scene to unload.</param>
- <returns>
- <para>Returns true if the Scene is unloaded.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.SceneManagement.SceneManager.UnloadScene(UnityEngine.SceneManagement.Scene)">
- <summary>
- <para>Destroys all GameObjects associated with the given Scene and removes the Scene from the SceneManager.</para>
- </summary>
- <param name="sceneBuildIndex">Index of the Scene in the Build Settings to unload.</param>
- <param name="sceneName">Name or path of the Scene to unload.</param>
- <param name="scene">Scene to unload.</param>
- <returns>
- <para>Returns true if the Scene is unloaded.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.SceneManagement.SceneManager.UnloadSceneAsync(System.Int32)">
- <summary>
- <para>Destroys all GameObjects associated with the given Scene and removes the Scene from the SceneManager.</para>
- </summary>
- <param name="sceneBuildIndex">Index of the Scene in BuildSettings.</param>
- <param name="sceneName">Name or path of the Scene to unload.</param>
- <param name="scene">Scene to unload.</param>
- <returns>
- <para>Use the AsyncOperation to determine if the operation has completed.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.SceneManagement.SceneManager.UnloadSceneAsync(System.String)">
- <summary>
- <para>Destroys all GameObjects associated with the given Scene and removes the Scene from the SceneManager.</para>
- </summary>
- <param name="sceneBuildIndex">Index of the Scene in BuildSettings.</param>
- <param name="sceneName">Name or path of the Scene to unload.</param>
- <param name="scene">Scene to unload.</param>
- <returns>
- <para>Use the AsyncOperation to determine if the operation has completed.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.SceneManagement.SceneManager.UnloadSceneAsync(UnityEngine.SceneManagement.Scene)">
- <summary>
- <para>Destroys all GameObjects associated with the given Scene and removes the Scene from the SceneManager.</para>
- </summary>
- <param name="sceneBuildIndex">Index of the Scene in BuildSettings.</param>
- <param name="sceneName">Name or path of the Scene to unload.</param>
- <param name="scene">Scene to unload.</param>
- <returns>
- <para>Use the AsyncOperation to determine if the operation has completed.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.SceneManagement.SceneUtility">
- <summary>
- <para>Scene and Build Settings related utilities.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.SceneManagement.SceneUtility.GetBuildIndexByScenePath(System.String)">
- <summary>
- <para>Get the build index from a scene path.</para>
- </summary>
- <param name="scenePath">Scene path (e.g: "AssetsScenesScene1.unity").</param>
- <returns>
- <para>Build index.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.SceneManagement.SceneUtility.GetScenePathByBuildIndex(System.Int32)">
- <summary>
- <para>Get the scene path from a build index.</para>
- </summary>
- <param name="buildIndex"></param>
- <returns>
- <para>Scene path (e.g "AssetsScenesScene1.unity").</para>
- </returns>
- </member>
- <member name="T:UnityEngine.Screen">
- <summary>
- <para>Access to display information.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Screen.autorotateToLandscapeLeft">
- <summary>
- <para>Allow auto-rotation to landscape left?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Screen.autorotateToLandscapeRight">
- <summary>
- <para>Allow auto-rotation to landscape right?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Screen.autorotateToPortrait">
- <summary>
- <para>Allow auto-rotation to portrait?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Screen.autorotateToPortraitUpsideDown">
- <summary>
- <para>Allow auto-rotation to portrait, upside down?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Screen.currentResolution">
- <summary>
- <para>The current screen resolution (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Screen.dpi">
- <summary>
- <para>The current DPI of the screen / device (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Screen.fullScreen">
- <summary>
- <para>Is the game running fullscreen?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Screen.fullScreenMode">
- <summary>
- <para>Set this property to one of the values in FullScreenMode to change the display mode of your application.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Screen.height">
- <summary>
- <para>The current height of the screen window in pixels (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Screen.lockCursor">
- <summary>
- <para>Should the cursor be locked?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Screen.orientation">
- <summary>
- <para>Specifies logical orientation of the screen.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Screen.resolutions">
- <summary>
- <para>All fullscreen resolutions supported by the monitor (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Screen.safeArea">
- <summary>
- <para>Returns the safe area of the screen in pixels (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Screen.sleepTimeout">
- <summary>
- <para>A power saving setting, allowing the screen to dim some time after the last active user interaction.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Screen.width">
- <summary>
- <para>The current width of the screen window in pixels (Read Only).</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Screen.SetResolution(System.Int32,System.Int32,System.Boolean)">
- <summary>
- <para>Switches the screen resolution.</para>
- </summary>
- <param name="width"></param>
- <param name="height"></param>
- <param name="fullscreen"></param>
- <param name="preferredRefreshRate"></param>
- <param name="fullscreenMode"></param>
- </member>
- <member name="M:UnityEngine.Screen.SetResolution(System.Int32,System.Int32,System.Boolean,System.Int32)">
- <summary>
- <para>Switches the screen resolution.</para>
- </summary>
- <param name="width"></param>
- <param name="height"></param>
- <param name="fullscreen"></param>
- <param name="preferredRefreshRate"></param>
- <param name="fullscreenMode"></param>
- </member>
- <member name="M:UnityEngine.Screen.SetResolution(System.Int32,System.Int32,UnityEngine.FullScreenMode,System.Int32)">
- <summary>
- <para>Switches the screen resolution.</para>
- </summary>
- <param name="width"></param>
- <param name="height"></param>
- <param name="fullscreen"></param>
- <param name="preferredRefreshRate"></param>
- <param name="fullscreenMode"></param>
- </member>
- <member name="T:UnityEngine.ScreenOrientation">
- <summary>
- <para>Describes screen orientation.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ScreenOrientation.AutoRotation">
- <summary>
- <para>Auto-rotates the screen as necessary toward any of the enabled orientations.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ScreenOrientation.LandscapeLeft">
- <summary>
- <para>Landscape orientation, counter-clockwise from the portrait orientation.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ScreenOrientation.LandscapeRight">
- <summary>
- <para>Landscape orientation, clockwise from the portrait orientation.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ScreenOrientation.Portrait">
- <summary>
- <para>Portrait orientation.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ScreenOrientation.PortraitUpsideDown">
- <summary>
- <para>Portrait orientation, upside down.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ScriptableObject">
- <summary>
- <para>A class you can derive from if you want to create objects that don't need to be attached to game objects.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.ScriptableObject.CreateInstance(System.String)">
- <summary>
- <para>Creates an instance of a scriptable object.</para>
- </summary>
- <param name="className">The type of the ScriptableObject to create, as the name of the type.</param>
- <param name="type">The type of the ScriptableObject to create, as a System.Type instance.</param>
- <returns>
- <para>The created ScriptableObject.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.ScriptableObject.CreateInstance(System.Type)">
- <summary>
- <para>Creates an instance of a scriptable object.</para>
- </summary>
- <param name="className">The type of the ScriptableObject to create, as the name of the type.</param>
- <param name="type">The type of the ScriptableObject to create, as a System.Type instance.</param>
- <returns>
- <para>The created ScriptableObject.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.ScriptableObject.CreateInstance">
- <summary>
- <para>Creates an instance of a scriptable object.</para>
- </summary>
- <returns>
- <para>The created ScriptableObject.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.Scripting.PreserveAttribute">
- <summary>
- <para>PreserveAttribute prevents byte code stripping from removing a class, method, field, or property.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Security">
- <summary>
- <para>Webplayer security related class. Not supported from 5.4.0 onwards.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Security.LoadAndVerifyAssembly(System.Byte[],System.String)">
- <summary>
- <para>Loads an assembly and checks that it is allowed to be used in the webplayer. (Web Player is no Longer Supported).</para>
- </summary>
- <param name="assemblyData">Assembly to verify.</param>
- <param name="authorizationKey">Public key used to verify assembly.</param>
- <returns>
- <para>Loaded, verified, assembly, or null if the assembly cannot be verfied.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Security.LoadAndVerifyAssembly(System.Byte[])">
- <summary>
- <para>Loads an assembly and checks that it is allowed to be used in the webplayer. (Web Player is no Longer Supported).</para>
- </summary>
- <param name="assemblyData">Assembly to verify.</param>
- <param name="authorizationKey">Public key used to verify assembly.</param>
- <returns>
- <para>Loaded, verified, assembly, or null if the assembly cannot be verfied.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Security.PrefetchSocketPolicy(System.String,System.Int32)">
- <summary>
- <para>Prefetch the webplayer socket security policy from a non-default port number.</para>
- </summary>
- <param name="ip">IP address of server.</param>
- <param name="atPort">Port from where socket policy is read.</param>
- <param name="timeout">Time to wait for response.</param>
- </member>
- <member name="M:UnityEngine.Security.PrefetchSocketPolicy(System.String,System.Int32,System.Int32)">
- <summary>
- <para>Prefetch the webplayer socket security policy from a non-default port number.</para>
- </summary>
- <param name="ip">IP address of server.</param>
- <param name="atPort">Port from where socket policy is read.</param>
- <param name="timeout">Time to wait for response.</param>
- </member>
- <member name="T:UnityEngine.SelectionBaseAttribute">
- <summary>
- <para>Add this attribute to a script class to mark its GameObject as a selection base object for Scene View picking.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.SendMessageOptions">
- <summary>
- <para>Options for how to send a message.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SendMessageOptions.DontRequireReceiver">
- <summary>
- <para>No receiver is required for SendMessage.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SendMessageOptions.RequireReceiver">
- <summary>
- <para>A receiver is required for SendMessage.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Serialization.FormerlySerializedAsAttribute">
- <summary>
- <para>Use this attribute to rename a field without losing its serialized value.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Serialization.FormerlySerializedAsAttribute.oldName">
- <summary>
- <para>The name of the field before the rename.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Serialization.FormerlySerializedAsAttribute.#ctor(System.String)">
- <summary>
- <para></para>
- </summary>
- <param name="oldName">The name of the field before renaming.</param>
- </member>
- <member name="T:UnityEngine.SerializeField">
- <summary>
- <para>Force Unity to serialize a private field.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Shader">
- <summary>
- <para>Shader scripts used for all rendering.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Shader.globalMaximumLOD">
- <summary>
- <para>Shader LOD level for all shaders.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Shader.globalRenderPipeline">
- <summary>
- <para>Render pipeline currently in use.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Shader.globalShaderHardwareTier">
- <summary>
- <para>Shader hardware tier classification for current device.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Shader.isSupported">
- <summary>
- <para>Can this shader run on the end-users graphics card? (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Shader.maximumLOD">
- <summary>
- <para>Shader LOD level for this shader.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Shader.renderQueue">
- <summary>
- <para>Render queue of this shader. (Read Only)</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Shader.DisableKeyword(System.String)">
- <summary>
- <para>Unset a global shader keyword.</para>
- </summary>
- <param name="keyword"></param>
- </member>
- <member name="M:UnityEngine.Shader.EnableKeyword(System.String)">
- <summary>
- <para>Set a global shader keyword.</para>
- </summary>
- <param name="keyword"></param>
- </member>
- <member name="M:UnityEngine.Shader.Find(System.String)">
- <summary>
- <para>Finds a shader with the given name.</para>
- </summary>
- <param name="name"></param>
- </member>
- <member name="M:UnityEngine.Shader.GetGlobalColor(System.String)">
- <summary>
- <para>Gets a global color property for all shaders previously set using SetGlobalColor.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- </member>
- <member name="M:UnityEngine.Shader.GetGlobalColor(System.Int32)">
- <summary>
- <para>Gets a global color property for all shaders previously set using SetGlobalColor.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- </member>
- <member name="M:UnityEngine.Shader.GetGlobalFloat(System.String)">
- <summary>
- <para>Gets a global float property for all shaders previously set using SetGlobalFloat.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- </member>
- <member name="M:UnityEngine.Shader.GetGlobalFloat(System.Int32)">
- <summary>
- <para>Gets a global float property for all shaders previously set using SetGlobalFloat.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- </member>
- <member name="M:UnityEngine.Shader.GetGlobalFloatArray(System.String)">
- <summary>
- <para>Gets a global float array for all shaders previously set using SetGlobalFloatArray.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- </member>
- <member name="M:UnityEngine.Shader.GetGlobalFloatArray(System.Int32)">
- <summary>
- <para>Gets a global float array for all shaders previously set using SetGlobalFloatArray.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- </member>
- <member name="M:UnityEngine.Shader.GetGlobalFloatArray(System.String,System.Collections.Generic.List`1&lt;System.Single&gt;)">
- <summary>
- <para>Fetches a global float array into a list.</para>
- </summary>
- <param name="values">The list to hold the returned array.</param>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- </member>
- <member name="M:UnityEngine.Shader.GetGlobalFloatArray(System.Int32,System.Collections.Generic.List`1&lt;System.Single&gt;)">
- <summary>
- <para>Fetches a global float array into a list.</para>
- </summary>
- <param name="values">The list to hold the returned array.</param>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- </member>
- <member name="M:UnityEngine.Shader.GetGlobalInt(System.String)">
- <summary>
- <para>Gets a global int property for all shaders previously set using SetGlobalInt.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- </member>
- <member name="M:UnityEngine.Shader.GetGlobalInt(System.Int32)">
- <summary>
- <para>Gets a global int property for all shaders previously set using SetGlobalInt.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- </member>
- <member name="M:UnityEngine.Shader.GetGlobalMatrix(System.String)">
- <summary>
- <para>Gets a global matrix property for all shaders previously set using SetGlobalMatrix.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- </member>
- <member name="M:UnityEngine.Shader.GetGlobalMatrix(System.Int32)">
- <summary>
- <para>Gets a global matrix property for all shaders previously set using SetGlobalMatrix.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- </member>
- <member name="M:UnityEngine.Shader.GetGlobalMatrixArray(System.String)">
- <summary>
- <para>Gets a global matrix array for all shaders previously set using SetGlobalMatrixArray.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- </member>
- <member name="M:UnityEngine.Shader.GetGlobalMatrixArray(System.Int32)">
- <summary>
- <para>Gets a global matrix array for all shaders previously set using SetGlobalMatrixArray.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- </member>
- <member name="M:UnityEngine.Shader.GetGlobalMatrixArray(System.String,System.Collections.Generic.List`1&lt;UnityEngine.Matrix4x4&gt;)">
- <summary>
- <para>Fetches a global matrix array into a list.</para>
- </summary>
- <param name="values">The list to hold the returned array.</param>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- </member>
- <member name="M:UnityEngine.Shader.GetGlobalMatrixArray(System.Int32,System.Collections.Generic.List`1&lt;UnityEngine.Matrix4x4&gt;)">
- <summary>
- <para>Fetches a global matrix array into a list.</para>
- </summary>
- <param name="values">The list to hold the returned array.</param>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- </member>
- <member name="M:UnityEngine.Shader.GetGlobalTexture(System.String)">
- <summary>
- <para>Gets a global texture property for all shaders previously set using SetGlobalTexture.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- </member>
- <member name="M:UnityEngine.Shader.GetGlobalTexture(System.Int32)">
- <summary>
- <para>Gets a global texture property for all shaders previously set using SetGlobalTexture.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- </member>
- <member name="M:UnityEngine.Shader.GetGlobalVector(System.String)">
- <summary>
- <para>Gets a global vector property for all shaders previously set using SetGlobalVector.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- </member>
- <member name="M:UnityEngine.Shader.GetGlobalVector(System.Int32)">
- <summary>
- <para>Gets a global vector property for all shaders previously set using SetGlobalVector.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- </member>
- <member name="M:UnityEngine.Shader.GetGlobalVectorArray(System.String)">
- <summary>
- <para>Gets a global vector array for all shaders previously set using SetGlobalVectorArray.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- </member>
- <member name="M:UnityEngine.Shader.GetGlobalVectorArray(System.Int32)">
- <summary>
- <para>Gets a global vector array for all shaders previously set using SetGlobalVectorArray.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- </member>
- <member name="M:UnityEngine.Shader.GetGlobalVectorArray(System.String,System.Collections.Generic.List`1&lt;UnityEngine.Vector4&gt;)">
- <summary>
- <para>Fetches a global vector array into a list.</para>
- </summary>
- <param name="values">The list to hold the returned array.</param>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- </member>
- <member name="M:UnityEngine.Shader.GetGlobalVectorArray(System.Int32,System.Collections.Generic.List`1&lt;UnityEngine.Vector4&gt;)">
- <summary>
- <para>Fetches a global vector array into a list.</para>
- </summary>
- <param name="values">The list to hold the returned array.</param>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- </member>
- <member name="M:UnityEngine.Shader.IsKeywordEnabled(System.String)">
- <summary>
- <para>Is global shader keyword enabled?</para>
- </summary>
- <param name="keyword"></param>
- </member>
- <member name="M:UnityEngine.Shader.PropertyToID(System.String)">
- <summary>
- <para>Gets unique identifier for a shader property name.</para>
- </summary>
- <param name="name">Shader property name.</param>
- <returns>
- <para>Unique integer for the name.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Shader.SetGlobalBuffer(System.String,UnityEngine.ComputeBuffer)">
- <summary>
- <para>Sets a global compute buffer property for all shaders.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- <param name="value"></param>
- </member>
- <member name="M:UnityEngine.Shader.SetGlobalBuffer(System.Int32,UnityEngine.ComputeBuffer)">
- <summary>
- <para>Sets a global compute buffer property for all shaders.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- <param name="value"></param>
- </member>
- <member name="M:UnityEngine.Shader.SetGlobalColor(System.String,UnityEngine.Color)">
- <summary>
- <para>Sets a global color property for all shaders.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- <param name="value"></param>
- </member>
- <member name="M:UnityEngine.Shader.SetGlobalColor(System.Int32,UnityEngine.Color)">
- <summary>
- <para>Sets a global color property for all shaders.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- <param name="value"></param>
- </member>
- <member name="M:UnityEngine.Shader.SetGlobalFloat(System.String,System.Single)">
- <summary>
- <para>Sets a global float property for all shaders.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- <param name="value"></param>
- </member>
- <member name="M:UnityEngine.Shader.SetGlobalFloat(System.Int32,System.Single)">
- <summary>
- <para>Sets a global float property for all shaders.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- <param name="value"></param>
- </member>
- <member name="M:UnityEngine.Shader.SetGlobalFloatArray(System.String,System.Single[])">
- <summary>
- <para>Sets a global float array property for all shaders.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- <param name="values"></param>
- </member>
- <member name="M:UnityEngine.Shader.SetGlobalFloatArray(System.Int32,System.Single[])">
- <summary>
- <para>Sets a global float array property for all shaders.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- <param name="values"></param>
- </member>
- <member name="M:UnityEngine.Shader.SetGlobalFloatArray(System.String,System.Collections.Generic.List`1&lt;System.Single&gt;)">
- <summary>
- <para>Sets a global float array property for all shaders.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- <param name="values"></param>
- </member>
- <member name="M:UnityEngine.Shader.SetGlobalFloatArray(System.Int32,System.Collections.Generic.List`1&lt;System.Single&gt;)">
- <summary>
- <para>Sets a global float array property for all shaders.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- <param name="values"></param>
- </member>
- <member name="M:UnityEngine.Shader.SetGlobalInt(System.String,System.Int32)">
- <summary>
- <para>Sets a global int property for all shaders.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- <param name="value"></param>
- </member>
- <member name="M:UnityEngine.Shader.SetGlobalInt(System.Int32,System.Int32)">
- <summary>
- <para>Sets a global int property for all shaders.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- <param name="value"></param>
- </member>
- <member name="M:UnityEngine.Shader.SetGlobalMatrix(System.String,UnityEngine.Matrix4x4)">
- <summary>
- <para>Sets a global matrix property for all shaders.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- <param name="value"></param>
- </member>
- <member name="M:UnityEngine.Shader.SetGlobalMatrix(System.Int32,UnityEngine.Matrix4x4)">
- <summary>
- <para>Sets a global matrix property for all shaders.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- <param name="value"></param>
- </member>
- <member name="M:UnityEngine.Shader.SetGlobalMatrixArray(System.String,UnityEngine.Matrix4x4[])">
- <summary>
- <para>Sets a global matrix array property for all shaders.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- <param name="values"></param>
- </member>
- <member name="M:UnityEngine.Shader.SetGlobalMatrixArray(System.Int32,UnityEngine.Matrix4x4[])">
- <summary>
- <para>Sets a global matrix array property for all shaders.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- <param name="values"></param>
- </member>
- <member name="M:UnityEngine.Shader.SetGlobalMatrixArray(System.String,System.Collections.Generic.List`1&lt;UnityEngine.Matrix4x4&gt;)">
- <summary>
- <para>Sets a global matrix array property for all shaders.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- <param name="values"></param>
- </member>
- <member name="M:UnityEngine.Shader.SetGlobalMatrixArray(System.Int32,System.Collections.Generic.List`1&lt;UnityEngine.Matrix4x4&gt;)">
- <summary>
- <para>Sets a global matrix array property for all shaders.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- <param name="values"></param>
- </member>
- <member name="M:UnityEngine.Shader.SetGlobalTexture(System.String,UnityEngine.Texture)">
- <summary>
- <para>Sets a global texture property for all shaders.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- <param name="value"></param>
- </member>
- <member name="M:UnityEngine.Shader.SetGlobalTexture(System.Int32,UnityEngine.Texture)">
- <summary>
- <para>Sets a global texture property for all shaders.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- <param name="value"></param>
- </member>
- <member name="M:UnityEngine.Shader.SetGlobalVector(System.String,UnityEngine.Vector4)">
- <summary>
- <para>Sets a global vector property for all shaders.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- <param name="value"></param>
- </member>
- <member name="M:UnityEngine.Shader.SetGlobalVector(System.Int32,UnityEngine.Vector4)">
- <summary>
- <para>Sets a global vector property for all shaders.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- <param name="value"></param>
- </member>
- <member name="M:UnityEngine.Shader.SetGlobalVectorArray(System.String,UnityEngine.Vector4[])">
- <summary>
- <para>Sets a global vector array property for all shaders.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- <param name="values"></param>
- </member>
- <member name="M:UnityEngine.Shader.SetGlobalVectorArray(System.Int32,UnityEngine.Vector4[])">
- <summary>
- <para>Sets a global vector array property for all shaders.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- <param name="values"></param>
- </member>
- <member name="M:UnityEngine.Shader.SetGlobalVectorArray(System.String,System.Collections.Generic.List`1&lt;UnityEngine.Vector4&gt;)">
- <summary>
- <para>Sets a global vector array property for all shaders.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- <param name="values"></param>
- </member>
- <member name="M:UnityEngine.Shader.SetGlobalVectorArray(System.Int32,System.Collections.Generic.List`1&lt;UnityEngine.Vector4&gt;)">
- <summary>
- <para>Sets a global vector array property for all shaders.</para>
- </summary>
- <param name="nameID">The name ID of the property retrieved by Shader.PropertyToID.</param>
- <param name="name">The name of the property.</param>
- <param name="values"></param>
- </member>
- <member name="M:UnityEngine.Shader.WarmupAllShaders">
- <summary>
- <para>Fully load all shaders to prevent future performance hiccups.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ShaderVariantCollection">
- <summary>
- <para>ShaderVariantCollection records which shader variants are actually used in each shader.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ShaderVariantCollection.isWarmedUp">
- <summary>
- <para>Is this ShaderVariantCollection already warmed up? (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ShaderVariantCollection.shaderCount">
- <summary>
- <para>Number of shaders in this collection (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ShaderVariantCollection.variantCount">
- <summary>
- <para>Number of total varians in this collection (Read Only).</para>
- </summary>
- </member>
- <member name="M:UnityEngine.ShaderVariantCollection.Add(UnityEngine.ShaderVariantCollection/ShaderVariant)">
- <summary>
- <para>Adds a new shader variant to the collection.</para>
- </summary>
- <param name="variant">Shader variant to add.</param>
- <returns>
- <para>False if already in the collection.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.ShaderVariantCollection.Clear">
- <summary>
- <para>Remove all shader variants from the collection.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.ShaderVariantCollection.Contains(UnityEngine.ShaderVariantCollection/ShaderVariant)">
- <summary>
- <para>Checks if a shader variant is in the collection.</para>
- </summary>
- <param name="variant">Shader variant to check.</param>
- <returns>
- <para>True if the variant is in the collection.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.ShaderVariantCollection.#ctor">
- <summary>
- <para>Create a new empty shader variant collection.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.ShaderVariantCollection.Remove(UnityEngine.ShaderVariantCollection/ShaderVariant)">
- <summary>
- <para>Adds shader variant from the collection.</para>
- </summary>
- <param name="variant">Shader variant to add.</param>
- <returns>
- <para>False if was not in the collection.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.ShaderVariantCollection.ShaderVariant">
- <summary>
- <para>Identifies a specific variant of a shader.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ShaderVariantCollection.ShaderVariant.keywords">
- <summary>
- <para>Array of shader keywords to use in this variant.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ShaderVariantCollection.ShaderVariant.passType">
- <summary>
- <para>Pass type to use in this variant.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ShaderVariantCollection.ShaderVariant.shader">
- <summary>
- <para>Shader to use in this variant.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.ShaderVariantCollection.ShaderVariant.#ctor(UnityEngine.Shader,UnityEngine.Rendering.PassType,System.String[])">
- <summary>
- <para>Creates a ShaderVariant structure.</para>
- </summary>
- <param name="shader"></param>
- <param name="passType"></param>
- <param name="keywords"></param>
- </member>
- <member name="M:UnityEngine.ShaderVariantCollection.WarmUp">
- <summary>
- <para>Fully load shaders in ShaderVariantCollection.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ShadowmaskMode">
- <summary>
- <para>The rendering mode of Shadowmask.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ShadowmaskMode.DistanceShadowmask">
- <summary>
- <para>Static shadow casters will be rendered into realtime shadow maps. Shadowmasks and occlusion from Light Probes will only be used past the realtime shadow distance.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ShadowmaskMode.Shadowmask">
- <summary>
- <para>Static shadow casters won't be rendered into realtime shadow maps. All shadows from static casters are handled via Shadowmasks and occlusion from Light Probes.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ShadowProjection">
- <summary>
- <para>Shadow projection type for.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ShadowProjection.CloseFit">
- <summary>
- <para>Close fit shadow maps with linear fadeout.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ShadowProjection.StableFit">
- <summary>
- <para>Stable shadow maps with spherical fadeout.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ShadowQuality">
- <summary>
- <para>Determines which type of shadows should be used.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ShadowQuality.All">
- <summary>
- <para>Hard and Soft Shadows.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ShadowQuality.Disable">
- <summary>
- <para>Disable Shadows.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ShadowQuality.HardOnly">
- <summary>
- <para>Hard Shadows Only.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ShadowResolution">
- <summary>
- <para>Default shadow resolution.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ShadowResolution.High">
- <summary>
- <para>High shadow map resolution.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ShadowResolution.Low">
- <summary>
- <para>Low shadow map resolution.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ShadowResolution.Medium">
- <summary>
- <para>Medium shadow map resolution.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ShadowResolution.VeryHigh">
- <summary>
- <para>Very high shadow map resolution.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.SkinnedMeshRenderer">
- <summary>
- <para>The Skinned Mesh filter.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SkinnedMeshRenderer.bones">
- <summary>
- <para>The bones used to skin the mesh.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SkinnedMeshRenderer.localBounds">
- <summary>
- <para>AABB of this Skinned Mesh in its local space.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SkinnedMeshRenderer.quality">
- <summary>
- <para>The maximum number of bones affecting a single vertex.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SkinnedMeshRenderer.sharedMesh">
- <summary>
- <para>The mesh used for skinning.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SkinnedMeshRenderer.skinnedMotionVectors">
- <summary>
- <para>Specifies whether skinned motion vectors should be used for this renderer.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SkinnedMeshRenderer.updateWhenOffscreen">
- <summary>
- <para>If enabled, the Skinned Mesh will be updated when offscreen. If disabled, this also disables updating animations.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.SkinnedMeshRenderer.BakeMesh(UnityEngine.Mesh)">
- <summary>
- <para>Creates a snapshot of SkinnedMeshRenderer and stores it in mesh.</para>
- </summary>
- <param name="mesh">A static mesh that will receive the snapshot of the skinned mesh.</param>
- </member>
- <member name="M:UnityEngine.SkinnedMeshRenderer.GetBlendShapeWeight(System.Int32)">
- <summary>
- <para>Returns weight of BlendShape on this renderer.</para>
- </summary>
- <param name="index"></param>
- </member>
- <member name="M:UnityEngine.SkinnedMeshRenderer.SetBlendShapeWeight(System.Int32,System.Single)">
- <summary>
- <para>Sets the weight in percent of a BlendShape on this Renderer.</para>
- </summary>
- <param name="index">The index of the BlendShape to modify.</param>
- <param name="value">The weight in percent for this BlendShape.</param>
- </member>
- <member name="T:UnityEngine.SkinQuality">
- <summary>
- <para>The maximum number of bones affecting a single vertex.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SkinQuality.Auto">
- <summary>
- <para>Chooses the number of bones from the number current QualitySettings. (Default)</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SkinQuality.Bone1">
- <summary>
- <para>Use only 1 bone to deform a single vertex. (The most important bone will be used).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SkinQuality.Bone2">
- <summary>
- <para>Use 2 bones to deform a single vertex. (The most important bones will be used).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SkinQuality.Bone4">
- <summary>
- <para>Use 4 bones to deform a single vertex.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Skybox">
- <summary>
- <para>A script interface for the.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Skybox.material">
- <summary>
- <para>The material used by the skybox.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.SleepTimeout">
- <summary>
- <para>Constants for special values of Screen.sleepTimeout.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SleepTimeout.NeverSleep">
- <summary>
- <para>Prevent screen dimming.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SleepTimeout.SystemSetting">
- <summary>
- <para>Set the sleep timeout to whatever the user has specified in the system settings.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.SortingLayer">
- <summary>
- <para>SortingLayer allows you to set the render order of multiple sprites easily. There is always a default SortingLayer named "Default" which all sprites are added to initially. Added more SortingLayers to easily control the order of rendering of groups of sprites. Layers can be ordered before or after the default layer.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SortingLayer.id">
- <summary>
- <para>This is the unique id assigned to the layer. It is not an ordered running value and it should not be used to compare with other layers to determine the sorting order.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SortingLayer.layers">
- <summary>
- <para>Returns all the layers defined in this project.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SortingLayer.name">
- <summary>
- <para>Returns the name of the layer as defined in the TagManager.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SortingLayer.value">
- <summary>
- <para>This is the relative value that indicates the sort order of this layer relative to the other layers.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.SortingLayer.GetLayerValueFromID(System.Int32)">
- <summary>
- <para>Returns the final sorting layer value. To determine the sorting order between the various sorting layers, use this method to retrieve the final sorting value and use CompareTo to determine the order.</para>
- </summary>
- <param name="id">The unique value of the sorting layer as returned by any renderer's sortingLayerID property.</param>
- <returns>
- <para>The final sorting value of the layer relative to other layers.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.SortingLayer.GetLayerValueFromName(System.String)">
- <summary>
- <para>Returns the final sorting layer value. See Also: GetLayerValueFromID.</para>
- </summary>
- <param name="name">The unique value of the sorting layer as returned by any renderer's sortingLayerID property.</param>
- <returns>
- <para>The final sorting value of the layer relative to other layers.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.SortingLayer.IDToName(System.Int32)">
- <summary>
- <para>Returns the unique id of the layer. Will return "&lt;unknown layer&gt;" if an invalid id is given.</para>
- </summary>
- <param name="id">The unique id of the layer.</param>
- <returns>
- <para>The name of the layer with id or "&lt;unknown layer&gt;" for invalid id.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.SortingLayer.IsValid(System.Int32)">
- <summary>
- <para>Returns true if the id provided is a valid layer id.</para>
- </summary>
- <param name="id">The unique id of a layer.</param>
- <returns>
- <para>True if the id provided is valid and assigned to a layer.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.SortingLayer.NameToID(System.String)">
- <summary>
- <para>Returns the id given the name. Will return 0 if an invalid name was given.</para>
- </summary>
- <param name="name">The name of the layer.</param>
- <returns>
- <para>The unique id of the layer with name.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.Space">
- <summary>
- <para>The coordinate space in which to operate.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Space.Self">
- <summary>
- <para>Applies transformation relative to the local coordinate system.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Space.World">
- <summary>
- <para>Applies transformation relative to the world coordinate system.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.SpaceAttribute">
- <summary>
- <para>Use this PropertyAttribute to add some spacing in the Inspector.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SpaceAttribute.height">
- <summary>
- <para>The spacing in pixels.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.SpaceAttribute.#ctor(System.Single)">
- <summary>
- <para>Use this DecoratorDrawer to add some spacing in the Inspector.</para>
- </summary>
- <param name="height">The spacing in pixels.</param>
- </member>
- <member name="T:UnityEngine.SparseTexture">
- <summary>
- <para>Class for handling Sparse Textures.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SparseTexture.isCreated">
- <summary>
- <para>Is the sparse texture actually created? (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SparseTexture.tileHeight">
- <summary>
- <para>Get sparse texture tile height (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SparseTexture.tileWidth">
- <summary>
- <para>Get sparse texture tile width (Read Only).</para>
- </summary>
- </member>
- <member name="M:UnityEngine.SparseTexture.#ctor(System.Int32,System.Int32,UnityEngine.TextureFormat,System.Int32)">
- <summary>
- <para>Create a sparse texture.</para>
- </summary>
- <param name="width">Texture width in pixels.</param>
- <param name="height">Texture height in pixels.</param>
- <param name="format">Texture format.</param>
- <param name="mipCount">Mipmap count. Pass -1 to create full mipmap chain.</param>
- <param name="linear">Whether texture data will be in linear or sRGB color space (default is sRGB).</param>
- </member>
- <member name="M:UnityEngine.SparseTexture.#ctor(System.Int32,System.Int32,UnityEngine.TextureFormat,System.Int32,System.Boolean)">
- <summary>
- <para>Create a sparse texture.</para>
- </summary>
- <param name="width">Texture width in pixels.</param>
- <param name="height">Texture height in pixels.</param>
- <param name="format">Texture format.</param>
- <param name="mipCount">Mipmap count. Pass -1 to create full mipmap chain.</param>
- <param name="linear">Whether texture data will be in linear or sRGB color space (default is sRGB).</param>
- </member>
- <member name="M:UnityEngine.SparseTexture.UnloadTile(System.Int32,System.Int32,System.Int32)">
- <summary>
- <para>Unload sparse texture tile.</para>
- </summary>
- <param name="tileX">Tile X coordinate.</param>
- <param name="tileY">Tile Y coordinate.</param>
- <param name="miplevel">Mipmap level of the texture.</param>
- </member>
- <member name="M:UnityEngine.SparseTexture.UpdateTile(System.Int32,System.Int32,System.Int32,UnityEngine.Color32[])">
- <summary>
- <para>Update sparse texture tile with color values.</para>
- </summary>
- <param name="tileX">Tile X coordinate.</param>
- <param name="tileY">Tile Y coordinate.</param>
- <param name="miplevel">Mipmap level of the texture.</param>
- <param name="data">Tile color data.</param>
- </member>
- <member name="M:UnityEngine.SparseTexture.UpdateTileRaw(System.Int32,System.Int32,System.Int32,System.Byte[])">
- <summary>
- <para>Update sparse texture tile with raw pixel values.</para>
- </summary>
- <param name="tileX">Tile X coordinate.</param>
- <param name="tileY">Tile Y coordinate.</param>
- <param name="miplevel">Mipmap level of the texture.</param>
- <param name="data">Tile raw pixel data.</param>
- </member>
- <member name="T:UnityEngine.Sprite">
- <summary>
- <para>Represents a Sprite object for use in 2D gameplay.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Sprite.associatedAlphaSplitTexture">
- <summary>
- <para>Returns the texture that contains the alpha channel from the source texture. Unity generates this texture under the hood for sprites that have alpha in the source, and need to be compressed using techniques like ETC1.
-
-Returns NULL if there is no associated alpha texture for the source sprite. This is the case if the sprite has not been setup to use ETC1 compression.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Sprite.border">
- <summary>
- <para>Returns the border sizes of the sprite.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Sprite.bounds">
- <summary>
- <para>Bounds of the Sprite, specified by its center and extents in world space units.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Sprite.packed">
- <summary>
- <para>Returns true if this Sprite is packed in an atlas.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Sprite.packingMode">
- <summary>
- <para>If Sprite is packed (see Sprite.packed), returns its SpritePackingMode.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Sprite.packingRotation">
- <summary>
- <para>If Sprite is packed (see Sprite.packed), returns its SpritePackingRotation.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Sprite.pivot">
- <summary>
- <para>Location of the Sprite's center point in the Rect on the original Texture, specified in pixels.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Sprite.pixelsPerUnit">
- <summary>
- <para>The number of pixels in the sprite that correspond to one unit in world space. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Sprite.rect">
- <summary>
- <para>Location of the Sprite on the original Texture, specified in pixels.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Sprite.texture">
- <summary>
- <para>Get the reference to the used texture. If packed this will point to the atlas, if not packed will point to the source sprite.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Sprite.textureRect">
- <summary>
- <para>Get the rectangle this sprite uses on its texture. Raises an exception if this sprite is tightly packed in an atlas.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Sprite.textureRectOffset">
- <summary>
- <para>Gets the offset of the rectangle this sprite uses on its texture to the original sprite bounds. If sprite mesh type is FullRect, offset is zero.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Sprite.triangles">
- <summary>
- <para>Returns a copy of the array containing sprite mesh triangles.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Sprite.uv">
- <summary>
- <para>The base texture coordinates of the sprite mesh.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Sprite.vertices">
- <summary>
- <para>Returns a copy of the array containing sprite mesh vertex positions.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Sprite.Create(UnityEngine.Texture2D,UnityEngine.Rect,UnityEngine.Vector2,System.Single,System.UInt32)">
- <summary>
- <para>Create a new Sprite object.</para>
- </summary>
- <param name="texture">Texture from which to obtain the sprite graphic.</param>
- <param name="rect">Rectangular section of the texture to use for the sprite.</param>
- <param name="pivot">Sprite's pivot point relative to its graphic rectangle.</param>
- <param name="pixelsPerUnit">The number of pixels in the sprite that correspond to one unit in world space.</param>
- <param name="extrude">Amount by which the sprite mesh should be expanded outwards.</param>
- <param name="meshType">Controls the type of mesh generated for the sprite.</param>
- <param name="border">The border sizes of the sprite (X=left, Y=bottom, Z=right, W=top).</param>
- <param name="generateFallbackPhysicsShape">Generates a default physics shape for the sprite.</param>
- </member>
- <member name="M:UnityEngine.Sprite.Create(UnityEngine.Texture2D,UnityEngine.Rect,UnityEngine.Vector2,System.Single,System.UInt32,UnityEngine.SpriteMeshType)">
- <summary>
- <para>Create a new Sprite object.</para>
- </summary>
- <param name="texture">Texture from which to obtain the sprite graphic.</param>
- <param name="rect">Rectangular section of the texture to use for the sprite.</param>
- <param name="pivot">Sprite's pivot point relative to its graphic rectangle.</param>
- <param name="pixelsPerUnit">The number of pixels in the sprite that correspond to one unit in world space.</param>
- <param name="extrude">Amount by which the sprite mesh should be expanded outwards.</param>
- <param name="meshType">Controls the type of mesh generated for the sprite.</param>
- <param name="border">The border sizes of the sprite (X=left, Y=bottom, Z=right, W=top).</param>
- <param name="generateFallbackPhysicsShape">Generates a default physics shape for the sprite.</param>
- </member>
- <member name="M:UnityEngine.Sprite.Create(UnityEngine.Texture2D,UnityEngine.Rect,UnityEngine.Vector2,System.Single,System.UInt32,UnityEngine.SpriteMeshType,UnityEngine.Vector4,System.Boolean)">
- <summary>
- <para>Create a new Sprite object.</para>
- </summary>
- <param name="texture">Texture from which to obtain the sprite graphic.</param>
- <param name="rect">Rectangular section of the texture to use for the sprite.</param>
- <param name="pivot">Sprite's pivot point relative to its graphic rectangle.</param>
- <param name="pixelsPerUnit">The number of pixels in the sprite that correspond to one unit in world space.</param>
- <param name="extrude">Amount by which the sprite mesh should be expanded outwards.</param>
- <param name="meshType">Controls the type of mesh generated for the sprite.</param>
- <param name="border">The border sizes of the sprite (X=left, Y=bottom, Z=right, W=top).</param>
- <param name="generateFallbackPhysicsShape">Generates a default physics shape for the sprite.</param>
- </member>
- <member name="M:UnityEngine.Sprite.Create(UnityEngine.Texture2D,UnityEngine.Rect,UnityEngine.Vector2,System.Single,System.UInt32,UnityEngine.SpriteMeshType,UnityEngine.Vector4)">
- <summary>
- <para>Create a new Sprite object.</para>
- </summary>
- <param name="texture">Texture from which to obtain the sprite graphic.</param>
- <param name="rect">Rectangular section of the texture to use for the sprite.</param>
- <param name="pivot">Sprite's pivot point relative to its graphic rectangle.</param>
- <param name="pixelsPerUnit">The number of pixels in the sprite that correspond to one unit in world space.</param>
- <param name="extrude">Amount by which the sprite mesh should be expanded outwards.</param>
- <param name="meshType">Controls the type of mesh generated for the sprite.</param>
- <param name="border">The border sizes of the sprite (X=left, Y=bottom, Z=right, W=top).</param>
- <param name="generateFallbackPhysicsShape">Generates a default physics shape for the sprite.</param>
- </member>
- <member name="M:UnityEngine.Sprite.Create(UnityEngine.Texture2D,UnityEngine.Rect,UnityEngine.Vector2)">
- <summary>
- <para>Create a new Sprite object.</para>
- </summary>
- <param name="texture">Texture from which to obtain the sprite graphic.</param>
- <param name="rect">Rectangular section of the texture to use for the sprite.</param>
- <param name="pivot">Sprite's pivot point relative to its graphic rectangle.</param>
- <param name="pixelsPerUnit">The number of pixels in the sprite that correspond to one unit in world space.</param>
- <param name="extrude">Amount by which the sprite mesh should be expanded outwards.</param>
- <param name="meshType">Controls the type of mesh generated for the sprite.</param>
- <param name="border">The border sizes of the sprite (X=left, Y=bottom, Z=right, W=top).</param>
- <param name="generateFallbackPhysicsShape">Generates a default physics shape for the sprite.</param>
- </member>
- <member name="M:UnityEngine.Sprite.Create(UnityEngine.Texture2D,UnityEngine.Rect,UnityEngine.Vector2,System.Single)">
- <summary>
- <para>Create a new Sprite object.</para>
- </summary>
- <param name="texture">Texture from which to obtain the sprite graphic.</param>
- <param name="rect">Rectangular section of the texture to use for the sprite.</param>
- <param name="pivot">Sprite's pivot point relative to its graphic rectangle.</param>
- <param name="pixelsPerUnit">The number of pixels in the sprite that correspond to one unit in world space.</param>
- <param name="extrude">Amount by which the sprite mesh should be expanded outwards.</param>
- <param name="meshType">Controls the type of mesh generated for the sprite.</param>
- <param name="border">The border sizes of the sprite (X=left, Y=bottom, Z=right, W=top).</param>
- <param name="generateFallbackPhysicsShape">Generates a default physics shape for the sprite.</param>
- </member>
- <member name="M:UnityEngine.Sprite.GetPhysicsShape(System.Int32,System.Collections.Generic.List`1&lt;UnityEngine.Vector2&gt;)">
- <summary>
- <para>Gets a physics shape from the Sprite by its index.</para>
- </summary>
- <param name="shapeIdx">The index of the physics shape to retrieve.</param>
- <param name="physicsShape">An ordered list of the points in the selected physics shape to store points in.</param>
- <returns>
- <para>The number of points stored in the given list.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Sprite.GetPhysicsShapeCount">
- <summary>
- <para>The number of physics shapes for the Sprite.</para>
- </summary>
- <returns>
- <para>The number of physics shapes for the Sprite.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Sprite.GetPhysicsShapePointCount(System.Int32)">
- <summary>
- <para>The number of points in the selected physics shape for the Sprite.</para>
- </summary>
- <param name="shapeIdx">The index of the physics shape to retrieve the number of points from.</param>
- <returns>
- <para>The number of points in the selected physics shape for the Sprite.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Sprite.OverrideGeometry(UnityEngine.Vector2[],System.UInt16[])">
- <summary>
- <para>Sets up new Sprite geometry.</para>
- </summary>
- <param name="vertices">Array of vertex positions in Sprite Rect space.</param>
- <param name="triangles">Array of sprite mesh triangle indices.</param>
- </member>
- <member name="M:UnityEngine.Sprite.OverridePhysicsShape(System.Collections.Generic.IList`1&lt;UnityEngine.Vector2[]&gt;)">
- <summary>
- <para>Sets up a new Sprite physics shape.</para>
- </summary>
- <param name="physicsShapes">A multidimensional list of points in Sprite.rect space denoting the physics shape outlines.</param>
- </member>
- <member name="T:UnityEngine.SpriteAlignment">
- <summary>
- <para>How a Sprite's graphic rectangle is aligned with its pivot point.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SpriteAlignment.BottomCenter">
- <summary>
- <para>Pivot is at the center of the bottom edge of the graphic rectangle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SpriteAlignment.BottomLeft">
- <summary>
- <para>Pivot is at the bottom left corner of the graphic rectangle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SpriteAlignment.BottomRight">
- <summary>
- <para>Pivot is at the bottom right corner of the graphic rectangle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SpriteAlignment.Center">
- <summary>
- <para>Pivot is at the center of the graphic rectangle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SpriteAlignment.Custom">
- <summary>
- <para>Pivot is at a custom position within the graphic rectangle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SpriteAlignment.LeftCenter">
- <summary>
- <para>Pivot is at the center of the left edge of the graphic rectangle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SpriteAlignment.RightCenter">
- <summary>
- <para>Pivot is at the center of the right edge of the graphic rectangle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SpriteAlignment.TopCenter">
- <summary>
- <para>Pivot is at the center of the top edge of the graphic rectangle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SpriteAlignment.TopLeft">
- <summary>
- <para>Pivot is at the top left corner of the graphic rectangle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SpriteAlignment.TopRight">
- <summary>
- <para>Pivot is at the top right corner of the graphic rectangle.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.SpriteDrawMode">
- <summary>
- <para>SpriteRenderer draw mode.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SpriteDrawMode.Simple">
- <summary>
- <para>Displays the full sprite.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SpriteDrawMode.Sliced">
- <summary>
- <para>The SpriteRenderer will render the sprite as a 9-slice image where the corners will remain constant and the other sections will scale.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SpriteDrawMode.Tiled">
- <summary>
- <para>The SpriteRenderer will render the sprite as a 9-slice image where the corners will remain constant and the other sections will tile.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.SpriteMaskInteraction">
- <summary>
- <para>This enum controls the mode under which the sprite will interact with the masking system.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SpriteMaskInteraction.None">
- <summary>
- <para>The sprite will not interact with the masking system.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SpriteMaskInteraction.VisibleInsideMask">
- <summary>
- <para>The sprite will be visible only in areas where a mask is present.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SpriteMaskInteraction.VisibleOutsideMask">
- <summary>
- <para>The sprite will be visible only in areas where no mask is present.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.SpriteMeshType">
- <summary>
- <para>Defines the type of mesh generated for a sprite.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SpriteMeshType.FullRect">
- <summary>
- <para>Rectangle mesh equal to the user specified sprite size.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SpriteMeshType.Tight">
- <summary>
- <para>Tight mesh based on pixel alpha values. As many excess pixels are cropped as possible.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.SpritePackingMode">
- <summary>
- <para>Sprite packing modes for the Sprite Packer.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SpritePackingMode.Rectangle">
- <summary>
- <para>Alpha-cropped ractangle packing.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SpritePackingMode.Tight">
- <summary>
- <para>Tight mesh based packing.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.SpritePackingRotation">
- <summary>
- <para>Sprite rotation modes for the Sprite Packer.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SpritePackingRotation.Any">
- <summary>
- <para>Any rotation.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SpritePackingRotation.FlipHorizontal">
- <summary>
- <para>Sprite is flipped horizontally when packed.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SpritePackingRotation.FlipVertical">
- <summary>
- <para>Sprite is flipped vertically when packed.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SpritePackingRotation.None">
- <summary>
- <para>No rotation.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SpritePackingRotation.Rotate180">
- <summary>
- <para>Sprite is rotated 180 degree when packed.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.SpriteRenderer">
- <summary>
- <para>Renders a Sprite for 2D graphics.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SpriteRenderer.adaptiveModeThreshold">
- <summary>
- <para>The current threshold for Sprite Renderer tiling.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SpriteRenderer.color">
- <summary>
- <para>Rendering color for the Sprite graphic.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SpriteRenderer.drawMode">
- <summary>
- <para>The current draw mode of the Sprite Renderer.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SpriteRenderer.flipX">
- <summary>
- <para>Flips the sprite on the X axis.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SpriteRenderer.flipY">
- <summary>
- <para>Flips the sprite on the Y axis.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SpriteRenderer.maskInteraction">
- <summary>
- <para>Specifies how the sprite interacts with the masks.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SpriteRenderer.size">
- <summary>
- <para>Property to set/get the size to render when the SpriteRenderer.drawMode is set to SpriteDrawMode.NineSlice.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SpriteRenderer.sprite">
- <summary>
- <para>The Sprite to render.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SpriteRenderer.spriteSortPoint">
- <summary>
- <para>Determines the position of the Sprite used for sorting the SpriteRenderer.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SpriteRenderer.tileMode">
- <summary>
- <para>The current tile mode of the Sprite Renderer.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Sprites.DataUtility">
- <summary>
- <para>Helper utilities for accessing Sprite data.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Sprites.DataUtility.GetInnerUV(UnityEngine.Sprite)">
- <summary>
- <para>Inner UV's of the Sprite.</para>
- </summary>
- <param name="sprite"></param>
- </member>
- <member name="M:UnityEngine.Sprites.DataUtility.GetMinSize(UnityEngine.Sprite)">
- <summary>
- <para>Minimum width and height of the Sprite.</para>
- </summary>
- <param name="sprite"></param>
- </member>
- <member name="M:UnityEngine.Sprites.DataUtility.GetOuterUV(UnityEngine.Sprite)">
- <summary>
- <para>Outer UV's of the Sprite.</para>
- </summary>
- <param name="sprite"></param>
- </member>
- <member name="M:UnityEngine.Sprites.DataUtility.GetPadding(UnityEngine.Sprite)">
- <summary>
- <para>Return the padding on the sprite.</para>
- </summary>
- <param name="sprite"></param>
- </member>
- <member name="T:UnityEngine.SpriteSortPoint">
- <summary>
- <para>Determines the position of the Sprite used for sorting the Renderer.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SpriteSortPoint.Center">
- <summary>
- <para>The center of the Sprite is used as the point for sorting the Renderer.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SpriteSortPoint.Pivot">
- <summary>
- <para>The pivot of the Sprite is used as the point for sorting the Renderer.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.SpriteTileMode">
- <summary>
- <para>Tiling mode for SpriteRenderer.tileMode.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SpriteTileMode.Adaptive">
- <summary>
- <para>Sprite Renderer tiles the sprite once the Sprite Renderer size is above SpriteRenderer.adaptiveModeThreshold.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SpriteTileMode.Continuous">
- <summary>
- <para>Sprite Renderer tiles the sprite continuously when is set to SpriteRenderer.tileMode.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.StackTraceLogType">
- <summary>
- <para>Stack trace logging options.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.StackTraceLogType.Full">
- <summary>
- <para>Native and managed stack trace will be logged.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.StackTraceLogType.None">
- <summary>
- <para>No stack trace will be outputed to log.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.StackTraceLogType.ScriptOnly">
- <summary>
- <para>Only managed stack trace will be outputed.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.StaticBatchingUtility">
- <summary>
- <para>StaticBatchingUtility can prepare your objects to take advantage of Unity's static batching.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.StaticBatchingUtility.Combine(UnityEngine.GameObject)">
- <summary>
- <para>StaticBatchingUtility.Combine prepares all children of the staticBatchRoot for static batching.</para>
- </summary>
- <param name="staticBatchRoot"></param>
- </member>
- <member name="M:UnityEngine.StaticBatchingUtility.Combine(UnityEngine.GameObject[],UnityEngine.GameObject)">
- <summary>
- <para>StaticBatchingUtility.Combine prepares all gos for static batching. staticBatchRoot is treated as their parent.</para>
- </summary>
- <param name="gos"></param>
- <param name="staticBatchRoot"></param>
- </member>
- <member name="T:UnityEngine.StereoTargetEyeMask">
- <summary>
- <para>Enum values for the Camera's targetEye property.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.StereoTargetEyeMask.Both">
- <summary>
- <para>Render both eyes to the HMD.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.StereoTargetEyeMask.Left">
- <summary>
- <para>Render only the Left eye to the HMD.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.StereoTargetEyeMask.None">
- <summary>
- <para>Do not render either eye to the HMD.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.StereoTargetEyeMask.Right">
- <summary>
- <para>Render only the right eye to the HMD.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.SystemInfo">
- <summary>
- <para>Access system and hardware information.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SystemInfo.batteryLevel">
- <summary>
- <para>The current battery level (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SystemInfo.batteryStatus">
- <summary>
- <para>Returns the current status of the device's battery (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SystemInfo.copyTextureSupport">
- <summary>
- <para>Support for various Graphics.CopyTexture cases (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SystemInfo.deviceModel">
- <summary>
- <para>The model of the device (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SystemInfo.deviceName">
- <summary>
- <para>The user defined name of the device (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SystemInfo.deviceType">
- <summary>
- <para>Returns the kind of device the application is running on (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SystemInfo.deviceUniqueIdentifier">
- <summary>
- <para>A unique device identifier. It is guaranteed to be unique for every device (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SystemInfo.graphicsDeviceID">
- <summary>
- <para>The identifier code of the graphics device (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SystemInfo.graphicsDeviceName">
- <summary>
- <para>The name of the graphics device (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SystemInfo.graphicsDeviceType">
- <summary>
- <para>The graphics API type used by the graphics device (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SystemInfo.graphicsDeviceVendor">
- <summary>
- <para>The vendor of the graphics device (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SystemInfo.graphicsDeviceVendorID">
- <summary>
- <para>The identifier code of the graphics device vendor (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SystemInfo.graphicsDeviceVersion">
- <summary>
- <para>The graphics API type and driver version used by the graphics device (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SystemInfo.graphicsMemorySize">
- <summary>
- <para>Amount of video memory present (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SystemInfo.graphicsMultiThreaded">
- <summary>
- <para>Is graphics device using multi-threaded rendering (Read Only)?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SystemInfo.graphicsShaderLevel">
- <summary>
- <para>Graphics device shader capability level (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SystemInfo.graphicsUVStartsAtTop">
- <summary>
- <para>Returns true if the texture UV coordinate convention for this platform has Y starting at the top of the image.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SystemInfo.maxCubemapSize">
- <summary>
- <para>Maximum Cubemap texture size (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SystemInfo.maxTextureSize">
- <summary>
- <para>Maximum texture size (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SystemInfo.npotSupport">
- <summary>
- <para>What NPOT (non-power of two size) texture support does the GPU provide? (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SystemInfo.operatingSystem">
- <summary>
- <para>Operating system name with version (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SystemInfo.operatingSystemFamily">
- <summary>
- <para>Returns the operating system family the game is running on (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SystemInfo.processorCount">
- <summary>
- <para>Number of processors present (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SystemInfo.processorFrequency">
- <summary>
- <para>Processor frequency in MHz (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SystemInfo.processorType">
- <summary>
- <para>Processor name (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SystemInfo.supportedRenderTargetCount">
- <summary>
- <para>How many simultaneous render targets (MRTs) are supported? (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SystemInfo.supports2DArrayTextures">
- <summary>
- <para>Are 2D Array textures supported? (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SystemInfo.supports32bitsIndexBuffer">
- <summary>
- <para>Are 32-bit index buffers supported? (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SystemInfo.supports3DRenderTextures">
- <summary>
- <para>Are 3D (volume) RenderTextures supported? (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SystemInfo.supports3DTextures">
- <summary>
- <para>Are 3D (volume) textures supported? (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SystemInfo.supportsAccelerometer">
- <summary>
- <para>Is an accelerometer available on the device?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SystemInfo.supportsAsyncCompute">
- <summary>
- <para>Returns true when the platform supports asynchronous compute queues and false if otherwise.
-
-Note that asynchronous compute queues are only supported on PS4.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SystemInfo.supportsAsyncGPUReadback">
- <summary>
- <para>Returns true if asynchronous readback of GPU data is available for this device and false otherwise.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SystemInfo.supportsAudio">
- <summary>
- <para>Is there an Audio device available for playback?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SystemInfo.supportsComputeShaders">
- <summary>
- <para>Are compute shaders supported? (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SystemInfo.supportsCubemapArrayTextures">
- <summary>
- <para>Are Cubemap Array textures supported? (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SystemInfo.supportsGPUFence">
- <summary>
- <para>Returns true when the platform supports GPUFences and false if otherwise.
-
-Note that GPUFences are only supported on PS4.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SystemInfo.supportsGyroscope">
- <summary>
- <para>Is a gyroscope available on the device?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SystemInfo.supportsHardwareQuadTopology">
- <summary>
- <para>Does the hardware support quad topology? (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SystemInfo.supportsImageEffects">
- <summary>
- <para>Are image effects supported? (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SystemInfo.supportsInstancing">
- <summary>
- <para>Is GPU draw call instancing supported? (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SystemInfo.supportsLocationService">
- <summary>
- <para>Is the device capable of reporting its location?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SystemInfo.supportsMipStreaming">
- <summary>
- <para>Is streaming of texture mip maps supported? (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SystemInfo.supportsMotionVectors">
- <summary>
- <para>Whether motion vectors are supported on this platform.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SystemInfo.supportsMultisampleAutoResolve">
- <summary>
- <para>Returns true if multisampled textures are resolved automatically</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SystemInfo.supportsMultisampledTextures">
- <summary>
- <para>Are multisampled textures supported? (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SystemInfo.supportsRawShadowDepthSampling">
- <summary>
- <para>Is sampling raw depth from shadowmaps supported? (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SystemInfo.supportsRenderTextures">
- <summary>
- <para>Are render textures supported? (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SystemInfo.supportsRenderToCubemap">
- <summary>
- <para>Are cubemap render textures supported? (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SystemInfo.supportsShadows">
- <summary>
- <para>Are built-in shadows supported? (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SystemInfo.supportsSparseTextures">
- <summary>
- <para>Are sparse textures supported? (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SystemInfo.supportsStencil">
- <summary>
- <para>Is the stencil buffer supported? (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SystemInfo.supportsTextureWrapMirrorOnce">
- <summary>
- <para>Returns true if the 'Mirror Once' texture wrap mode is supported. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SystemInfo.supportsVibration">
- <summary>
- <para>Is the device capable of providing the user haptic feedback by vibration?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SystemInfo.systemMemorySize">
- <summary>
- <para>Amount of system memory present (Read Only).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SystemInfo.unsupportedIdentifier">
- <summary>
- <para>Value returned by SystemInfo string properties which are not supported on the current platform.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SystemInfo.usesReversedZBuffer">
- <summary>
- <para>This property is true if the current platform uses a reversed depth buffer (where values range from 1 at the near plane and 0 at far plane), and false if the depth buffer is normal (0 is near, 1 is far). (Read Only)</para>
- </summary>
- </member>
- <member name="M:UnityEngine.SystemInfo.IsFormatSupported(UnityEngine.Experimental.Rendering.GraphicsFormat,UnityEngine.Experimental.Rendering.FormatUsage)">
- <summary>
- <para>Verifies that the specified graphics format is supported for the specified usage.</para>
- </summary>
- <param name="format">The GraphicsFormat format to look up.</param>
- <param name="format">The FormatUsage usage to look up.</param>
- <param name="usage"></param>
- <returns>
- <para>Returns true if the format is supported for the specific usage. Returns false otherwise.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.SystemInfo.SupportsBlendingOnRenderTextureFormat(UnityEngine.RenderTextureFormat)">
- <summary>
- <para>Is blending supported on render texture format?</para>
- </summary>
- <param name="format">The format to look up.</param>
- <returns>
- <para>True if blending is supported on the given format.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.SystemInfo.SupportsRenderTextureFormat(UnityEngine.RenderTextureFormat)">
- <summary>
- <para>Is render texture format supported?</para>
- </summary>
- <param name="format">The format to look up.</param>
- <returns>
- <para>True if the format is supported.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.SystemInfo.SupportsTextureFormat(UnityEngine.TextureFormat)">
- <summary>
- <para>Is texture format supported on this device?</para>
- </summary>
- <param name="format">The TextureFormat format to look up.</param>
- <returns>
- <para>True if the format is supported.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.SystemLanguage">
- <summary>
- <para>The language the user's operating system is running in. Returned by Application.systemLanguage.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SystemLanguage.Afrikaans">
- <summary>
- <para>Afrikaans.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SystemLanguage.Arabic">
- <summary>
- <para>Arabic.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SystemLanguage.Basque">
- <summary>
- <para>Basque.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SystemLanguage.Belarusian">
- <summary>
- <para>Belarusian.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SystemLanguage.Bulgarian">
- <summary>
- <para>Bulgarian.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SystemLanguage.Catalan">
- <summary>
- <para>Catalan.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SystemLanguage.Chinese">
- <summary>
- <para>Chinese.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SystemLanguage.ChineseSimplified">
- <summary>
- <para>ChineseSimplified.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SystemLanguage.ChineseTraditional">
- <summary>
- <para>ChineseTraditional.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SystemLanguage.Czech">
- <summary>
- <para>Czech.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SystemLanguage.Danish">
- <summary>
- <para>Danish.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SystemLanguage.Dutch">
- <summary>
- <para>Dutch.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SystemLanguage.English">
- <summary>
- <para>English.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SystemLanguage.Estonian">
- <summary>
- <para>Estonian.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SystemLanguage.Faroese">
- <summary>
- <para>Faroese.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SystemLanguage.Finnish">
- <summary>
- <para>Finnish.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SystemLanguage.French">
- <summary>
- <para>French.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SystemLanguage.German">
- <summary>
- <para>German.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SystemLanguage.Greek">
- <summary>
- <para>Greek.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SystemLanguage.Hebrew">
- <summary>
- <para>Hebrew.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SystemLanguage.Hungarian">
- <summary>
- <para>Hungarian.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SystemLanguage.Icelandic">
- <summary>
- <para>Icelandic.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SystemLanguage.Indonesian">
- <summary>
- <para>Indonesian.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SystemLanguage.Italian">
- <summary>
- <para>Italian.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SystemLanguage.Japanese">
- <summary>
- <para>Japanese.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SystemLanguage.Korean">
- <summary>
- <para>Korean.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SystemLanguage.Latvian">
- <summary>
- <para>Latvian.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SystemLanguage.Lithuanian">
- <summary>
- <para>Lithuanian.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SystemLanguage.Norwegian">
- <summary>
- <para>Norwegian.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SystemLanguage.Polish">
- <summary>
- <para>Polish.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SystemLanguage.Portuguese">
- <summary>
- <para>Portuguese.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SystemLanguage.Romanian">
- <summary>
- <para>Romanian.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SystemLanguage.Russian">
- <summary>
- <para>Russian.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SystemLanguage.SerboCroatian">
- <summary>
- <para>Serbo-Croatian.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SystemLanguage.Slovak">
- <summary>
- <para>Slovak.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SystemLanguage.Slovenian">
- <summary>
- <para>Slovenian.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SystemLanguage.Spanish">
- <summary>
- <para>Spanish.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SystemLanguage.Swedish">
- <summary>
- <para>Swedish.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SystemLanguage.Thai">
- <summary>
- <para>Thai.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SystemLanguage.Turkish">
- <summary>
- <para>Turkish.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SystemLanguage.Ukrainian">
- <summary>
- <para>Ukrainian.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SystemLanguage.Unknown">
- <summary>
- <para>Unknown.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SystemLanguage.Vietnamese">
- <summary>
- <para>Vietnamese.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.TextAreaAttribute">
- <summary>
- <para>Attribute to make a string be edited with a height-flexible and scrollable text area.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextAreaAttribute.maxLines">
- <summary>
- <para>The maximum amount of lines the text area can show before it starts using a scrollbar.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextAreaAttribute.minLines">
- <summary>
- <para>The minimum amount of lines the text area will use.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.TextAreaAttribute.#ctor">
- <summary>
- <para>Attribute to make a string be edited with a height-flexible and scrollable text area.</para>
- </summary>
- <param name="minLines">The minimum amount of lines the text area will use.</param>
- <param name="maxLines">The maximum amount of lines the text area can show before it starts using a scrollbar.</param>
- </member>
- <member name="M:UnityEngine.TextAreaAttribute.#ctor(System.Int32,System.Int32)">
- <summary>
- <para>Attribute to make a string be edited with a height-flexible and scrollable text area.</para>
- </summary>
- <param name="minLines">The minimum amount of lines the text area will use.</param>
- <param name="maxLines">The maximum amount of lines the text area can show before it starts using a scrollbar.</param>
- </member>
- <member name="T:UnityEngine.TextAsset">
- <summary>
- <para>Text file assets.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TextAsset.bytes">
- <summary>
- <para>The raw bytes of the text asset. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TextAsset.text">
- <summary>
- <para>The text contents of the .txt file as a string. (Read Only)</para>
- </summary>
- </member>
- <member name="M:UnityEngine.TextAsset.#ctor(System.String)">
- <summary>
- <para>Create a new TextAsset with the specified text contents.
-
-This constructor creates a TextAsset, which is not the same as a plain text file. When saved to disk using the AssetDatabase class, the TextAsset should be saved with the .asset extension.</para>
- </summary>
- <param name="text">The text contents for the TextAsset.</param>
- </member>
- <member name="M:UnityEngine.TextAsset.ToString">
- <summary>
- <para>Returns the contents of the TextAsset.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Texture">
- <summary>
- <para>Base class for texture handling. Contains functionality that is common to both Texture2D and RenderTexture classes.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Texture.anisoLevel">
- <summary>
- <para>Anisotropic filtering level of the texture.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Texture.currentTextureMemory">
- <summary>
- <para>The amount of memory currently being used by textures.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Texture.desiredTextureMemory">
- <summary>
- <para>This amount of texture memory would be used before the texture streaming budget is applied.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Texture.dimension">
- <summary>
- <para>Dimensionality (type) of the texture (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Texture.filterMode">
- <summary>
- <para>Filtering mode of the texture.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Texture.height">
- <summary>
- <para>Height of the texture in pixels. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Texture.mipMapBias">
- <summary>
- <para>Mip map bias of the texture.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Texture.nonStreamingTextureCount">
- <summary>
- <para>Number of non-streaming textures.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Texture.nonStreamingTextureMemory">
- <summary>
- <para>Total amount of memory being used by non-streaming textures.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Texture.streamingMipmapUploadCount">
- <summary>
- <para>How many times has a texture been uploaded due to texture mipmap streaming.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Texture.streamingRendererCount">
- <summary>
- <para>Number of renderers registered with the texture streaming system.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Texture.streamingTextureCount">
- <summary>
- <para>Number of streaming textures.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Texture.streamingTextureDiscardUnusedMips">
- <summary>
- <para>Force the streaming texture system to discard all unused mipmaps immediately, rather than caching them until the texture memory budget is exceeded.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Texture.streamingTextureForceLoadAll">
- <summary>
- <para>Force streaming textures to load all mipmap levels.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Texture.streamingTextureLoadingCount">
- <summary>
- <para>Number of streaming textures with mipmaps currently loading.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Texture.streamingTexturePendingLoadCount">
- <summary>
- <para>Number of streaming textures with outstanding mipmaps to be loaded.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Texture.targetTextureMemory">
- <summary>
- <para>The amount of memory used by textures after the mipmap streaming and budget are applied and loading is complete.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Texture.totalTextureMemory">
- <summary>
- <para>The total amount of memory that would be used by all textures at mipmap level 0.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Texture.updateCount">
- <summary>
- <para>This counter is incremented when the texture is updated.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Texture.width">
- <summary>
- <para>Width of the texture in pixels. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Texture.wrapMode">
- <summary>
- <para>Texture coordinate wrapping mode.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Texture.wrapModeU">
- <summary>
- <para>Texture U coordinate wrapping mode.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Texture.wrapModeV">
- <summary>
- <para>Texture V coordinate wrapping mode.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Texture.wrapModeW">
- <summary>
- <para>Texture W coordinate wrapping mode for Texture3D.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Texture.GetNativeTexturePtr">
- <summary>
- <para>Retrieve a native (underlying graphics API) pointer to the texture resource.</para>
- </summary>
- <returns>
- <para>Pointer to an underlying graphics API texture resource.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Texture.IncrementUpdateCount">
- <summary>
- <para>Increment the update counter.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Texture.SetGlobalAnisotropicFilteringLimits(System.Int32,System.Int32)">
- <summary>
- <para>Sets Anisotropic limits.</para>
- </summary>
- <param name="forcedMin"></param>
- <param name="globalMax"></param>
- </member>
- <member name="M:UnityEngine.Texture.SetStreamingTextureMaterialDebugProperties">
- <summary>
- <para>Uploads additional debug information to materials using textures set to stream mip maps.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Texture2D">
- <summary>
- <para>Class for texture handling.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Texture2D.blackTexture">
- <summary>
- <para>Get a small texture with all black pixels.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Texture2D.desiredMipmapLevel">
- <summary>
- <para>The mipmap level which would have been loaded by the streaming system before memory budgets are applied.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Texture2D.format">
- <summary>
- <para>The format of the pixel data in the texture (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Texture2D.loadedMipmapLevel">
- <summary>
- <para>Which mipmap level is currently loaded by the streaming system.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Texture2D.loadingMipmapLevel">
- <summary>
- <para>Which mipmap level is in the process of being loaded by the mipmap streaming system.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Texture2D.mipmapCount">
- <summary>
- <para>How many mipmap levels are in this texture (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Texture2D.requestedMipmapLevel">
- <summary>
- <para>The mipmap level to load.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Texture2D.streamingMipmaps">
- <summary>
- <para>Has mipmap streaming been enabled for this texture.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Texture2D.streamingMipmapsPriority">
- <summary>
- <para>Relative priority for this texture when reducing memory size in order to hit the memory budget.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Texture2D.whiteTexture">
- <summary>
- <para>Get a small texture with all white pixels.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Texture2D.Apply(System.Boolean,System.Boolean)">
- <summary>
- <para>Actually apply all previous SetPixel and SetPixels changes.</para>
- </summary>
- <param name="updateMipmaps">When set to true, mipmap levels are recalculated.</param>
- <param name="makeNoLongerReadable">When set to true, system memory copy of a texture is released.</param>
- </member>
- <member name="M:UnityEngine.Texture2D.ClearRequestedMipmapLevel">
- <summary>
- <para>Resets the requestedMipmapLevel field.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Texture2D.Compress(System.Boolean)">
- <summary>
- <para>Compress texture into DXT format.</para>
- </summary>
- <param name="highQuality"></param>
- </member>
- <member name="M:UnityEngine.Texture2D.CreateExternalTexture(System.Int32,System.Int32,UnityEngine.TextureFormat,System.Boolean,System.Boolean,System.IntPtr)">
- <summary>
- <para>Creates Unity Texture out of externally created native texture object.</para>
- </summary>
- <param name="nativeTex">Native 2D texture object.</param>
- <param name="width">Width of texture in pixels.</param>
- <param name="height">Height of texture in pixels.</param>
- <param name="format">Format of underlying texture object.</param>
- <param name="mipmap">Does the texture have mipmaps?</param>
- <param name="linear">Is texture using linear color space?</param>
- <param name="mipChain"></param>
- </member>
- <member name="M:UnityEngine.Texture2D.#ctor(System.Int32,System.Int32)">
- <summary>
- <para>Create a new empty texture.</para>
- </summary>
- <param name="width"></param>
- <param name="height"></param>
- </member>
- <member name="M:UnityEngine.Texture2D.#ctor(System.Int32,System.Int32,UnityEngine.TextureFormat,System.Boolean)">
- <summary>
- <para>Create a new empty texture.</para>
- </summary>
- <param name="width"></param>
- <param name="height"></param>
- <param name="textureFormat"></param>
- <param name="mipChain"></param>
- </member>
- <member name="M:UnityEngine.Texture2D.#ctor(System.Int32,System.Int32,UnityEngine.TextureFormat,System.Boolean,System.Boolean)">
- <summary>
- <para>Create a new empty texture.</para>
- </summary>
- <param name="width"></param>
- <param name="height"></param>
- <param name="textureFormat"></param>
- <param name="mipChain"></param>
- <param name="linear"></param>
- </member>
- <member name="T:UnityEngine.Texture2D.EXRFlags">
- <summary>
- <para>Flags used to control the encoding to an EXR file.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Texture2D.EXRFlags.CompressPIZ">
- <summary>
- <para>This texture will use Wavelet compression. This is best used for grainy images.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Texture2D.EXRFlags.CompressRLE">
- <summary>
- <para>The texture will use RLE (Run Length Encoding) EXR compression format (similar to Targa RLE compression).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Texture2D.EXRFlags.CompressZIP">
- <summary>
- <para>The texture will use the EXR ZIP compression format.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Texture2D.EXRFlags.None">
- <summary>
- <para>No flag. This will result in an uncompressed 16-bit float EXR file.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Texture2D.EXRFlags.OutputAsFloat">
- <summary>
- <para>The texture will be exported as a 32-bit float EXR file (default is 16-bit).</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Texture2D.GenerateAtlas">
- <summary>
- <para>Packs a set of rectangles into a square atlas, with optional padding between rectangles.</para>
- </summary>
- <param name="sizes">An array of rectangle dimensions.</param>
- <param name="padding">Amount of padding to insert between adjacent rectangles in the atlas.</param>
- <param name="atlasSize">The size of the atlas.</param>
- <returns>
- <para>If the function succeeds, this will contain the packed rectangles. Otherwise, the return value is null.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Texture2D.GetPixel(System.Int32,System.Int32)">
- <summary>
- <para>Returns pixel color at coordinates (x, y).</para>
- </summary>
- <param name="x"></param>
- <param name="y"></param>
- </member>
- <member name="M:UnityEngine.Texture2D.GetPixelBilinear(System.Single,System.Single)">
- <summary>
- <para>Returns filtered pixel color at normalized coordinates (u, v).</para>
- </summary>
- <param name="x"></param>
- <param name="y"></param>
- </member>
- <member name="M:UnityEngine.Texture2D.GetPixels(System.Int32)">
- <summary>
- <para>Get the pixel colors from the texture.</para>
- </summary>
- <param name="miplevel">The mipmap level to fetch the pixels from. Defaults to zero.</param>
- <returns>
- <para>The array of all pixels in the mipmap level of the texture.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Texture2D.GetPixels(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
- <summary>
- <para>Get a block of pixel colors.</para>
- </summary>
- <param name="x">The x position of the pixel array to fetch.</param>
- <param name="y">The y position of the pixel array to fetch.</param>
- <param name="blockWidth">The width length of the pixel array to fetch.</param>
- <param name="blockHeight">The height length of the pixel array to fetch.</param>
- <param name="miplevel">The mipmap level to fetch the pixels. Defaults to zero, and is
- optional.</param>
- <returns>
- <para>The array of pixels in the texture that have been selected.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Texture2D.GetPixels32(System.Int32)">
- <summary>
- <para>Get a block of pixel colors in Color32 format.</para>
- </summary>
- <param name="miplevel"></param>
- </member>
- <member name="M:UnityEngine.Texture2D.GetRawTextureData">
- <summary>
- <para>Get raw data from a texture for reading or writing.</para>
- </summary>
- <returns>
- <para>Raw texture data view.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Texture2D.GetRawTextureData">
- <summary>
- <para>Get raw data from a texture.</para>
- </summary>
- <returns>
- <para>Raw texture data as a byte array.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Texture2D.IsRequestedMipmapLevelLoaded">
- <summary>
- <para>Has the mipmap level requested by setting requestedMipmapLevel finished loading?</para>
- </summary>
- <returns>
- <para>True if the mipmap level requested by setting requestedMipmapLevel has finished loading.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Texture2D.LoadRawTextureData(System.Byte[])">
- <summary>
- <para>Fills texture pixels with raw preformatted data.</para>
- </summary>
- <param name="data">Raw data array to initialize texture pixels with.</param>
- <param name="size">Size of data in bytes.</param>
- </member>
- <member name="M:UnityEngine.Texture2D.LoadRawTextureData(Unity.Collections.NativeArray`1&lt;T&gt;)">
- <summary>
- <para>Fills texture pixels with raw preformatted data.</para>
- </summary>
- <param name="data">Raw data array to initialize texture pixels with.</param>
- <param name="size">Size of data in bytes.</param>
- </member>
- <member name="M:UnityEngine.Texture2D.LoadRawTextureData(System.IntPtr,System.Int32)">
- <summary>
- <para>Fills texture pixels with raw preformatted data.</para>
- </summary>
- <param name="data">Raw data array to initialize texture pixels with.</param>
- <param name="size">Size of data in bytes.</param>
- </member>
- <member name="M:UnityEngine.Texture2D.PackTextures(UnityEngine.Texture2D[],System.Int32,System.Int32,System.Boolean)">
- <summary>
- <para>Packs multiple Textures into a texture atlas.</para>
- </summary>
- <param name="textures">Array of textures to pack into the atlas.</param>
- <param name="padding">Padding in pixels between the packed textures.</param>
- <param name="maximumAtlasSize">Maximum size of the resulting texture.</param>
- <param name="makeNoLongerReadable">Should the texture be marked as no longer readable?</param>
- <returns>
- <para>An array of rectangles containing the UV coordinates in the atlas for each input texture, or null if packing fails.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Texture2D.ReadPixels(UnityEngine.Rect,System.Int32,System.Int32,System.Boolean)">
- <summary>
- <para>Read pixels from screen into the saved texture data.</para>
- </summary>
- <param name="source">Rectangular region of the view to read from. Pixels are read from current render target.</param>
- <param name="destX">Horizontal pixel position in the texture to place the pixels that are read.</param>
- <param name="destY">Vertical pixel position in the texture to place the pixels that are read.</param>
- <param name="recalculateMipMaps">Should the texture's mipmaps be recalculated after reading?</param>
- </member>
- <member name="M:UnityEngine.Texture2D.Resize(System.Int32,System.Int32,UnityEngine.TextureFormat,System.Boolean)">
- <summary>
- <para>Resizes the texture.</para>
- </summary>
- <param name="width"></param>
- <param name="height"></param>
- <param name="format"></param>
- <param name="hasMipMap"></param>
- </member>
- <member name="M:UnityEngine.Texture2D.Resize(System.Int32,System.Int32)">
- <summary>
- <para>Resizes the texture.</para>
- </summary>
- <param name="width"></param>
- <param name="height"></param>
- </member>
- <member name="M:UnityEngine.Texture2D.SetPixel(System.Int32,System.Int32,UnityEngine.Color)">
- <summary>
- <para>Sets pixel color at coordinates (x,y).</para>
- </summary>
- <param name="x"></param>
- <param name="y"></param>
- <param name="color"></param>
- </member>
- <member name="M:UnityEngine.Texture2D.SetPixels(UnityEngine.Color[],System.Int32)">
- <summary>
- <para>Set a block of pixel colors.</para>
- </summary>
- <param name="colors">The array of pixel colours to assign (a 2D image flattened to a 1D array).</param>
- <param name="miplevel">The mip level of the texture to write to.</param>
- </member>
- <member name="M:UnityEngine.Texture2D.SetPixels(System.Int32,System.Int32,System.Int32,System.Int32,UnityEngine.Color[],System.Int32)">
- <summary>
- <para>Set a block of pixel colors.</para>
- </summary>
- <param name="x"></param>
- <param name="y"></param>
- <param name="blockWidth"></param>
- <param name="blockHeight"></param>
- <param name="colors"></param>
- <param name="miplevel"></param>
- </member>
- <member name="M:UnityEngine.Texture2D.SetPixels32(UnityEngine.Color32[],System.Int32)">
- <summary>
- <para>Set a block of pixel colors.</para>
- </summary>
- <param name="colors"></param>
- <param name="miplevel"></param>
- </member>
- <member name="M:UnityEngine.Texture2D.SetPixels32(System.Int32,System.Int32,System.Int32,System.Int32,UnityEngine.Color32[],System.Int32)">
- <summary>
- <para>Set a block of pixel colors.</para>
- </summary>
- <param name="x"></param>
- <param name="y"></param>
- <param name="blockWidth"></param>
- <param name="blockHeight"></param>
- <param name="colors"></param>
- <param name="miplevel"></param>
- </member>
- <member name="M:UnityEngine.Texture2D.UpdateExternalTexture(System.IntPtr)">
- <summary>
- <para>Updates Unity texture to use different native texture object.</para>
- </summary>
- <param name="nativeTex">Native 2D texture object.</param>
- </member>
- <member name="T:UnityEngine.Texture2DArray">
- <summary>
- <para>Class for handling 2D texture arrays.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Texture2DArray.depth">
- <summary>
- <para>Number of elements in a texture array (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Texture2DArray.format">
- <summary>
- <para>Texture format (Read Only).</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Texture2DArray.Apply(System.Boolean,System.Boolean)">
- <summary>
- <para>Actually apply all previous SetPixels changes.</para>
- </summary>
- <param name="updateMipmaps">When set to true, mipmap levels are recalculated.</param>
- <param name="makeNoLongerReadable">When set to true, system memory copy of a texture is released.</param>
- </member>
- <member name="M:UnityEngine.Texture2DArray.#ctor(System.Int32,System.Int32,System.Int32,UnityEngine.TextureFormat,System.Boolean)">
- <summary>
- <para>Create a new texture array.</para>
- </summary>
- <param name="width">Width of texture array in pixels.</param>
- <param name="height">Height of texture array in pixels.</param>
- <param name="depth">Number of elements in the texture array.</param>
- <param name="format">Format of the texture.</param>
- <param name="mipmap">Should mipmaps be created?</param>
- <param name="linear">Does the texture contain non-color data (i.e. don't do any color space conversions when sampling)? Default is false.</param>
- <param name="textureFormat"></param>
- <param name="mipChain"></param>
- </member>
- <member name="M:UnityEngine.Texture2DArray.#ctor(System.Int32,System.Int32,System.Int32,UnityEngine.TextureFormat,System.Boolean,System.Boolean)">
- <summary>
- <para>Create a new texture array.</para>
- </summary>
- <param name="width">Width of texture array in pixels.</param>
- <param name="height">Height of texture array in pixels.</param>
- <param name="depth">Number of elements in the texture array.</param>
- <param name="format">Format of the texture.</param>
- <param name="mipmap">Should mipmaps be created?</param>
- <param name="linear">Does the texture contain non-color data (i.e. don't do any color space conversions when sampling)? Default is false.</param>
- <param name="textureFormat"></param>
- <param name="mipChain"></param>
- </member>
- <member name="M:UnityEngine.Texture2DArray.GetPixels(System.Int32,System.Int32)">
- <summary>
- <para>Returns pixel colors of a single array slice.</para>
- </summary>
- <param name="arrayElement">Array slice to read pixels from.</param>
- <param name="miplevel">Mipmap level to read pixels from.</param>
- <returns>
- <para>Array of pixel colors.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Texture2DArray.GetPixels32(System.Int32,System.Int32)">
- <summary>
- <para>Returns pixel colors of a single array slice.</para>
- </summary>
- <param name="arrayElement">Array slice to read pixels from.</param>
- <param name="miplevel">Mipmap level to read pixels from.</param>
- <returns>
- <para>Array of pixel colors in low precision (8 bits/channel) format.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Texture2DArray.SetPixels(UnityEngine.Color[],System.Int32,System.Int32)">
- <summary>
- <para>Set pixel colors for the whole mip level.</para>
- </summary>
- <param name="colors">An array of pixel colors.</param>
- <param name="arrayElement">The texture array element index.</param>
- <param name="miplevel">The mip level.</param>
- </member>
- <member name="M:UnityEngine.Texture2DArray.SetPixels32(UnityEngine.Color32[],System.Int32,System.Int32)">
- <summary>
- <para>Set pixel colors for the whole mip level.</para>
- </summary>
- <param name="colors">An array of pixel colors.</param>
- <param name="arrayElement">The texture array element index.</param>
- <param name="miplevel">The mip level.</param>
- </member>
- <member name="T:UnityEngine.Texture3D">
- <summary>
- <para>Class for handling 3D Textures, Use this to create.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Texture3D.depth">
- <summary>
- <para>The depth of the texture (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Texture3D.format">
- <summary>
- <para>The format of the pixel data in the texture (Read Only).</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Texture3D.Apply(System.Boolean,System.Boolean)">
- <summary>
- <para>Actually apply all previous SetPixels changes.</para>
- </summary>
- <param name="updateMipmaps">When set to true, mipmap levels are recalculated.</param>
- <param name="makeNoLongerReadable">When set to true, system memory copy of a texture is released.</param>
- </member>
- <member name="M:UnityEngine.Texture3D.#ctor(System.Int32,System.Int32,System.Int32,UnityEngine.TextureFormat,System.Boolean)">
- <summary>
- <para>Create a new empty 3D Texture.</para>
- </summary>
- <param name="width">Width of texture in pixels.</param>
- <param name="height">Height of texture in pixels.</param>
- <param name="depth">Depth of texture in pixels.</param>
- <param name="format">Texture data format.</param>
- <param name="mipmap">Should the texture have mipmaps?</param>
- <param name="textureFormat"></param>
- <param name="mipChain"></param>
- </member>
- <member name="M:UnityEngine.Texture3D.GetPixels(System.Int32)">
- <summary>
- <para>Returns an array of pixel colors representing one mip level of the 3D texture.</para>
- </summary>
- <param name="miplevel"></param>
- </member>
- <member name="M:UnityEngine.Texture3D.GetPixels32(System.Int32)">
- <summary>
- <para>Returns an array of pixel colors representing one mip level of the 3D texture.</para>
- </summary>
- <param name="miplevel"></param>
- </member>
- <member name="M:UnityEngine.Texture3D.SetPixels(UnityEngine.Color[],System.Int32)">
- <summary>
- <para>Sets pixel colors of a 3D texture.</para>
- </summary>
- <param name="colors">The colors to set the pixels to.</param>
- <param name="miplevel">The mipmap level to be affected by the new colors.</param>
- </member>
- <member name="M:UnityEngine.Texture3D.SetPixels32(UnityEngine.Color32[],System.Int32)">
- <summary>
- <para>Sets pixel colors of a 3D texture.</para>
- </summary>
- <param name="colors">The colors to set the pixels to.</param>
- <param name="miplevel">The mipmap level to be affected by the new colors.</param>
- </member>
- <member name="T:UnityEngine.TextureFormat">
- <summary>
- <para>Format used when creating textures from scripts.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextureFormat.Alpha8">
- <summary>
- <para>Alpha-only texture format.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextureFormat.ARGB32">
- <summary>
- <para>Color with alpha texture format, 8-bits per channel.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextureFormat.ARGB4444">
- <summary>
- <para>A 16 bits/pixel texture format. Texture stores color with an alpha channel.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextureFormat.ASTC_RGB_10x10">
- <summary>
- <para>ASTC (10x10 pixel block in 128 bits) compressed RGB texture format.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextureFormat.ASTC_RGB_12x12">
- <summary>
- <para>ASTC (12x12 pixel block in 128 bits) compressed RGB texture format.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextureFormat.ASTC_RGB_4x4">
- <summary>
- <para>ASTC (4x4 pixel block in 128 bits) compressed RGB texture format.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextureFormat.ASTC_RGB_5x5">
- <summary>
- <para>ASTC (5x5 pixel block in 128 bits) compressed RGB texture format.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextureFormat.ASTC_RGB_6x6">
- <summary>
- <para>ASTC (6x6 pixel block in 128 bits) compressed RGB texture format.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextureFormat.ASTC_RGB_8x8">
- <summary>
- <para>ASTC (8x8 pixel block in 128 bits) compressed RGB texture format.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextureFormat.ASTC_RGBA_10x10">
- <summary>
- <para>ASTC (10x10 pixel block in 128 bits) compressed RGBA texture format.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextureFormat.ASTC_RGBA_12x12">
- <summary>
- <para>ASTC (12x12 pixel block in 128 bits) compressed RGBA texture format.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextureFormat.ASTC_RGBA_4x4">
- <summary>
- <para>ASTC (4x4 pixel block in 128 bits) compressed RGBA texture format.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextureFormat.ASTC_RGBA_5x5">
- <summary>
- <para>ASTC (5x5 pixel block in 128 bits) compressed RGBA texture format.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextureFormat.ASTC_RGBA_6x6">
- <summary>
- <para>ASTC (6x6 pixel block in 128 bits) compressed RGBA texture format.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextureFormat.ASTC_RGBA_8x8">
- <summary>
- <para>ASTC (8x8 pixel block in 128 bits) compressed RGBA texture format.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextureFormat.BC4">
- <summary>
- <para>Compressed one channel (R) texture format.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextureFormat.BC5">
- <summary>
- <para>Compressed two-channel (RG) texture format.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextureFormat.BC6H">
- <summary>
- <para>HDR compressed color texture format.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextureFormat.BC7">
- <summary>
- <para>High quality compressed color texture format.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextureFormat.BGRA32">
- <summary>
- <para>Color with alpha texture format, 8-bits per channel.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextureFormat.DXT1">
- <summary>
- <para>Compressed color texture format.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextureFormat.DXT1Crunched">
- <summary>
- <para>Compressed color texture format with Crunch compression for smaller storage sizes.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextureFormat.DXT5">
- <summary>
- <para>Compressed color with alpha channel texture format.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextureFormat.DXT5Crunched">
- <summary>
- <para>Compressed color with alpha channel texture format with Crunch compression for smaller storage sizes.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextureFormat.EAC_R">
- <summary>
- <para>ETC2 EAC (GL ES 3.0) 4 bitspixel compressed unsigned single-channel texture format.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextureFormat.EAC_R_SIGNED">
- <summary>
- <para>ETC2 EAC (GL ES 3.0) 4 bitspixel compressed signed single-channel texture format.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextureFormat.EAC_RG">
- <summary>
- <para>ETC2 EAC (GL ES 3.0) 8 bitspixel compressed unsigned dual-channel (RG) texture format.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextureFormat.EAC_RG_SIGNED">
- <summary>
- <para>ETC2 EAC (GL ES 3.0) 8 bitspixel compressed signed dual-channel (RG) texture format.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextureFormat.ETC_RGB4">
- <summary>
- <para>ETC (GLES2.0) 4 bits/pixel compressed RGB texture format.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextureFormat.ETC_RGB4_3DS">
- <summary>
- <para>ETC 4 bits/pixel compressed RGB texture format.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextureFormat.ETC_RGB4Crunched">
- <summary>
- <para>Compressed color texture format with Crunch compression for smaller storage sizes.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextureFormat.ETC_RGBA8_3DS">
- <summary>
- <para>ETC 4 bitspixel RGB + 4 bitspixel Alpha compressed texture format.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextureFormat.ETC2_RGB">
- <summary>
- <para>ETC2 (GL ES 3.0) 4 bits/pixel compressed RGB texture format.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextureFormat.ETC2_RGBA1">
- <summary>
- <para>ETC2 (GL ES 3.0) 4 bits/pixel RGB+1-bit alpha texture format.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextureFormat.ETC2_RGBA8">
- <summary>
- <para>ETC2 (GL ES 3.0) 8 bits/pixel compressed RGBA texture format.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextureFormat.ETC2_RGBA8Crunched">
- <summary>
- <para>Compressed color with alpha channel texture format using Crunch compression for smaller storage sizes.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextureFormat.PVRTC_RGB2">
- <summary>
- <para>PowerVR (iOS) 2 bits/pixel compressed color texture format.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextureFormat.PVRTC_RGB4">
- <summary>
- <para>PowerVR (iOS) 4 bits/pixel compressed color texture format.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextureFormat.PVRTC_RGBA2">
- <summary>
- <para>PowerVR (iOS) 2 bits/pixel compressed with alpha channel texture format.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextureFormat.PVRTC_RGBA4">
- <summary>
- <para>PowerVR (iOS) 4 bits/pixel compressed with alpha channel texture format.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextureFormat.R16">
- <summary>
- <para>A 16 bit color texture format that only has a red channel.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextureFormat.R8">
- <summary>
- <para>Scalar (R) render texture format, 8 bit fixed point.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextureFormat.RFloat">
- <summary>
- <para>Scalar (R) texture format, 32 bit floating point.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextureFormat.RG16">
- <summary>
- <para>Two color (RG) texture format, 8-bits per channel.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextureFormat.RGB24">
- <summary>
- <para>Color texture format, 8-bits per channel.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextureFormat.RGB565">
- <summary>
- <para>A 16 bit color texture format.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextureFormat.RGB9e5Float">
- <summary>
- <para>RGB HDR format, with 9 bit mantissa per channel and a 5 bit shared exponent.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextureFormat.RGBA32">
- <summary>
- <para>Color with alpha texture format, 8-bits per channel.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextureFormat.RGBA4444">
- <summary>
- <para>Color and alpha texture format, 4 bit per channel.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextureFormat.RGBAFloat">
- <summary>
- <para>RGB color and alpha texture format, 32-bit floats per channel.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextureFormat.RGBAHalf">
- <summary>
- <para>RGB color and alpha texture format, 16 bit floating point per channel.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextureFormat.RGFloat">
- <summary>
- <para>Two color (RG) texture format, 32 bit floating point per channel.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextureFormat.RGHalf">
- <summary>
- <para>Two color (RG) texture format, 16 bit floating point per channel.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextureFormat.RHalf">
- <summary>
- <para>Scalar (R) texture format, 16 bit floating point.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextureFormat.YUY2">
- <summary>
- <para>A format that uses the YUV color space and is often used for video encoding or playback.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.TextureWrapMode">
- <summary>
- <para>Wrap mode for textures.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextureWrapMode.Clamp">
- <summary>
- <para>Clamps the texture to the last pixel at the edge.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextureWrapMode.Mirror">
- <summary>
- <para>Tiles the texture, creating a repeating pattern by mirroring it at every integer boundary.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextureWrapMode.MirrorOnce">
- <summary>
- <para>Mirrors the texture once, then clamps to edge pixels.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextureWrapMode.Repeat">
- <summary>
- <para>Tiles the texture, creating a repeating pattern.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ThreadPriority">
- <summary>
- <para>Priority of a thread.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ThreadPriority.BelowNormal">
- <summary>
- <para>Below normal thread priority.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ThreadPriority.High">
- <summary>
- <para>Highest thread priority.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ThreadPriority.Low">
- <summary>
- <para>Lowest thread priority.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ThreadPriority.Normal">
- <summary>
- <para>Normal thread priority.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Time">
- <summary>
- <para>The interface to get time information from Unity.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Time.captureFramerate">
- <summary>
- <para>Slows game playback time to allow screenshots to be saved between frames.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Time.deltaTime">
- <summary>
- <para>The time in seconds it took to complete the last frame (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Time.fixedDeltaTime">
- <summary>
- <para>The interval in seconds at which physics and other fixed frame rate updates (like MonoBehaviour's MonoBehaviour.FixedUpdate) are performed.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Time.fixedTime">
- <summary>
- <para>The time the latest MonoBehaviour.FixedUpdate has started (Read Only). This is the time in seconds since the start of the game.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Time.fixedUnscaledDeltaTime">
- <summary>
- <para>The timeScale-independent interval in seconds from the last fixed frame to the current one (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Time.fixedUnscaledTime">
- <summary>
- <para>The TimeScale-independant time the latest MonoBehaviour.FixedUpdate has started (Read Only). This is the time in seconds since the start of the game.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Time.frameCount">
- <summary>
- <para>The total number of frames that have passed (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Time.inFixedTimeStep">
- <summary>
- <para>Returns true if called inside a fixed time step callback (like MonoBehaviour's MonoBehaviour.FixedUpdate), otherwise returns false.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Time.maximumDeltaTime">
- <summary>
- <para>The maximum time a frame can take. Physics and other fixed frame rate updates (like MonoBehaviour's MonoBehaviour.FixedUpdate).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Time.maximumParticleDeltaTime">
- <summary>
- <para>The maximum time a frame can spend on particle updates. If the frame takes longer than this, then updates are split into multiple smaller updates.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Time.realtimeSinceStartup">
- <summary>
- <para>The real time in seconds since the game started (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Time.smoothDeltaTime">
- <summary>
- <para>A smoothed out Time.deltaTime (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Time.time">
- <summary>
- <para>The time at the beginning of this frame (Read Only). This is the time in seconds since the start of the game.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Time.timeScale">
- <summary>
- <para>The scale at which the time is passing. This can be used for slow motion effects.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Time.timeSinceLevelLoad">
- <summary>
- <para>The time this frame has started (Read Only). This is the time in seconds since the last level has been loaded.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Time.unscaledDeltaTime">
- <summary>
- <para>The timeScale-independent interval in seconds from the last frame to the current one (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Time.unscaledTime">
- <summary>
- <para>The timeScale-independant time for this frame (Read Only). This is the time in seconds since the start of the game.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.TooltipAttribute">
- <summary>
- <para>Specify a tooltip for a field in the Inspector window.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TooltipAttribute.tooltip">
- <summary>
- <para>The tooltip text.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.TooltipAttribute.#ctor(System.String)">
- <summary>
- <para>Specify a tooltip for a field.</para>
- </summary>
- <param name="tooltip">The tooltip text.</param>
- </member>
- <member name="T:UnityEngine.Touch">
- <summary>
- <para>Structure describing the status of a finger touching the screen.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Touch.altitudeAngle">
- <summary>
- <para>Value of 0 radians indicates that the stylus is parallel to the surface, pi/2 indicates that it is perpendicular.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Touch.azimuthAngle">
- <summary>
- <para>Value of 0 radians indicates that the stylus is pointed along the x-axis of the device.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Touch.deltaPosition">
- <summary>
- <para>The position delta since last change.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Touch.deltaTime">
- <summary>
- <para>Amount of time that has passed since the last recorded change in Touch values.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Touch.fingerId">
- <summary>
- <para>The unique index for the touch.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Touch.maximumPossiblePressure">
- <summary>
- <para>The maximum possible pressure value for a platform. If Input.touchPressureSupported returns false, the value of this property will always be 1.0f.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Touch.phase">
- <summary>
- <para>Describes the phase of the touch.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Touch.position">
- <summary>
- <para>The position of the touch in pixel coordinates.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Touch.pressure">
- <summary>
- <para>The current amount of pressure being applied to a touch. 1.0f is considered to be the pressure of an average touch. If Input.touchPressureSupported returns false, the value of this property will always be 1.0f.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Touch.radius">
- <summary>
- <para>An estimated value of the radius of a touch. Add radiusVariance to get the maximum touch size, subtract it to get the minimum touch size.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Touch.radiusVariance">
- <summary>
- <para>This value determines the accuracy of the touch radius. Add this value to the radius to get the maximum touch size, subtract it to get the minimum touch size.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Touch.rawPosition">
- <summary>
- <para>The raw position used for the touch.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Touch.tapCount">
- <summary>
- <para>Number of taps.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Touch.type">
- <summary>
- <para>A value that indicates whether a touch was of Direct, Indirect (or remote), or Stylus type.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.TouchPhase">
- <summary>
- <para>Describes phase of a finger touch.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TouchPhase.Began">
- <summary>
- <para>A finger touched the screen.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TouchPhase.Canceled">
- <summary>
- <para>The system cancelled tracking for the touch.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TouchPhase.Ended">
- <summary>
- <para>A finger was lifted from the screen. This is the final phase of a touch.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TouchPhase.Moved">
- <summary>
- <para>A finger moved on the screen.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TouchPhase.Stationary">
- <summary>
- <para>A finger is touching the screen but hasn't moved.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.TouchScreenKeyboard">
- <summary>
- <para>Interface into the native iPhone, Android, Windows Phone and Windows Store Apps on-screen keyboards - it is not available on other platforms.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TouchScreenKeyboard.active">
- <summary>
- <para>Is the keyboard visible or sliding into the position on the screen?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TouchScreenKeyboard.canGetSelection">
- <summary>
- <para>Specifies whether the TouchScreenKeyboard supports the selection property. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TouchScreenKeyboard.canSetSelection">
- <summary>
- <para>Specifies whether the TouchScreenKeyboard supports the selection property. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TouchScreenKeyboard.characterLimit">
- <summary>
- <para>How many characters the keyboard input field is limited to. 0 = infinite.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TouchScreenKeyboard.done">
- <summary>
- <para>Specifies if input process was finished. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TouchScreenKeyboard.hideInput">
- <summary>
- <para>Will text input field above the keyboard be hidden when the keyboard is on screen?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TouchScreenKeyboard.isSupported">
- <summary>
- <para>Is touch screen keyboard supported.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TouchScreenKeyboard.selection">
- <summary>
- <para>Gets or sets the character range of the selected text within the string currently being edited.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TouchScreenKeyboard.status">
- <summary>
- <para>Returns the status of the on-screen keyboard. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TouchScreenKeyboard.text">
- <summary>
- <para>Returns the text displayed by the input field of the keyboard.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TouchScreenKeyboard.wasCanceled">
- <summary>
- <para>Specifies if input process was canceled. (Read Only)</para>
- </summary>
- </member>
- <member name="M:UnityEngine.TouchScreenKeyboard.Open(System.String)">
- <summary>
- <para>Opens the native keyboard provided by OS on the screen.</para>
- </summary>
- <param name="text">Text to edit.</param>
- <param name="keyboardType">Type of keyboard (eg, any text, numbers only, etc).</param>
- <param name="autocorrection">Is autocorrection applied?</param>
- <param name="multiline">Can more than one line of text be entered?</param>
- <param name="secure">Is the text masked (for passwords, etc)?</param>
- <param name="alert">Is the keyboard opened in alert mode?</param>
- <param name="textPlaceholder">Text to be used if no other text is present.</param>
- <param name="characterLimit">How many characters the keyboard input field is limited to. 0 = infinite. (Android and iOS only)</param>
- </member>
- <member name="M:UnityEngine.TouchScreenKeyboard.Open(System.String,UnityEngine.TouchScreenKeyboardType)">
- <summary>
- <para>Opens the native keyboard provided by OS on the screen.</para>
- </summary>
- <param name="text">Text to edit.</param>
- <param name="keyboardType">Type of keyboard (eg, any text, numbers only, etc).</param>
- <param name="autocorrection">Is autocorrection applied?</param>
- <param name="multiline">Can more than one line of text be entered?</param>
- <param name="secure">Is the text masked (for passwords, etc)?</param>
- <param name="alert">Is the keyboard opened in alert mode?</param>
- <param name="textPlaceholder">Text to be used if no other text is present.</param>
- <param name="characterLimit">How many characters the keyboard input field is limited to. 0 = infinite. (Android and iOS only)</param>
- </member>
- <member name="M:UnityEngine.TouchScreenKeyboard.Open(System.String,UnityEngine.TouchScreenKeyboardType,System.Boolean)">
- <summary>
- <para>Opens the native keyboard provided by OS on the screen.</para>
- </summary>
- <param name="text">Text to edit.</param>
- <param name="keyboardType">Type of keyboard (eg, any text, numbers only, etc).</param>
- <param name="autocorrection">Is autocorrection applied?</param>
- <param name="multiline">Can more than one line of text be entered?</param>
- <param name="secure">Is the text masked (for passwords, etc)?</param>
- <param name="alert">Is the keyboard opened in alert mode?</param>
- <param name="textPlaceholder">Text to be used if no other text is present.</param>
- <param name="characterLimit">How many characters the keyboard input field is limited to. 0 = infinite. (Android and iOS only)</param>
- </member>
- <member name="M:UnityEngine.TouchScreenKeyboard.Open(System.String,UnityEngine.TouchScreenKeyboardType,System.Boolean,System.Boolean)">
- <summary>
- <para>Opens the native keyboard provided by OS on the screen.</para>
- </summary>
- <param name="text">Text to edit.</param>
- <param name="keyboardType">Type of keyboard (eg, any text, numbers only, etc).</param>
- <param name="autocorrection">Is autocorrection applied?</param>
- <param name="multiline">Can more than one line of text be entered?</param>
- <param name="secure">Is the text masked (for passwords, etc)?</param>
- <param name="alert">Is the keyboard opened in alert mode?</param>
- <param name="textPlaceholder">Text to be used if no other text is present.</param>
- <param name="characterLimit">How many characters the keyboard input field is limited to. 0 = infinite. (Android and iOS only)</param>
- </member>
- <member name="M:UnityEngine.TouchScreenKeyboard.Open(System.String,UnityEngine.TouchScreenKeyboardType,System.Boolean,System.Boolean,System.Boolean)">
- <summary>
- <para>Opens the native keyboard provided by OS on the screen.</para>
- </summary>
- <param name="text">Text to edit.</param>
- <param name="keyboardType">Type of keyboard (eg, any text, numbers only, etc).</param>
- <param name="autocorrection">Is autocorrection applied?</param>
- <param name="multiline">Can more than one line of text be entered?</param>
- <param name="secure">Is the text masked (for passwords, etc)?</param>
- <param name="alert">Is the keyboard opened in alert mode?</param>
- <param name="textPlaceholder">Text to be used if no other text is present.</param>
- <param name="characterLimit">How many characters the keyboard input field is limited to. 0 = infinite. (Android and iOS only)</param>
- </member>
- <member name="M:UnityEngine.TouchScreenKeyboard.Open(System.String,UnityEngine.TouchScreenKeyboardType,System.Boolean,System.Boolean,System.Boolean,System.Boolean)">
- <summary>
- <para>Opens the native keyboard provided by OS on the screen.</para>
- </summary>
- <param name="text">Text to edit.</param>
- <param name="keyboardType">Type of keyboard (eg, any text, numbers only, etc).</param>
- <param name="autocorrection">Is autocorrection applied?</param>
- <param name="multiline">Can more than one line of text be entered?</param>
- <param name="secure">Is the text masked (for passwords, etc)?</param>
- <param name="alert">Is the keyboard opened in alert mode?</param>
- <param name="textPlaceholder">Text to be used if no other text is present.</param>
- <param name="characterLimit">How many characters the keyboard input field is limited to. 0 = infinite. (Android and iOS only)</param>
- </member>
- <member name="M:UnityEngine.TouchScreenKeyboard.Open(System.String,UnityEngine.TouchScreenKeyboardType,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.String)">
- <summary>
- <para>Opens the native keyboard provided by OS on the screen.</para>
- </summary>
- <param name="text">Text to edit.</param>
- <param name="keyboardType">Type of keyboard (eg, any text, numbers only, etc).</param>
- <param name="autocorrection">Is autocorrection applied?</param>
- <param name="multiline">Can more than one line of text be entered?</param>
- <param name="secure">Is the text masked (for passwords, etc)?</param>
- <param name="alert">Is the keyboard opened in alert mode?</param>
- <param name="textPlaceholder">Text to be used if no other text is present.</param>
- <param name="characterLimit">How many characters the keyboard input field is limited to. 0 = infinite. (Android and iOS only)</param>
- </member>
- <member name="M:UnityEngine.TouchScreenKeyboard.Open(System.String,UnityEngine.TouchScreenKeyboardType,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.String,System.Int32)">
- <summary>
- <para>Opens the native keyboard provided by OS on the screen.</para>
- </summary>
- <param name="text">Text to edit.</param>
- <param name="keyboardType">Type of keyboard (eg, any text, numbers only, etc).</param>
- <param name="autocorrection">Is autocorrection applied?</param>
- <param name="multiline">Can more than one line of text be entered?</param>
- <param name="secure">Is the text masked (for passwords, etc)?</param>
- <param name="alert">Is the keyboard opened in alert mode?</param>
- <param name="textPlaceholder">Text to be used if no other text is present.</param>
- <param name="characterLimit">How many characters the keyboard input field is limited to. 0 = infinite. (Android and iOS only)</param>
- </member>
- <member name="T:UnityEngine.TouchScreenKeyboard.Status">
- <summary>
- <para>The status of the on-screen keyboard.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TouchScreenKeyboard.Status.Canceled">
- <summary>
- <para>The on-screen keyboard was canceled.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TouchScreenKeyboard.Status.Done">
- <summary>
- <para>The user has finished providing input.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TouchScreenKeyboard.Status.LostFocus">
- <summary>
- <para>The on-screen keyboard has lost focus.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TouchScreenKeyboard.Status.Visible">
- <summary>
- <para>The on-screen keyboard is visible.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.TouchScreenKeyboardType">
- <summary>
- <para>Enumeration of the different types of supported touchscreen keyboards.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TouchScreenKeyboardType.ASCIICapable">
- <summary>
- <para>Keyboard with standard ASCII keys.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TouchScreenKeyboardType.Default">
- <summary>
- <para>The default keyboard layout of the target platform.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TouchScreenKeyboardType.EmailAddress">
- <summary>
- <para>Keyboard with additional keys suitable for typing email addresses.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TouchScreenKeyboardType.NamePhonePad">
- <summary>
- <para>Keyboard with alphanumeric keys.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TouchScreenKeyboardType.NintendoNetworkAccount">
- <summary>
- <para>Keyboard for the Nintendo Network (Deprecated).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TouchScreenKeyboardType.NumberPad">
- <summary>
- <para>Keyboard with standard numeric keys.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TouchScreenKeyboardType.NumbersAndPunctuation">
- <summary>
- <para>Keyboard with numbers and punctuation mark keys.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TouchScreenKeyboardType.PhonePad">
- <summary>
- <para>Keyboard with a layout suitable for typing telephone numbers.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TouchScreenKeyboardType.Search">
- <summary>
- <para>Keyboard with the "." key beside the space key, suitable for typing search terms.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TouchScreenKeyboardType.Social">
- <summary>
- <para>Keyboard with symbol keys often used on social media, such as Twitter.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TouchScreenKeyboardType.URL">
- <summary>
- <para>Keyboard with keys for URL entry.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.TouchType">
- <summary>
- <para>Describes whether a touch is direct, indirect (or remote), or from a stylus.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TouchType.Direct">
- <summary>
- <para>A direct touch on a device.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TouchType.Indirect">
- <summary>
- <para>An Indirect, or remote, touch on a device.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TouchType.Stylus">
- <summary>
- <para>A touch from a stylus on a device.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.TrailRenderer">
- <summary>
- <para>The trail renderer is used to make trails behind objects in the scene as they move about.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TrailRenderer.alignment">
- <summary>
- <para>Select whether the trail will face the camera, or the orientation of the Transform Component.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TrailRenderer.autodestruct">
- <summary>
- <para>Does the GameObject of this Trail Renderer auto destruct?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TrailRenderer.colorGradient">
- <summary>
- <para>Set the color gradient describing the color of the trail at various points along its length.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TrailRenderer.emitting">
- <summary>
- <para>Creates trails when the GameObject moves.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TrailRenderer.endColor">
- <summary>
- <para>Set the color at the end of the trail.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TrailRenderer.endWidth">
- <summary>
- <para>The width of the trail at the end of the trail.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TrailRenderer.generateLightingData">
- <summary>
- <para>Configures a trail to generate Normals and Tangents. With this data, Scene lighting can affect the trail via Normal Maps and the Unity Standard Shader, or your own custom-built Shaders.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TrailRenderer.minVertexDistance">
- <summary>
- <para>Set the minimum distance the trail can travel before a new vertex is added to it.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TrailRenderer.numCapVertices">
- <summary>
- <para>Set this to a value greater than 0, to get rounded corners on each end of the trail.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TrailRenderer.numCornerVertices">
- <summary>
- <para>Set this to a value greater than 0, to get rounded corners between each segment of the trail.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TrailRenderer.numPositions">
- <summary>
- <para>Get the number of line segments in the trail.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TrailRenderer.positionCount">
- <summary>
- <para>Get the number of line segments in the trail.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TrailRenderer.startColor">
- <summary>
- <para>Set the color at the start of the trail.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TrailRenderer.startWidth">
- <summary>
- <para>The width of the trail at the spawning point.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TrailRenderer.textureMode">
- <summary>
- <para>Choose whether the U coordinate of the trail texture is tiled or stretched.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TrailRenderer.time">
- <summary>
- <para>How long does the trail take to fade out.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TrailRenderer.widthCurve">
- <summary>
- <para>Set the curve describing the width of the trail at various points along its length.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TrailRenderer.widthMultiplier">
- <summary>
- <para>Set an overall multiplier that is applied to the TrailRenderer.widthCurve to get the final width of the trail.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.TrailRenderer.AddPosition(UnityEngine.Vector3)">
- <summary>
- <para>Adds a position to the trail.</para>
- </summary>
- <param name="position">The position to add to the trail.</param>
- </member>
- <member name="M:UnityEngine.TrailRenderer.AddPositions(UnityEngine.Vector3[])">
- <summary>
- <para>Add an array of positions to the trail.</para>
- </summary>
- <param name="positions">The positions to add to the trail.</param>
- </member>
- <member name="M:UnityEngine.TrailRenderer.BakeMesh(UnityEngine.Mesh)">
- <summary>
- <para>Creates a snapshot of TrailRenderer and stores it in mesh.</para>
- </summary>
- <param name="mesh">A static mesh that will receive the snapshot of the trail.</param>
- <param name="camera">The camera used for determining which way view space trails will face.</param>
- <param name="useTransform">Include the rotation and scale of the Transform in the baked mesh.</param>
- </member>
- <member name="M:UnityEngine.TrailRenderer.BakeMesh(UnityEngine.Mesh,System.Boolean)">
- <summary>
- <para>Creates a snapshot of TrailRenderer and stores it in mesh.</para>
- </summary>
- <param name="mesh">A static mesh that will receive the snapshot of the trail.</param>
- <param name="camera">The camera used for determining which way view space trails will face.</param>
- <param name="useTransform">Include the rotation and scale of the Transform in the baked mesh.</param>
- </member>
- <member name="M:UnityEngine.TrailRenderer.BakeMesh(UnityEngine.Mesh,UnityEngine.Camera)">
- <summary>
- <para>Creates a snapshot of TrailRenderer and stores it in mesh.</para>
- </summary>
- <param name="mesh">A static mesh that will receive the snapshot of the trail.</param>
- <param name="camera">The camera used for determining which way view space trails will face.</param>
- <param name="useTransform">Include the rotation and scale of the Transform in the baked mesh.</param>
- </member>
- <member name="M:UnityEngine.TrailRenderer.BakeMesh(UnityEngine.Mesh,UnityEngine.Camera,System.Boolean)">
- <summary>
- <para>Creates a snapshot of TrailRenderer and stores it in mesh.</para>
- </summary>
- <param name="mesh">A static mesh that will receive the snapshot of the trail.</param>
- <param name="camera">The camera used for determining which way view space trails will face.</param>
- <param name="useTransform">Include the rotation and scale of the Transform in the baked mesh.</param>
- </member>
- <member name="M:UnityEngine.TrailRenderer.Clear">
- <summary>
- <para>Removes all points from the TrailRenderer.
-Useful for restarting a trail from a new position.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.TrailRenderer.GetPosition(System.Int32)">
- <summary>
- <para>Get the position of a vertex in the trail.</para>
- </summary>
- <param name="index">The index of the position to retrieve.</param>
- <returns>
- <para>The position at the specified index in the array.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.TrailRenderer.GetPositions(UnityEngine.Vector3[])">
- <summary>
- <para>Get the positions of all vertices in the trail.</para>
- </summary>
- <param name="positions">The array of positions to retrieve.</param>
- <returns>
- <para>How many positions were actually stored in the output array.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.TrailRenderer.SetPosition(System.Int32,UnityEngine.Vector3)">
- <summary>
- <para>Set the position of a vertex in the trail.</para>
- </summary>
- <param name="index">Which position to set.</param>
- <param name="position">The new position.</param>
- </member>
- <member name="M:UnityEngine.TrailRenderer.SetPositions(UnityEngine.Vector3[])">
- <summary>
- <para>Sets the positions of all vertices in the trail.</para>
- </summary>
- <param name="positions">The array of positions to set.</param>
- </member>
- <member name="T:UnityEngine.Transform">
- <summary>
- <para>Position, rotation and scale of an object.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Transform.childCount">
- <summary>
- <para>The number of children the Transform has.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Transform.eulerAngles">
- <summary>
- <para>The rotation as Euler angles in degrees.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Transform.forward">
- <summary>
- <para>The blue axis of the transform in world space.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Transform.hasChanged">
- <summary>
- <para>Has the transform changed since the last time the flag was set to 'false'?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Transform.hierarchyCapacity">
- <summary>
- <para>The transform capacity of the transform's hierarchy data structure.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Transform.hierarchyCount">
- <summary>
- <para>The number of transforms in the transform's hierarchy data structure.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Transform.localEulerAngles">
- <summary>
- <para>The rotation as Euler angles in degrees relative to the parent transform's rotation.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Transform.localPosition">
- <summary>
- <para>Position of the transform relative to the parent transform.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Transform.localRotation">
- <summary>
- <para>The rotation of the transform relative to the parent transform's rotation.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Transform.localScale">
- <summary>
- <para>The scale of the transform relative to the parent.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Transform.localToWorldMatrix">
- <summary>
- <para>Matrix that transforms a point from local space into world space (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Transform.lossyScale">
- <summary>
- <para>The global scale of the object (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Transform.parent">
- <summary>
- <para>The parent of the transform.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Transform.position">
- <summary>
- <para>The position of the transform in world space.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Transform.right">
- <summary>
- <para>The red axis of the transform in world space.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Transform.root">
- <summary>
- <para>Returns the topmost transform in the hierarchy.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Transform.rotation">
- <summary>
- <para>The rotation of the transform in world space stored as a Quaternion.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Transform.up">
- <summary>
- <para>The green axis of the transform in world space.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Transform.worldToLocalMatrix">
- <summary>
- <para>Matrix that transforms a point from world space into local space (Read Only).</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Transform.DetachChildren">
- <summary>
- <para>Unparents all children.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Transform.Find(System.String)">
- <summary>
- <para>Finds a child by n and returns it.</para>
- </summary>
- <param name="n">Name of child to be found.</param>
- <returns>
- <para>The returned child transform or null if no child is found.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Transform.GetChild(System.Int32)">
- <summary>
- <para>Returns a transform child by index.</para>
- </summary>
- <param name="index">Index of the child transform to return. Must be smaller than Transform.childCount.</param>
- <returns>
- <para>Transform child by index.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Transform.GetSiblingIndex">
- <summary>
- <para>Gets the sibling index.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Transform.InverseTransformDirection(UnityEngine.Vector3)">
- <summary>
- <para>Transforms a direction from world space to local space. The opposite of Transform.TransformDirection.</para>
- </summary>
- <param name="direction"></param>
- </member>
- <member name="M:UnityEngine.Transform.InverseTransformDirection(System.Single,System.Single,System.Single)">
- <summary>
- <para>Transforms the direction x, y, z from world space to local space. The opposite of Transform.TransformDirection.</para>
- </summary>
- <param name="x"></param>
- <param name="y"></param>
- <param name="z"></param>
- </member>
- <member name="M:UnityEngine.Transform.InverseTransformPoint(UnityEngine.Vector3)">
- <summary>
- <para>Transforms position from world space to local space.</para>
- </summary>
- <param name="position"></param>
- </member>
- <member name="M:UnityEngine.Transform.InverseTransformPoint(System.Single,System.Single,System.Single)">
- <summary>
- <para>Transforms the position x, y, z from world space to local space. The opposite of Transform.TransformPoint.</para>
- </summary>
- <param name="x"></param>
- <param name="y"></param>
- <param name="z"></param>
- </member>
- <member name="M:UnityEngine.Transform.InverseTransformVector(UnityEngine.Vector3)">
- <summary>
- <para>Transforms a vector from world space to local space. The opposite of Transform.TransformVector.</para>
- </summary>
- <param name="vector"></param>
- </member>
- <member name="M:UnityEngine.Transform.InverseTransformVector(System.Single,System.Single,System.Single)">
- <summary>
- <para>Transforms the vector x, y, z from world space to local space. The opposite of Transform.TransformVector.</para>
- </summary>
- <param name="x"></param>
- <param name="y"></param>
- <param name="z"></param>
- </member>
- <member name="M:UnityEngine.Transform.IsChildOf(UnityEngine.Transform)">
- <summary>
- <para>Is this transform a child of parent?</para>
- </summary>
- <param name="parent"></param>
- </member>
- <member name="M:UnityEngine.Transform.LookAt(UnityEngine.Transform)">
- <summary>
- <para>Rotates the transform so the forward vector points at target's current position.</para>
- </summary>
- <param name="target">Object to point towards.</param>
- <param name="worldUp">Vector specifying the upward direction.</param>
- </member>
- <member name="M:UnityEngine.Transform.LookAt(UnityEngine.Transform,UnityEngine.Vector3)">
- <summary>
- <para>Rotates the transform so the forward vector points at target's current position.</para>
- </summary>
- <param name="target">Object to point towards.</param>
- <param name="worldUp">Vector specifying the upward direction.</param>
- </member>
- <member name="M:UnityEngine.Transform.LookAt(UnityEngine.Vector3)">
- <summary>
- <para>Rotates the transform so the forward vector points at worldPosition.</para>
- </summary>
- <param name="worldPosition">Point to look at.</param>
- <param name="worldUp">Vector specifying the upward direction.</param>
- </member>
- <member name="M:UnityEngine.Transform.LookAt(UnityEngine.Vector3,UnityEngine.Vector3)">
- <summary>
- <para>Rotates the transform so the forward vector points at worldPosition.</para>
- </summary>
- <param name="worldPosition">Point to look at.</param>
- <param name="worldUp">Vector specifying the upward direction.</param>
- </member>
- <member name="M:UnityEngine.Transform.Rotate(UnityEngine.Vector3,UnityEngine.Space)">
- <summary>
- <para>Applies a rotation of eulerAngles.z degrees around the z axis, eulerAngles.x degrees around the x axis, and eulerAngles.y degrees around the y axis (in that order).</para>
- </summary>
- <param name="relativeTo">Rotation is local to object or World.</param>
- <param name="eulers">Rotation to apply.</param>
- </member>
- <member name="M:UnityEngine.Transform.Rotate(System.Single,System.Single,System.Single,UnityEngine.Space)">
- <summary>
- <para>Applies a rotation of zAngle degrees around the z axis, xAngle degrees around the x axis, and yAngle degrees around the y axis (in that order).</para>
- </summary>
- <param name="xAngle">Degrees to rotate around the X axis.</param>
- <param name="yAngle">Degrees to rotate around the Y axis.</param>
- <param name="zAngle">Degrees to rotate around the Z axis.</param>
- <param name="relativeTo">Rotation is local to object or World.</param>
- </member>
- <member name="M:UnityEngine.Transform.Rotate(UnityEngine.Vector3,System.Single,UnityEngine.Space)">
- <summary>
- <para>Rotates the object around axis by angle degrees.</para>
- </summary>
- <param name="axis">Axis to apply rotation to.</param>
- <param name="angle">Degrees to rotation to apply.</param>
- <param name="relativeTo">Rotation is local to object or World.</param>
- </member>
- <member name="M:UnityEngine.Transform.RotateAround(UnityEngine.Vector3,UnityEngine.Vector3,System.Single)">
- <summary>
- <para>Rotates the transform about axis passing through point in world coordinates by angle degrees.</para>
- </summary>
- <param name="point"></param>
- <param name="axis"></param>
- <param name="angle"></param>
- </member>
- <member name="M:UnityEngine.Transform.RotateAround(UnityEngine.Vector3,System.Single)">
- <summary>
- <para></para>
- </summary>
- <param name="axis"></param>
- <param name="angle"></param>
- </member>
- <member name="M:UnityEngine.Transform.SetAsFirstSibling">
- <summary>
- <para>Move the transform to the start of the local transform list.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Transform.SetAsLastSibling">
- <summary>
- <para>Move the transform to the end of the local transform list.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Transform.SetParent(UnityEngine.Transform)">
- <summary>
- <para>Set the parent of the transform.</para>
- </summary>
- <param name="parent">The parent Transform to use.</param>
- <param name="worldPositionStays">If true, the parent-relative position, scale and
- rotation are modified such that the object keeps the same world space position,
- rotation and scale as before.</param>
- <param name="p"></param>
- </member>
- <member name="M:UnityEngine.Transform.SetParent(UnityEngine.Transform,System.Boolean)">
- <summary>
- <para>Set the parent of the transform.</para>
- </summary>
- <param name="parent">The parent Transform to use.</param>
- <param name="worldPositionStays">If true, the parent-relative position, scale and
- rotation are modified such that the object keeps the same world space position,
- rotation and scale as before.</param>
- <param name="p"></param>
- </member>
- <member name="M:UnityEngine.Transform.SetPositionAndRotation(UnityEngine.Vector3,UnityEngine.Quaternion)">
- <summary>
- <para>Sets the world space position and rotation of the Transform component.</para>
- </summary>
- <param name="position"></param>
- <param name="rotation"></param>
- </member>
- <member name="M:UnityEngine.Transform.SetSiblingIndex(System.Int32)">
- <summary>
- <para>Sets the sibling index.</para>
- </summary>
- <param name="index">Index to set.</param>
- </member>
- <member name="M:UnityEngine.Transform.TransformDirection(UnityEngine.Vector3)">
- <summary>
- <para>Transforms direction from local space to world space.</para>
- </summary>
- <param name="direction"></param>
- </member>
- <member name="M:UnityEngine.Transform.TransformDirection(System.Single,System.Single,System.Single)">
- <summary>
- <para>Transforms direction x, y, z from local space to world space.</para>
- </summary>
- <param name="x"></param>
- <param name="y"></param>
- <param name="z"></param>
- </member>
- <member name="M:UnityEngine.Transform.TransformPoint(UnityEngine.Vector3)">
- <summary>
- <para>Transforms position from local space to world space.</para>
- </summary>
- <param name="position"></param>
- </member>
- <member name="M:UnityEngine.Transform.TransformPoint(System.Single,System.Single,System.Single)">
- <summary>
- <para>Transforms the position x, y, z from local space to world space.</para>
- </summary>
- <param name="x"></param>
- <param name="y"></param>
- <param name="z"></param>
- </member>
- <member name="M:UnityEngine.Transform.TransformVector(UnityEngine.Vector3)">
- <summary>
- <para>Transforms vector from local space to world space.</para>
- </summary>
- <param name="vector"></param>
- </member>
- <member name="M:UnityEngine.Transform.TransformVector(System.Single,System.Single,System.Single)">
- <summary>
- <para>Transforms vector x, y, z from local space to world space.</para>
- </summary>
- <param name="x"></param>
- <param name="y"></param>
- <param name="z"></param>
- </member>
- <member name="M:UnityEngine.Transform.Translate(UnityEngine.Vector3)">
- <summary>
- <para>Moves the transform in the direction and distance of translation.</para>
- </summary>
- <param name="translation"></param>
- <param name="relativeTo"></param>
- </member>
- <member name="M:UnityEngine.Transform.Translate(UnityEngine.Vector3,UnityEngine.Space)">
- <summary>
- <para>Moves the transform in the direction and distance of translation.</para>
- </summary>
- <param name="translation"></param>
- <param name="relativeTo"></param>
- </member>
- <member name="M:UnityEngine.Transform.Translate(System.Single,System.Single,System.Single)">
- <summary>
- <para>Moves the transform by x along the x axis, y along the y axis, and z along the z axis.</para>
- </summary>
- <param name="x"></param>
- <param name="y"></param>
- <param name="z"></param>
- <param name="relativeTo"></param>
- </member>
- <member name="M:UnityEngine.Transform.Translate(System.Single,System.Single,System.Single,UnityEngine.Space)">
- <summary>
- <para>Moves the transform by x along the x axis, y along the y axis, and z along the z axis.</para>
- </summary>
- <param name="x"></param>
- <param name="y"></param>
- <param name="z"></param>
- <param name="relativeTo"></param>
- </member>
- <member name="M:UnityEngine.Transform.Translate(UnityEngine.Vector3,UnityEngine.Transform)">
- <summary>
- <para>Moves the transform in the direction and distance of translation.</para>
- </summary>
- <param name="translation"></param>
- <param name="relativeTo"></param>
- </member>
- <member name="M:UnityEngine.Transform.Translate(System.Single,System.Single,System.Single,UnityEngine.Transform)">
- <summary>
- <para>Moves the transform by x along the x axis, y along the y axis, and z along the z axis.</para>
- </summary>
- <param name="x"></param>
- <param name="y"></param>
- <param name="z"></param>
- <param name="relativeTo"></param>
- </member>
- <member name="T:UnityEngine.TransparencySortMode">
- <summary>
- <para>Transparent object sorting mode of a Camera.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TransparencySortMode.CustomAxis">
- <summary>
- <para>Sort objects based on distance along a custom axis.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TransparencySortMode.Default">
- <summary>
- <para>Default transparency sorting mode.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TransparencySortMode.Orthographic">
- <summary>
- <para>Orthographic transparency sorting mode.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TransparencySortMode.Perspective">
- <summary>
- <para>Perspective transparency sorting mode.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.U2D.SpriteAtlas">
- <summary>
- <para>Sprite Atlas is an asset created within Unity. It is part of the built-in sprite packing solution.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.U2D.SpriteAtlas.isVariant">
- <summary>
- <para>Return true if this SpriteAtlas is a variant.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.U2D.SpriteAtlas.spriteCount">
- <summary>
- <para>Get the total number of Sprite packed into this atlas.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.U2D.SpriteAtlas.tag">
- <summary>
- <para>Get the tag of this SpriteAtlas.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.U2D.SpriteAtlas.GetSprite(System.String)">
- <summary>
- <para>Clone the first Sprite in this atlas that matches the name packed in this atlas and return it.</para>
- </summary>
- <param name="name">The name of the Sprite.</param>
- </member>
- <member name="M:UnityEngine.U2D.SpriteAtlas.GetSprites(UnityEngine.Sprite[])">
- <summary>
- <para>Clone all the Sprite in this atlas and fill them into the supplied array.</para>
- </summary>
- <param name="sprites">Array of Sprite that will be filled.</param>
- <returns>
- <para>The size of the returned array.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.U2D.SpriteAtlas.GetSprites(UnityEngine.Sprite[],System.String)">
- <summary>
- <para>Clone all the Sprite matching the name in this atlas and fill them into the supplied array.</para>
- </summary>
- <param name="sprites">Array of Sprite that will be filled.</param>
- <param name="name">The name of the Sprite.</param>
- </member>
- <member name="T:UnityEngine.U2D.SpriteAtlasManager">
- <summary>
- <para>Manages SpriteAtlas during runtime.</para>
- </summary>
- </member>
- <member name="?:UnityEngine.U2D.SpriteAtlasManager.atlasRequested(UnityEngine.U2D.SpriteAtlasManager/RequestAtlasCallback)">
- <summary>
- <para>Trigger when any Sprite was bound to SpriteAtlas but couldn't locate the atlas asset during runtime.</para>
- </summary>
- <param name="value"></param>
- </member>
- <member name="T:UnityEngine.U2D.SpriteAtlasManager.RequestAtlasCallback">
- <summary>
- <para>Delegate type for atlas request callback.</para>
- </summary>
- <param name="tag">Tag of SpriteAtlas that needs to be provided by user.</param>
- <param name="action">An Action that takes user loaded SpriteAtlas.</param>
- </member>
- <member name="T:Unity.Burst.BurstDiscardAttribute">
- <summary>
- <para>The BurstDiscard attribute lets you remove a method or property from being compiled to native code by the burst compiler.</para>
- </summary>
- </member>
- <member name="T:Unity.Burst.BurstDiscardAttribute">
- <summary>
- <para>The BurstDiscard attribute lets you remove a method or property from being compiled to native code by the burst compiler.</para>
- </summary>
- </member>
- <member name="T:Unity.Collections.Allocator">
- <summary>
- <para>Used to specify allocation type for NativeArray.</para>
- </summary>
- </member>
- <member name="F:Unity.Collections.Allocator.Invalid">
- <summary>
- <para>Invalid allocation.</para>
- </summary>
- </member>
- <member name="F:Unity.Collections.Allocator.None">
- <summary>
- <para>No allocation.</para>
- </summary>
- </member>
- <member name="F:Unity.Collections.Allocator.Persistent">
- <summary>
- <para>Persistent allocation.</para>
- </summary>
- </member>
- <member name="F:Unity.Collections.Allocator.Temp">
- <summary>
- <para>Temporary allocation.</para>
- </summary>
- </member>
- <member name="F:Unity.Collections.Allocator.TempJob">
- <summary>
- <para>Temporary job allocation.</para>
- </summary>
- </member>
- <member name="T:Unity.Collections.DeallocateOnJobCompletionAttribute">
- <summary>
- <para>DeallocateOnJobCompletionAttribute.</para>
- </summary>
- </member>
- <member name="T:Unity.Collections.LowLevel.Unsafe.NativeArrayUnsafeUtility">
- <summary>
- <para>NativeArray Unsafe Utility.</para>
- </summary>
- </member>
- <member name="M:Unity.Collections.LowLevel.Unsafe.NativeArrayUnsafeUtility.ConvertExistingDataToNativeArray">
- <summary>
- <para>ConvertExistingDataToNativeArray.</para>
- </summary>
- <param name="dataPointer">Memory pointer.</param>
- <param name="length">Length.</param>
- <param name="allocator">Allocator.</param>
- <returns>
- <para>Native Array.</para>
- </returns>
- </member>
- <member name="M:Unity.Collections.LowLevel.Unsafe.NativeArrayUnsafeUtility.GetUnsafeBufferPointerWithoutChecks(Unity.Collections.NativeArray`1&lt;T&gt;)">
- <summary>
- <para>Get NativeArray memory buffer pointer without performing checks.</para>
- </summary>
- <param name="nativeArray">NativeArray.</param>
- <returns>
- <para>NativeArray memory buffer pointer.</para>
- </returns>
- </member>
- <member name="M:Unity.Collections.LowLevel.Unsafe.NativeArrayUnsafeUtility.GetUnsafePtr(Unity.Collections.NativeArray`1&lt;T&gt;)">
- <summary>
- <para>Get NativeArray memory buffer. Checks whether the native array can be written to.</para>
- </summary>
- <param name="nativeArray">NativeArray.</param>
- <returns>
- <para>NativeArray memory buffer pointer.</para>
- </returns>
- </member>
- <member name="M:Unity.Collections.LowLevel.Unsafe.NativeArrayUnsafeUtility.GetUnsafeReadOnlyPtr(Unity.Collections.NativeArray`1&lt;T&gt;)">
- <summary>
- <para>Get NativeArray memory buffer pointer. Checks whether the native array can be read from.</para>
- </summary>
- <param name="nativeArray">NativeArray.</param>
- <returns>
- <para>NativeArray memory buffer pointer.</para>
- </returns>
- </member>
- <member name="T:Unity.Collections.LowLevel.Unsafe.NativeContainerAttribute">
- <summary>
- <para>Allows you to create your own custom native container.</para>
- </summary>
- </member>
- <member name="T:Unity.Collections.LowLevel.Unsafe.NativeContainerIsAtomicWriteOnlyAttribute">
- <summary>
- <para>NativeContainerIsAtomicWriteOnlyAttribute.</para>
- </summary>
- </member>
- <member name="T:Unity.Collections.LowLevel.Unsafe.NativeContainerIsReadOnlyAttribute">
- <summary>
- <para>NativeContainerIsReadOnlyAttribute.</para>
- </summary>
- </member>
- <member name="T:Unity.Collections.LowLevel.Unsafe.NativeContainerSupportsDeallocateOnJobCompletionAttribute">
- <summary>
- <para>NativeContainerSupportsDeallocateOnJobCompletionAttribute.</para>
- </summary>
- </member>
- <member name="T:Unity.Collections.LowLevel.Unsafe.NativeContainerSupportsDeferredConvertListToArray">
- <summary>
- <para>NativeContainerSupportsDeferredConvertListToArray.</para>
- </summary>
- </member>
- <member name="T:Unity.Collections.LowLevel.Unsafe.NativeContainerSupportsMinMaxWriteRestrictionAttribute">
- <summary>
- <para>NativeContainerSupportsMinMaxWriteRestrictionAttribute.</para>
- </summary>
- </member>
- <member name="T:Unity.Collections.LowLevel.Unsafe.NativeDisableContainerSafetyRestrictionAttribute">
- <summary>
- <para>By default native containers are tracked by the safety system to avoid race conditions. The safety system encapsulates the best practices and catches many race condition bugs from the start.</para>
- </summary>
- </member>
- <member name="T:Unity.Collections.LowLevel.Unsafe.NativeDisableUnsafePtrRestrictionAttribute">
- <summary>
- <para>By default unsafe Pointers are not allowed to be used in a job since it is not possible for the Job Debugger to gurantee race condition free behaviour. This attribute lets you explicitly disable the restriction on a job.</para>
- </summary>
- </member>
- <member name="T:Unity.Collections.LowLevel.Unsafe.NativeSetClassTypeToNullOnScheduleAttribute">
- <summary>
- <para>When this attribute is applied to a field in a job struct, the managed reference to the class will be set to null on the copy of the job struct that is passed to the job.</para>
- </summary>
- </member>
- <member name="T:Unity.Collections.LowLevel.Unsafe.NativeSetThreadIndexAttribute">
- <summary>
- <para>This attribute can inject a worker thread index into an int on the job struct. This is usually used in the implementation of atomic containers. The index is guaranteed to be unique to any other job that might be running in parallel.</para>
- </summary>
- </member>
- <member name="T:Unity.Collections.LowLevel.Unsafe.NativeSliceUnsafeUtility">
- <summary>
- <para>NativeSlice unsafe utility class.</para>
- </summary>
- </member>
- <member name="M:Unity.Collections.LowLevel.Unsafe.NativeSliceUnsafeUtility.ConvertExistingDataToNativeSlice">
- <summary>
- <para>ConvertExistingDataToNativeSlice.</para>
- </summary>
- <param name="ptr">Memory pointer.</param>
- <param name="length">Number of elements.</param>
- </member>
- <member name="M:Unity.Collections.LowLevel.Unsafe.NativeSliceUnsafeUtility.GetUnsafePtr(Unity.Collections.NativeSlice`1&lt;T&gt;)">
- <summary>
- <para>Get NativeSlice memory buffer pointer. Checks whether the native array can be written to.</para>
- </summary>
- <param name="nativeSlice">NativeSlice.</param>
- <returns>
- <para>Memory pointer.</para>
- </returns>
- </member>
- <member name="M:Unity.Collections.LowLevel.Unsafe.NativeSliceUnsafeUtility.GetUnsafeReadOnlyPtr(Unity.Collections.NativeSlice`1&lt;T&gt;)">
- <summary>
- <para>Get NativeSlice memory buffer pointer. Checks whether the native array can be read from.</para>
- </summary>
- <param name="nativeSlice">NativeSlice.</param>
- <returns>
- <para>Memory pointer.</para>
- </returns>
- </member>
- <member name="T:Unity.Collections.LowLevel.Unsafe.UnsafeUtility">
- <summary>
- <para>Unsafe utility class.</para>
- </summary>
- </member>
- <member name="M:Unity.Collections.LowLevel.Unsafe.UnsafeUtility.AddressOf(T&amp;)">
- <summary>
- <para>The memory address of the struct.</para>
- </summary>
- <param name="output">Struct.</param>
- <returns>
- <para>Memory pointer.</para>
- </returns>
- </member>
- <member name="M:Unity.Collections.LowLevel.Unsafe.UnsafeUtility.AlignOf">
- <summary>
- <para>Minimum alignment of a struct.</para>
- </summary>
- <returns>
- <para>Memory pointer.</para>
- </returns>
- </member>
- <member name="M:Unity.Collections.LowLevel.Unsafe.UnsafeUtility.CopyObjectAddressToPtr(System.Object,System.Void*)">
- <summary>
- <para>Assigns an Object reference to a struct or pinned class. See Also: UnsafeUtility.PinGCObjectAndGetAddress.</para>
- </summary>
- <param name="target"></param>
- <param name="dstPtr"></param>
- </member>
- <member name="M:Unity.Collections.LowLevel.Unsafe.UnsafeUtility.CopyPtrToStructure(System.Void*,T&amp;)">
- <summary>
- <para>Copies sizeof(T) bytes from ptr to output.</para>
- </summary>
- <param name="ptr">Memory pointer.</param>
- <param name="output">Struct.</param>
- </member>
- <member name="M:Unity.Collections.LowLevel.Unsafe.UnsafeUtility.CopyStructureToPtr(T&amp;,System.Void*)">
- <summary>
- <para>Copies sizeof(T) bytes from input to ptr.</para>
- </summary>
- <param name="ptr">Memory pointer.</param>
- <param name="input">Struct.</param>
- </member>
- <member name="M:Unity.Collections.LowLevel.Unsafe.UnsafeUtility.Free(System.Void*,Unity.Collections.Allocator)">
- <summary>
- <para>Free memory.</para>
- </summary>
- <param name="memory">Memory pointer.</param>
- <param name="allocator">Allocator.</param>
- </member>
- <member name="M:Unity.Collections.LowLevel.Unsafe.UnsafeUtility.GetFieldOffset(System.Reflection.FieldInfo)">
- <summary>
- <para>Returns the offset of the field relative struct or class it is contained in.</para>
- </summary>
- <param name="field"></param>
- </member>
- <member name="M:Unity.Collections.LowLevel.Unsafe.UnsafeUtility.IsBlittable">
- <summary>
- <para>Returns whether the struct is blittable.</para>
- </summary>
- <param name="type">The System.Type of a struct.</param>
- <returns>
- <para>True if struct is blittable, otherwise false.</para>
- </returns>
- </member>
- <member name="M:Unity.Collections.LowLevel.Unsafe.UnsafeUtility.IsBlittable(System.Type)">
- <summary>
- <para>Returns whether the struct is blittable.</para>
- </summary>
- <param name="type">The System.Type of a struct.</param>
- <returns>
- <para>True if struct is blittable, otherwise false.</para>
- </returns>
- </member>
- <member name="M:Unity.Collections.LowLevel.Unsafe.UnsafeUtility.IsValidAllocator(Unity.Collections.Allocator)">
- <summary>
- <para>Returns true if the allocator label is valid and can be used to allocate or deallocate memory.</para>
- </summary>
- <param name="allocator"></param>
- </member>
- <member name="M:Unity.Collections.LowLevel.Unsafe.UnsafeUtility.Malloc">
- <summary>
- <para>Allocate memory.</para>
- </summary>
- <param name="size">Size.</param>
- <param name="alignment">Alignment.</param>
- <param name="allocator">Allocator.</param>
- <returns>
- <para>Memory pointer.</para>
- </returns>
- </member>
- <member name="M:Unity.Collections.LowLevel.Unsafe.UnsafeUtility.MemClear">
- <summary>
- <para>Clear memory.</para>
- </summary>
- <param name="destination">Memory pointer.</param>
- <param name="size">Size.</param>
- </member>
- <member name="M:Unity.Collections.LowLevel.Unsafe.UnsafeUtility.MemCmp">
- <summary>
- <para>Checks to see whether two memory regions are identical or not by comparing a specified memory region in the first given memory buffer with the same region in the second given memory buffer.</para>
- </summary>
- <param name="ptr1">Pointer to the first memory buffer.</param>
- <param name="ptr2">Pointer to the second memory buffer to compare the first one to.</param>
- <param name="size">Number of bytes to compare.</param>
- <returns>
- <para>0 if the contents are identical, non-zero otherwise.</para>
- </returns>
- </member>
- <member name="M:Unity.Collections.LowLevel.Unsafe.UnsafeUtility.MemCpy">
- <summary>
- <para>Copy memory.</para>
- </summary>
- <param name="destination">Destination memory pointer.</param>
- <param name="source">Source memory pointer.</param>
- <param name="size">Size.</param>
- </member>
- <member name="M:Unity.Collections.LowLevel.Unsafe.UnsafeUtility.MemCpyReplicate">
- <summary>
- <para>Copy memory and replicate.</para>
- </summary>
- <param name="destination">Destination memory pointer.</param>
- <param name="source">Source memory pointer.</param>
- <param name="size">Size.</param>
- <param name="count">Count.</param>
- </member>
- <member name="M:Unity.Collections.LowLevel.Unsafe.UnsafeUtility.MemCpyStride(System.Void*,System.Int32,System.Void*,System.Int32,System.Int32,System.Int32)">
- <summary>
- <para>Similar to UnsafeUtility.MemCpy but can skip bytes via desinationStride and sourceStride.</para>
- </summary>
- <param name="destination"></param>
- <param name="destinationStride"></param>
- <param name="source"></param>
- <param name="sourceStride"></param>
- <param name="elementSize"></param>
- <param name="count"></param>
- </member>
- <member name="M:Unity.Collections.LowLevel.Unsafe.UnsafeUtility.MemMove">
- <summary>
- <para>Move memory.</para>
- </summary>
- <param name="destination">Destination memory pointer.</param>
- <param name="source">Source memory pointer.</param>
- <param name="size">Size.</param>
- </member>
- <member name="M:Unity.Collections.LowLevel.Unsafe.UnsafeUtility.PinGCObjectAndGetAddress(System.Object,System.UInt64&amp;)">
- <summary>
- <para>Keeps a strong GC reference to the object and pins it. The object is guranteed to not move its memory location in a moving GC. Returns the address of the memory location of the object.
-
-See Also: UnsafeUtility.ReleaseGCObject.</para>
- </summary>
- <param name="target"></param>
- <param name="gcHandle"></param>
- </member>
- <member name="M:Unity.Collections.LowLevel.Unsafe.UnsafeUtility.ReadArrayElement(System.Void*,System.Int32)">
- <summary>
- <para>Read array element.</para>
- </summary>
- <param name="source">Memory pointer.</param>
- <param name="index">Array index.</param>
- <returns>
- <para>Array Element.</para>
- </returns>
- </member>
- <member name="M:Unity.Collections.LowLevel.Unsafe.UnsafeUtility.ReadArrayElementWithStride(System.Void*,System.Int32,System.Int32)">
- <summary>
- <para>Read array element with stride.</para>
- </summary>
- <param name="source">Memory pointer.</param>
- <param name="index">Array index.</param>
- <param name="stride">Stride.</param>
- <returns>
- <para>Array element.</para>
- </returns>
- </member>
- <member name="M:Unity.Collections.LowLevel.Unsafe.UnsafeUtility.ReleaseGCObject(System.UInt64)">
- <summary>
- <para>Releases a GC Object Handle, previously aquired by UnsafeUtility.PinGCObjectAndGetAddress.</para>
- </summary>
- <param name="gcHandle"></param>
- </member>
- <member name="M:Unity.Collections.LowLevel.Unsafe.UnsafeUtility.SizeOf">
- <summary>
- <para>Size of struct.</para>
- </summary>
- <returns>
- <para>Size of struct.</para>
- </returns>
- </member>
- <member name="M:Unity.Collections.LowLevel.Unsafe.UnsafeUtility.WriteArrayElement(System.Void*,System.Int32,T)">
- <summary>
- <para>Write array element.</para>
- </summary>
- <param name="destination">Memory pointer.</param>
- <param name="index">Array index.</param>
- <param name="value">Value to write.</param>
- </member>
- <member name="M:Unity.Collections.LowLevel.Unsafe.UnsafeUtility.WriteArrayElementWithStride(System.Void*,System.Int32,System.Int32,T)">
- <summary>
- <para>Write array element with stride.</para>
- </summary>
- <param name="destination">Memory pointer.</param>
- <param name="index">Array index.</param>
- <param name="stride">Stride.</param>
- <param name="value">Value to write.</param>
- </member>
- <member name="T:Unity.Collections.LowLevel.Unsafe.WriteAccessRequiredAttribute">
- <summary>
- <para>Used in conjunction with the ReadOnlyAttribute, WriteAccessRequiredAttribute lets you specify which struct method and property require write access to be invoked.</para>
- </summary>
- </member>
- <member name="T:Unity.Collections.NativeArray`1">
- <summary>
- <para>A NativeArray exposes a buffer of native memory to managed code, making it possible to share data between managed and native.</para>
- </summary>
- </member>
- <member name="M:Unity.Collections.NativeArray_1.CopyFrom(T[])">
- <summary>
- <para>Copy all the elements from another NativeArray or managed array of the same length.</para>
- </summary>
- <param name="array">Source array.</param>
- </member>
- <member name="M:Unity.Collections.NativeArray_1.CopyFrom(Unity.Collections.NativeArray`1&lt;T&gt;)">
- <summary>
- <para>Copy all the elements from another NativeArray or managed array of the same length.</para>
- </summary>
- <param name="array">Source array.</param>
- </member>
- <member name="M:Unity.Collections.NativeArray_1.CopyTo(T[])">
- <summary>
- <para>Copy all elements to another NativeArray or managed array of the same length.</para>
- </summary>
- <param name="array">Destination array.</param>
- </member>
- <member name="M:Unity.Collections.NativeArray_1.CopyTo(Unity.Collections.NativeArray`1&lt;T&gt;)">
- <summary>
- <para>Copy all elements to another NativeArray or managed array of the same length.</para>
- </summary>
- <param name="array">Destination array.</param>
- </member>
- <member name="M:Unity.Collections.NativeArray_1.#ctor">
- <summary>
- <para>Create NativeArray.</para>
- </summary>
- <param name="length">Array length.</param>
- <param name="allocator">Allocator.</param>
- <param name="clearMemory">Should clear memory?</param>
- <param name="array">Source array to copy elements from.</param>
- </member>
- <member name="M:Unity.Collections.NativeArray_1.#ctor(T[],Unity.Collections.Allocator)">
- <summary>
- <para>Create NativeArray.</para>
- </summary>
- <param name="length">Array length.</param>
- <param name="allocator">Allocator.</param>
- <param name="clearMemory">Should clear memory?</param>
- <param name="array">Source array to copy elements from.</param>
- </member>
- <member name="M:Unity.Collections.NativeArray_1.#ctor(Unity.Collections.NativeArray`1&lt;T&gt;,Unity.Collections.Allocator)">
- <summary>
- <para>Create NativeArray.</para>
- </summary>
- <param name="length">Array length.</param>
- <param name="allocator">Allocator.</param>
- <param name="clearMemory">Should clear memory?</param>
- <param name="array">Source array to copy elements from.</param>
- </member>
- <member name="M:Unity.Collections.NativeArray_1.Dispose">
- <summary>
- <para>Dispose array.</para>
- </summary>
- </member>
- <member name="M:Unity.Collections.NativeArray_1.GetEnumerator">
- <summary>
- <para>Get enumerator.</para>
- </summary>
- <returns>
- <para>Enumerator.</para>
- </returns>
- </member>
- <member name="P:Unity.Collections.NativeArray_1.IsCreated">
- <summary>
- <para>Indicates that the NativeArray has an allocated memory buffer.</para>
- </summary>
- </member>
- <member name="P:Unity.Collections.NativeArray_1.Length">
- <summary>
- <para>Number of elements in the NativeArray.</para>
- </summary>
- </member>
- <member name="P:Unity.Collections.NativeArray_1.this">
- <summary>
- <para>Access NativeArray elements by index. Notice that structs are returned by value and not by reference.</para>
- </summary>
- </member>
- <member name="M:Unity.Collections.NativeArray_1.ToArray">
- <summary>
- <para>Convert NativeArray to array.</para>
- </summary>
- <returns>
- <para>Array.</para>
- </returns>
- </member>
- <member name="T:Unity.Collections.NativeArrayOptions">
- <summary>
- <para>NativeArrayOptions lets you control if memory should be cleared on allocation or left uninitialized.</para>
- </summary>
- </member>
- <member name="F:Unity.Collections.NativeArrayOptions.ClearMemory">
- <summary>
- <para>Clear NativeArray memory on allocation.</para>
- </summary>
- </member>
- <member name="F:Unity.Collections.NativeArrayOptions.UninitializedMemory">
- <summary>
- <para>Uninitialized memory can improve performance, but results in the contents of the array elements being undefined.
-In performance sensitive code it can make sense to use NativeArrayOptions.Uninitialized, if you are writing to the entire array right after creating it without reading any of the elements first.
-</para>
- </summary>
- </member>
- <member name="T:Unity.Collections.NativeDisableParallelForRestrictionAttribute">
- <summary>
- <para>NativeDisableParallelForRestrictionAttribute.</para>
- </summary>
- </member>
- <member name="T:Unity.Collections.NativeFixedLengthAttribute">
- <summary>
- <para>The container has from start a size that will never change.</para>
- </summary>
- </member>
- <member name="M:Unity.Collections.NativeFixedLengthAttribute.#ctor(System.Int32)">
- <summary>
- <para>The specified number of elements will never change.</para>
- </summary>
- <param name="fixedLength">The fixed number of elements in the container.</param>
- </member>
- <member name="F:Unity.Collections.NativeFixedLengthAttribute.FixedLength">
- <summary>
- <para>The fixed number of elements in the container.</para>
- </summary>
- </member>
- <member name="T:Unity.Collections.NativeLeakDetection">
- <summary>
- <para>Static class for native leak detection settings.</para>
- </summary>
- </member>
- <member name="P:Unity.Collections.NativeLeakDetection.Mode">
- <summary>
- <para>Set whether native memory leak detection should be enabled or disabled.</para>
- </summary>
- </member>
- <member name="T:Unity.Collections.NativeLeakDetectionMode">
- <summary>
- <para>Native leak memory leak detection mode enum.</para>
- </summary>
- </member>
- <member name="F:Unity.Collections.NativeLeakDetectionMode.Disabled">
- <summary>
- <para>Indicates that native memory leak detection is disabled.</para>
- </summary>
- </member>
- <member name="F:Unity.Collections.NativeLeakDetectionMode.Enabled">
- <summary>
- <para>Indicates that native memory leak detection is enabled.</para>
- </summary>
- </member>
- <member name="T:Unity.Collections.NativeSlice`1">
- <summary>
- <para>Native Slice.</para>
- </summary>
- </member>
- <member name="M:Unity.Collections.NativeSlice_1.CopyFrom(Unity.Collections.NativeSlice`1&lt;T&gt;)">
- <summary>
- <para>Copy all the elements from a NativeSlice or managed array of the same length.</para>
- </summary>
- <param name="slice">NativeSlice.</param>
- <param name="array">Array.</param>
- </member>
- <member name="M:Unity.Collections.NativeSlice_1.CopyFrom(T[])">
- <summary>
- <para>Copy all the elements from a NativeSlice or managed array of the same length.</para>
- </summary>
- <param name="slice">NativeSlice.</param>
- <param name="array">Array.</param>
- </member>
- <member name="M:Unity.Collections.NativeSlice_1.CopyTo(Unity.Collections.NativeArray`1&lt;T&gt;)">
- <summary>
- <para>Copy all the elements of the slice to a NativeArray or managed array of the same length.</para>
- </summary>
- <param name="array">Array.</param>
- </member>
- <member name="M:Unity.Collections.NativeSlice_1.CopyTo(T[])">
- <summary>
- <para>Copy all the elements of the slice to a NativeArray or managed array of the same length.</para>
- </summary>
- <param name="array">Array.</param>
- </member>
- <member name="M:Unity.Collections.NativeSlice_1.#ctor(Unity.Collections.NativeArray`1&lt;T&gt;)">
- <summary>
- <para>Constructor.</para>
- </summary>
- <param name="array">NativeArray.</param>
- <param name="start">Start index.</param>
- <param name="ptr">Memory pointer.</param>
- <param name="length">Length.</param>
- </member>
- <member name="M:Unity.Collections.NativeSlice_1.#ctor(Unity.Collections.NativeArray`1&lt;T&gt;,System.Int32)">
- <summary>
- <para>Constructor.</para>
- </summary>
- <param name="array">NativeArray.</param>
- <param name="start">Start index.</param>
- <param name="ptr">Memory pointer.</param>
- <param name="length">Length.</param>
- </member>
- <member name="M:Unity.Collections.NativeSlice_1.#ctor">
- <summary>
- <para>Constructor.</para>
- </summary>
- <param name="array">NativeArray.</param>
- <param name="start">Start index.</param>
- <param name="ptr">Memory pointer.</param>
- <param name="length">Length.</param>
- </member>
- <member name="M:Unity.Collections.NativeSlice_1.#ctor(Unity.Collections.NativeArray`1&lt;T&gt;,System.Int32,System.Int32)">
- <summary>
- <para>Constructor.</para>
- </summary>
- <param name="array">NativeArray.</param>
- <param name="start">Start index.</param>
- <param name="ptr">Memory pointer.</param>
- <param name="length">Length.</param>
- </member>
- <member name="M:Unity.Collections.NativeSlice_1.GetEnumerator">
- <summary>
- <para>GetEnumerator.</para>
- </summary>
- <returns>
- <para>Enumerator.</para>
- </returns>
- </member>
- <member name="P:Unity.Collections.NativeSlice_1.Length">
- <summary>
- <para>Number of elements in the slice.</para>
- </summary>
- </member>
- <member name="M:Unity.Collections.NativeSlice_1.SliceConvert">
- <summary>
- <para>SliceConvert.</para>
- </summary>
- <returns>
- <para>NativeSlice.</para>
- </returns>
- </member>
- <member name="M:Unity.Collections.NativeSlice_1.SliceWithStride(System.Int32)">
- <summary>
- <para>SliceWithStride.</para>
- </summary>
- <param name="offset">Stride offset.</param>
- <param name="offsetFieldName">Field name whos offset should be used as stride.</param>
- <returns>
- <para>NativeSlice.</para>
- </returns>
- </member>
- <member name="M:Unity.Collections.NativeSlice_1.SliceWithStride">
- <summary>
- <para>SliceWithStride.</para>
- </summary>
- <param name="offset">Stride offset.</param>
- <param name="offsetFieldName">Field name whos offset should be used as stride.</param>
- <returns>
- <para>NativeSlice.</para>
- </returns>
- </member>
- <member name="M:Unity.Collections.NativeSlice_1.SliceWithStride">
- <summary>
- <para>SliceWithStride.</para>
- </summary>
- <param name="offset">Stride offset.</param>
- <param name="offsetFieldName">Field name whos offset should be used as stride.</param>
- <returns>
- <para>NativeSlice.</para>
- </returns>
- </member>
- <member name="P:Unity.Collections.NativeSlice_1.Stride">
- <summary>
- <para>Returns stride set for Slice.</para>
- </summary>
- </member>
- <member name="P:Unity.Collections.NativeSlice_1.this">
- <summary>
- <para>Access NativeSlice elements by index. Notice that structs are returned by value and not by reference.</para>
- </summary>
- </member>
- <member name="M:Unity.Collections.NativeSlice_1.ToArray">
- <summary>
- <para>Convert NativeSlice to array.</para>
- </summary>
- <returns>
- <para>Array.</para>
- </returns>
- </member>
- <member name="T:Unity.Collections.ReadOnlyAttribute">
- <summary>
- <para>The ReadOnly attribute lets you mark a member of a struct used in a job as read-only.</para>
- </summary>
- </member>
- <member name="T:Unity.Collections.ReadOnlyAttribute">
- <summary>
- <para>The ReadOnly attribute lets you mark a member of a struct used in a job as read-only.</para>
- </summary>
- </member>
- <member name="T:Unity.Collections.WriteOnlyAttribute">
- <summary>
- <para>The WriteOnly attribute lets you mark a member of a struct used in a job as write-only.</para>
- </summary>
- </member>
- <member name="?:Unity.Jobs.IJob">
- <summary>
- <para>IJob allows you to schedule a single job that runs in parallel to other jobs and the main thread.</para>
- </summary>
- </member>
- <member name="M:Unity.Jobs.IJob.Execute">
- <summary>
- <para>Implement this method to perform work on a worker thread.</para>
- </summary>
- </member>
- <member name="T:Unity.Jobs.IJobExtensions">
- <summary>
- <para>Extension methods for Jobs using the IJob interface.</para>
- </summary>
- </member>
- <member name="M:Unity.Jobs.IJobExtensions.Run(T)">
- <summary>
- <para>Perform the job's Execute method immediately on the same thread.</para>
- </summary>
- <param name="jobData">The job and data to Run.</param>
- </member>
- <member name="M:Unity.Jobs.IJobExtensions.Schedule(T,Unity.Jobs.JobHandle)">
- <summary>
- <para>Schedule the job for execution on a worker thread.</para>
- </summary>
- <param name="jobData">The job and data to schedule.</param>
- <param name="dependsOn">Dependencies are used to ensure that a job executes on workerthreads after the dependency has completed execution. Making sure that two jobs reading or writing to same data do not run in parallel.</param>
- <returns>
- <para>The handle identifying the scheduled job. Can be used as a dependency for a later job or ensure completion on the main thread.</para>
- </returns>
- </member>
- <member name="?:Unity.Jobs.IJobParallelFor">
- <summary>
- <para>Parallel-for jobs allow you to perform the same independent operation for each element of a native container or for a fixed number of iterations.</para>
- </summary>
- </member>
- <member name="M:Unity.Jobs.IJobParallelFor.Execute(System.Int32)">
- <summary>
- <para>Implement this method to perform work against a specific iteration index.</para>
- </summary>
- <param name="index">The index of the Parallel for loop at which to perform work.</param>
- </member>
- <member name="T:Unity.Jobs.IJobParallelForExtensions">
- <summary>
- <para>Extension methods for Jobs using the IJobParallelFor.</para>
- </summary>
- </member>
- <member name="M:Unity.Jobs.IJobParallelForExtensions.Run(T,System.Int32)">
- <summary>
- <para>Perform the job's Execute method immediately on the same thread.</para>
- </summary>
- <param name="jobData">The job and data to Run.</param>
- <param name="arrayLength">The number of iterations the for loop will execute.</param>
- </member>
- <member name="M:Unity.Jobs.IJobParallelForExtensions.Schedule(T,System.Int32,System.Int32,Unity.Jobs.JobHandle)">
- <summary>
- <para>Schedule the job for execution on a worker thread.</para>
- </summary>
- <param name="jobData">The job and data to Schedule.</param>
- <param name="arrayLength">The number of iterations the for loop will execute.</param>
- <param name="innerloopBatchCount">Granularity in which workstealing is performed. A value of 32, means the job queue will steal 32 iterations and then perform them in an efficient inner loop.</param>
- <param name="dependsOn">Dependencies are used to ensure that a job executes on workerthreads after the dependency has completed execution. Making sure that two jobs reading or writing to same data do not run in parallel.</param>
- <returns>
- <para>The handle identifying the scheduled job. Can be used as a dependency for a later job or ensure completion on the main thread.</para>
- </returns>
- </member>
- <member name="T:Unity.Jobs.JobHandle">
- <summary>
- <para>JobHandle.</para>
- </summary>
- </member>
- <member name="M:Unity.Jobs.JobHandle.CheckFenceIsDependencyOrDidSyncFence(Unity.Jobs.JobHandle,Unity.Jobs.JobHandle)">
- <summary>
- <para>CheckFenceIsDependencyOrDidSyncFence.</para>
- </summary>
- <param name="jobHandle">Job handle.</param>
- <param name="dependsOn">Job handle dependency.</param>
- <returns>
- <para>Return value.</para>
- </returns>
- </member>
- <member name="M:Unity.Jobs.JobHandle.CombineDependencies(Unity.Jobs.JobHandle,Unity.Jobs.JobHandle)">
- <summary>
- <para>Combines multiple dependencies into a single one.</para>
- </summary>
- <param name="job0"></param>
- <param name="job1"></param>
- <param name="job2"></param>
- <param name="jobs"></param>
- </member>
- <member name="M:Unity.Jobs.JobHandle.CombineDependencies(Unity.Jobs.JobHandle,Unity.Jobs.JobHandle,Unity.Jobs.JobHandle)">
- <summary>
- <para>Combines multiple dependencies into a single one.</para>
- </summary>
- <param name="job0"></param>
- <param name="job1"></param>
- <param name="job2"></param>
- <param name="jobs"></param>
- </member>
- <member name="M:Unity.Jobs.JobHandle.CombineDependencies(Unity.Collections.NativeArray`1&lt;Unity.Jobs.JobHandle&gt;)">
- <summary>
- <para>Combines multiple dependencies into a single one.</para>
- </summary>
- <param name="job0"></param>
- <param name="job1"></param>
- <param name="job2"></param>
- <param name="jobs"></param>
- </member>
- <member name="M:Unity.Jobs.JobHandle.Complete">
- <summary>
- <para>Ensures that the job has completed.</para>
- </summary>
- </member>
- <member name="M:Unity.Jobs.JobHandle.CompleteAll(Unity.Jobs.JobHandle&amp;,Unity.Jobs.JobHandle&amp;)">
- <summary>
- <para>Ensures that all jobs have completed.</para>
- </summary>
- <param name="job0"></param>
- <param name="job1"></param>
- <param name="job2"></param>
- <param name="jobs"></param>
- </member>
- <member name="M:Unity.Jobs.JobHandle.CompleteAll(Unity.Jobs.JobHandle&amp;,Unity.Jobs.JobHandle&amp;,Unity.Jobs.JobHandle&amp;)">
- <summary>
- <para>Ensures that all jobs have completed.</para>
- </summary>
- <param name="job0"></param>
- <param name="job1"></param>
- <param name="job2"></param>
- <param name="jobs"></param>
- </member>
- <member name="M:Unity.Jobs.JobHandle.CompleteAll(Unity.Collections.NativeArray`1&lt;Unity.Jobs.JobHandle&gt;)">
- <summary>
- <para>Ensures that all jobs have completed.</para>
- </summary>
- <param name="job0"></param>
- <param name="job1"></param>
- <param name="job2"></param>
- <param name="jobs"></param>
- </member>
- <member name="P:Unity.Jobs.JobHandle.IsCompleted">
- <summary>
- <para>Returns false if the task is currently running. Returns true if the task has completed.</para>
- </summary>
- </member>
- <member name="M:Unity.Jobs.JobHandle.ScheduleBatchedJobs">
- <summary>
- <para>By default jobs are only put on a local queue when using Job Schedule functions, this actually makes them available to the worker threads to execute them.</para>
- </summary>
- </member>
- <member name="T:Unity.Jobs.LowLevel.Unsafe.BatchQueryJob`2">
- <summary>
- <para>Struct used to implement batch query jobs.</para>
- </summary>
- </member>
- <member name="M:Unity.Jobs.LowLevel.Unsafe.BatchQueryJob_2.#ctor">
- <summary>
- <para>Create BatchQueryJob.</para>
- </summary>
- <param name="commands">NativeArray containing the commands to execute during a batch. The job executing the query will only read from the array, not write to it.</param>
- <param name="results">NativeArray which can contain the results from the commands. The job executing the query will write to the array.</param>
- </member>
- <member name="T:Unity.Jobs.LowLevel.Unsafe.BatchQueryJobStruct`1">
- <summary>
- <para>Struct used to schedule batch query jobs.</para>
- </summary>
- </member>
- <member name="M:Unity.Jobs.LowLevel.Unsafe.BatchQueryJobStruct_1.Initialize">
- <summary>
- <para>Initializes a BatchQueryJobStruct and returns a pointer to an internal structure (System.IntPtr) which should be passed to JobsUtility.JobScheduleParameters.</para>
- </summary>
- </member>
- <member name="T:Unity.Jobs.LowLevel.Unsafe.JobHandleUnsafeUtility">
- <summary>
- <para>JobHandle Unsafe Utilities.</para>
- </summary>
- </member>
- <member name="M:Unity.Jobs.LowLevel.Unsafe.JobHandleUnsafeUtility.CombineDependencies(Unity.Jobs.JobHandle*,System.Int32)">
- <summary>
- <para>Combines multiple dependencies into a single one using an unsafe array of job handles.
-See Also: JobHandle.CombineDependencies.</para>
- </summary>
- <param name="jobs"></param>
- <param name="count"></param>
- </member>
- <member name="T:Unity.Jobs.LowLevel.Unsafe.JobProducerTypeAttribute">
- <summary>
- <para>All job interface types must be marked with the JobProducerType. This is used to compile the Execute method by the Burst ASM inspector.</para>
- </summary>
- </member>
- <member name="M:Unity.Jobs.LowLevel.Unsafe.JobProducerTypeAttribute.#ctor(System.Type)">
- <summary>
- <para></para>
- </summary>
- <param name="producerType">The type containing a static method named "Execute" method which is the method invokes by the job system.</param>
- </member>
- <member name="P:Unity.Jobs.LowLevel.Unsafe.JobProducerTypeAttribute.ProducerType">
- <summary>
- <para>ProducerType is the type containing a static method named "Execute" method which is the method invokes by the job system.</para>
- </summary>
- </member>
- <member name="T:Unity.Jobs.LowLevel.Unsafe.JobRanges">
- <summary>
- <para>Struct containing information about a range the job is allowed to work on.</para>
- </summary>
- </member>
- <member name="F:Unity.Jobs.LowLevel.Unsafe.JobRanges.BatchSize">
- <summary>
- <para>The size of the batch.</para>
- </summary>
- </member>
- <member name="F:Unity.Jobs.LowLevel.Unsafe.JobRanges.IndicesPerPhase">
- <summary>
- <para>Number of indices per phase.</para>
- </summary>
- </member>
- <member name="F:Unity.Jobs.LowLevel.Unsafe.JobRanges.NumJobs">
- <summary>
- <para>Number of jobs.</para>
- </summary>
- </member>
- <member name="F:Unity.Jobs.LowLevel.Unsafe.JobRanges.NumPhases">
- <summary>
- <para>Number of phases.</para>
- </summary>
- </member>
- <member name="F:Unity.Jobs.LowLevel.Unsafe.JobRanges.PhaseData">
- <summary>
- <para>Phase Data.</para>
- </summary>
- </member>
- <member name="F:Unity.Jobs.LowLevel.Unsafe.JobRanges.StartEndIndex">
- <summary>
- <para>The start and end index of the job range.</para>
- </summary>
- </member>
- <member name="F:Unity.Jobs.LowLevel.Unsafe.JobRanges.TotalIterationCount">
- <summary>
- <para>Total iteration count.</para>
- </summary>
- </member>
- <member name="T:Unity.Jobs.LowLevel.Unsafe.JobsUtility">
- <summary>
- <para>Static class containing functionality to create, run and debug jobs.</para>
- </summary>
- </member>
- <member name="F:Unity.Jobs.LowLevel.Unsafe.JobsUtility.CacheLineSize">
- <summary>
- <para>Size of a cache line.</para>
- </summary>
- </member>
- <member name="M:Unity.Jobs.LowLevel.Unsafe.JobsUtility.CreateJobReflectionData">
- <summary>
- <para>Creates job reflection data.</para>
- </summary>
- <returns>
- <para>Returns pointer to internal JobReflectionData.</para>
- </returns>
- </member>
- <member name="M:Unity.Jobs.LowLevel.Unsafe.JobsUtility.CreateJobReflectionData">
- <summary>
- <para>Creates job reflection data.</para>
- </summary>
- <returns>
- <para>Returns pointer to internal JobReflectionData.</para>
- </returns>
- </member>
- <member name="M:Unity.Jobs.LowLevel.Unsafe.JobsUtility.GetJobRange(Unity.Jobs.LowLevel.Unsafe.JobRanges&amp;,System.Int32,System.Int32&amp;,System.Int32&amp;)">
- <summary>
- <para>Returns the begin index and end index of the range.</para>
- </summary>
- <param name="ranges"></param>
- <param name="jobIndex"></param>
- <param name="beginIndex"></param>
- <param name="endIndex"></param>
- </member>
- <member name="M:Unity.Jobs.LowLevel.Unsafe.JobsUtility.GetWorkStealingRange(Unity.Jobs.LowLevel.Unsafe.JobRanges&amp;,System.Int32,System.Int32&amp;,System.Int32&amp;)">
- <summary>
- <para>Returns the work stealing range.</para>
- </summary>
- <param name="ranges"></param>
- <param name="jobIndex"></param>
- <param name="beginIndex"></param>
- <param name="endIndex"></param>
- <returns>
- <para>Returns true if successful.</para>
- </returns>
- </member>
- <member name="P:Unity.Jobs.LowLevel.Unsafe.JobsUtility.JobCompilerEnabled">
- <summary>
- <para>When disabled, forces jobs that have already been compiled with burst to run in mono instead. For example if you want to debug the C# jobs or just want to compare behaviour or performance.</para>
- </summary>
- </member>
- <member name="P:Unity.Jobs.LowLevel.Unsafe.JobsUtility.JobDebuggerEnabled">
- <summary>
- <para>Enables and disables the job debugger at runtime. Note that currently the job debugger is only supported in the Editor. Thus this only has effect in the editor.</para>
- </summary>
- </member>
- <member name="T:Unity.Jobs.LowLevel.Unsafe.JobsUtility.JobScheduleParameters">
- <summary>
- <para>Struct containing job parameters for scheduling.</para>
- </summary>
- </member>
- <member name="M:Unity.Jobs.LowLevel.Unsafe.JobsUtility.JobScheduleParameters.#ctor(System.Void*,System.IntPtr,Unity.Jobs.JobHandle,Unity.Jobs.LowLevel.Unsafe.ScheduleMode)">
- <summary>
- <para>Constructor.</para>
- </summary>
- <param name="i_jobData"></param>
- <param name="i_reflectionData"></param>
- <param name="i_dependency"></param>
- <param name="i_scheduleMode"></param>
- </member>
- <member name="F:Unity.Jobs.LowLevel.Unsafe.JobsUtility.JobScheduleParameters.Dependency">
- <summary>
- <para>A JobHandle to any dependency this job would have.</para>
- </summary>
- </member>
- <member name="F:Unity.Jobs.LowLevel.Unsafe.JobsUtility.JobScheduleParameters.JobDataPtr">
- <summary>
- <para>Pointer to the job data.</para>
- </summary>
- </member>
- <member name="F:Unity.Jobs.LowLevel.Unsafe.JobsUtility.JobScheduleParameters.ReflectionData">
- <summary>
- <para>Pointer to the reflection data.</para>
- </summary>
- </member>
- <member name="F:Unity.Jobs.LowLevel.Unsafe.JobsUtility.JobScheduleParameters.ScheduleMode">
- <summary>
- <para>ScheduleMode option.</para>
- </summary>
- </member>
- <member name="F:Unity.Jobs.LowLevel.Unsafe.JobsUtility.MaxJobThreadCount">
- <summary>
- <para>Maximum job thread count.</para>
- </summary>
- </member>
- <member name="M:Unity.Jobs.LowLevel.Unsafe.JobsUtility.PatchBufferMinMaxRanges">
- <summary>
- <para>Injects debug checks for min and max ranges of native array.</para>
- </summary>
- </member>
- <member name="M:Unity.Jobs.LowLevel.Unsafe.JobsUtility.Schedule(Unity.Jobs.LowLevel.Unsafe.JobsUtility/JobScheduleParameters&amp;)">
- <summary>
- <para>Schedule a single IJob.</para>
- </summary>
- <param name="parameters"></param>
- <returns>
- <para>Returns a JobHandle to the newly created Job.</para>
- </returns>
- </member>
- <member name="M:Unity.Jobs.LowLevel.Unsafe.JobsUtility.ScheduleParallelFor(Unity.Jobs.LowLevel.Unsafe.JobsUtility/JobScheduleParameters&amp;,System.Int32,System.Int32)">
- <summary>
- <para>Schedule a IJobParallelFor job.</para>
- </summary>
- <param name="parameters"></param>
- <param name="arrayLength"></param>
- <param name="innerloopBatchCount"></param>
- <returns>
- <para>Returns a JobHandle to the newly created Job.</para>
- </returns>
- </member>
- <member name="M:Unity.Jobs.LowLevel.Unsafe.JobsUtility.ScheduleParallelForDeferArraySize(Unity.Jobs.LowLevel.Unsafe.JobsUtility/JobScheduleParameters&amp;,System.Int32,System.Void*,System.Void*)">
- <summary>
- <para>Schedule a IJobParallelFor job.</para>
- </summary>
- <param name="parameters"></param>
- <param name="innerloopBatchCount"></param>
- <param name="listData"></param>
- <param name="listDataAtomicSafetyHandle"></param>
- <returns>
- <para>Returns a JobHandle to the newly created Job.</para>
- </returns>
- </member>
- <member name="M:Unity.Jobs.LowLevel.Unsafe.JobsUtility.ScheduleParallelForTransform(Unity.Jobs.LowLevel.Unsafe.JobsUtility/JobScheduleParameters&amp;,System.IntPtr)">
- <summary>
- <para>Schedule a IJobParallelForTransform job.</para>
- </summary>
- <param name="parameters"></param>
- <param name="transfromAccesssArray"></param>
- <returns>
- <para>Returns a JobHandle to the newly created Job.</para>
- </returns>
- </member>
- <member name="T:Unity.Jobs.LowLevel.Unsafe.JobType">
- <summary>
- <para>Determines what the job is used for (ParallelFor or a single job).</para>
- </summary>
- </member>
- <member name="F:Unity.Jobs.LowLevel.Unsafe.JobType.ParallelFor">
- <summary>
- <para>A parallel for job.</para>
- </summary>
- </member>
- <member name="F:Unity.Jobs.LowLevel.Unsafe.JobType.Single">
- <summary>
- <para>A single job.</para>
- </summary>
- </member>
- <member name="T:Unity.Jobs.LowLevel.Unsafe.ScheduleMode">
- <summary>
- <para>ScheduleMode options for scheduling a manage job.</para>
- </summary>
- </member>
- <member name="F:Unity.Jobs.LowLevel.Unsafe.ScheduleMode.Batched">
- <summary>
- <para>Schedule job as batched.</para>
- </summary>
- </member>
- <member name="F:Unity.Jobs.LowLevel.Unsafe.ScheduleMode.Run">
- <summary>
- <para>Schedule job as independent.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.UnityAPICompatibilityVersionAttribute">
- <summary>
- <para>Declares an assembly to be compatible (API wise) with a specific Unity API. Used by internal tools to avoid processing the assembly in order to decide whether assemblies may be using old Unity API.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.UnityAPICompatibilityVersionAttribute.version">
- <summary>
- <para>Version of Unity API.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.UnityAPICompatibilityVersionAttribute.#ctor(System.String)">
- <summary>
- <para>Initializes a new instance of UnityAPICompatibilityVersionAttribute.</para>
- </summary>
- <param name="version">Unity version that this assembly with compatible with.</param>
- </member>
- <member name="A:UnityEngine.CoreModule">
- <summary>
- <para>The Core module implements basic classes required for Unity to function.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.UserAuthorization">
- <summary>
- <para>Constants to pass to Application.RequestUserAuthorization.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.UserAuthorization.Microphone">
- <summary>
- <para>Request permission to use any audio input sources attached to the computer.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.UserAuthorization.WebCam">
- <summary>
- <para>Request permission to use any video input sources attached to the computer.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Vector2">
- <summary>
- <para>Representation of 2D vectors and points.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Vector2.down">
- <summary>
- <para>Shorthand for writing Vector2(0, -1).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Vector2.left">
- <summary>
- <para>Shorthand for writing Vector2(-1, 0).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Vector2.magnitude">
- <summary>
- <para>Returns the length of this vector (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Vector2.negativeInfinity">
- <summary>
- <para>Shorthand for writing Vector2(float.NegativeInfinity, float.NegativeInfinity).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Vector2.normalized">
- <summary>
- <para>Returns this vector with a magnitude of 1 (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Vector2.one">
- <summary>
- <para>Shorthand for writing Vector2(1, 1).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Vector2.positiveInfinity">
- <summary>
- <para>Shorthand for writing Vector2(float.PositiveInfinity, float.PositiveInfinity).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Vector2.right">
- <summary>
- <para>Shorthand for writing Vector2(1, 0).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Vector2.sqrMagnitude">
- <summary>
- <para>Returns the squared length of this vector (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Vector2.up">
- <summary>
- <para>Shorthand for writing Vector2(0, 1).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Vector2.x">
- <summary>
- <para>X component of the vector.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Vector2.y">
- <summary>
- <para>Y component of the vector.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Vector2.zero">
- <summary>
- <para>Shorthand for writing Vector2(0, 0).</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Vector2.Angle(UnityEngine.Vector2,UnityEngine.Vector2)">
- <summary>
- <para>Returns the unsigned angle in degrees between from and to.</para>
- </summary>
- <param name="from">The vector from which the angular difference is measured.</param>
- <param name="to">The vector to which the angular difference is measured.</param>
- </member>
- <member name="M:UnityEngine.Vector2.ClampMagnitude(UnityEngine.Vector2,System.Single)">
- <summary>
- <para>Returns a copy of vector with its magnitude clamped to maxLength.</para>
- </summary>
- <param name="vector"></param>
- <param name="maxLength"></param>
- </member>
- <member name="M:UnityEngine.Vector2.#ctor(System.Single,System.Single)">
- <summary>
- <para>Constructs a new vector with given x, y components.</para>
- </summary>
- <param name="x"></param>
- <param name="y"></param>
- </member>
- <member name="M:UnityEngine.Vector2.Distance(UnityEngine.Vector2,UnityEngine.Vector2)">
- <summary>
- <para>Returns the distance between a and b.</para>
- </summary>
- <param name="a"></param>
- <param name="b"></param>
- </member>
- <member name="M:UnityEngine.Vector2.Dot(UnityEngine.Vector2,UnityEngine.Vector2)">
- <summary>
- <para>Dot Product of two vectors.</para>
- </summary>
- <param name="lhs"></param>
- <param name="rhs"></param>
- </member>
- <member name="M:UnityEngine.Vector2.Equals(System.Object)">
- <summary>
- <para>Returns true if the given vector is exactly equal to this vector.</para>
- </summary>
- <param name="other"></param>
- </member>
- <member name="?:UnityEngine.Vector2.implop_Vector2(Vector3)(UnityEngine.Vector3)">
- <summary>
- <para>Converts a Vector3 to a Vector2.</para>
- </summary>
- <param name="v"></param>
- </member>
- <member name="?:UnityEngine.Vector2.implop_Vector3(Vector2)(UnityEngine.Vector2)">
- <summary>
- <para>Converts a Vector2 to a Vector3.</para>
- </summary>
- <param name="v"></param>
- </member>
- <member name="M:UnityEngine.Vector2.Lerp(UnityEngine.Vector2,UnityEngine.Vector2,System.Single)">
- <summary>
- <para>Linearly interpolates between vectors a and b by t.</para>
- </summary>
- <param name="a"></param>
- <param name="b"></param>
- <param name="t"></param>
- </member>
- <member name="M:UnityEngine.Vector2.LerpUnclamped(UnityEngine.Vector2,UnityEngine.Vector2,System.Single)">
- <summary>
- <para>Linearly interpolates between vectors a and b by t.</para>
- </summary>
- <param name="a"></param>
- <param name="b"></param>
- <param name="t"></param>
- </member>
- <member name="M:UnityEngine.Vector2.Max(UnityEngine.Vector2,UnityEngine.Vector2)">
- <summary>
- <para>Returns a vector that is made from the largest components of two vectors.</para>
- </summary>
- <param name="lhs"></param>
- <param name="rhs"></param>
- </member>
- <member name="M:UnityEngine.Vector2.Min(UnityEngine.Vector2,UnityEngine.Vector2)">
- <summary>
- <para>Returns a vector that is made from the smallest components of two vectors.</para>
- </summary>
- <param name="lhs"></param>
- <param name="rhs"></param>
- </member>
- <member name="M:UnityEngine.Vector2.MoveTowards(UnityEngine.Vector2,UnityEngine.Vector2,System.Single)">
- <summary>
- <para>Moves a point current towards target.</para>
- </summary>
- <param name="current"></param>
- <param name="target"></param>
- <param name="maxDistanceDelta"></param>
- </member>
- <member name="M:UnityEngine.Vector2.Normalize">
- <summary>
- <para>Makes this vector have a magnitude of 1.</para>
- </summary>
- </member>
- <member name="?:UnityEngine.Vector2.op_Divide(UnityEngine.Vector2,System.Single)">
- <summary>
- <para>Divides a vector by a number.</para>
- </summary>
- <param name="a"></param>
- <param name="d"></param>
- </member>
- <member name="?:UnityEngine.Vector2.op_Divide(UnityEngine.Vector2,UnityEngine.Vector2)">
- <summary>
- <para>Divides a vector by another vector.</para>
- </summary>
- <param name="a"></param>
- <param name="b"></param>
- </member>
- <member name="?:UnityEngine.Vector2.op_Equal(UnityEngine.Vector2,UnityEngine.Vector2)">
- <summary>
- <para>Returns true if two vectors are approximately equal.</para>
- </summary>
- <param name="lhs"></param>
- <param name="rhs"></param>
- </member>
- <member name="?:UnityEngine.Vector2.op_Minus(UnityEngine.Vector2,UnityEngine.Vector2)">
- <summary>
- <para>Subtracts one vector from another.</para>
- </summary>
- <param name="a"></param>
- <param name="b"></param>
- </member>
- <member name="?:UnityEngine.Vector2.op_Minus(UnityEngine.Vector2)">
- <summary>
- <para>Negates a vector.</para>
- </summary>
- <param name="a"></param>
- </member>
- <member name="?:UnityEngine.Vector2.op_Multiply(UnityEngine.Vector2,System.Single)">
- <summary>
- <para>Multiplies a vector by a number.</para>
- </summary>
- <param name="a"></param>
- <param name="d"></param>
- </member>
- <member name="?:UnityEngine.Vector2.op_Multiply(System.Single,UnityEngine.Vector2)">
- <summary>
- <para>Multiplies a vector by a number.</para>
- </summary>
- <param name="d"></param>
- <param name="a"></param>
- </member>
- <member name="?:UnityEngine.Vector2.op_Multiply(UnityEngine.Vector2,UnityEngine.Vector2)">
- <summary>
- <para>Multiplies a vector by another vector.</para>
- </summary>
- <param name="a"></param>
- <param name="b"></param>
- </member>
- <member name="?:UnityEngine.Vector2.op_Plus(UnityEngine.Vector2,UnityEngine.Vector2)">
- <summary>
- <para>Adds two vectors.</para>
- </summary>
- <param name="a"></param>
- <param name="b"></param>
- </member>
- <member name="M:UnityEngine.Vector2.Perpendicular(UnityEngine.Vector2)">
- <summary>
- <para>Returns the 2D vector perpendicular to this 2D vector. The result is always rotated 90-degrees in a counter-clockwise direction for a 2D coordinate system where the positive Y axis goes up.</para>
- </summary>
- <param name="inDirection">The input direction.</param>
- <returns>
- <para>The perpendicular direction.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Vector2.Reflect(UnityEngine.Vector2,UnityEngine.Vector2)">
- <summary>
- <para>Reflects a vector off the vector defined by a normal.</para>
- </summary>
- <param name="inDirection"></param>
- <param name="inNormal"></param>
- </member>
- <member name="M:UnityEngine.Vector2.Scale(UnityEngine.Vector2,UnityEngine.Vector2)">
- <summary>
- <para>Multiplies two vectors component-wise.</para>
- </summary>
- <param name="a"></param>
- <param name="b"></param>
- </member>
- <member name="M:UnityEngine.Vector2.Scale(UnityEngine.Vector2)">
- <summary>
- <para>Multiplies every component of this vector by the same component of scale.</para>
- </summary>
- <param name="scale"></param>
- </member>
- <member name="M:UnityEngine.Vector2.Set(System.Single,System.Single)">
- <summary>
- <para>Set x and y components of an existing Vector2.</para>
- </summary>
- <param name="newX"></param>
- <param name="newY"></param>
- </member>
- <member name="M:UnityEngine.Vector2.SignedAngle(UnityEngine.Vector2,UnityEngine.Vector2)">
- <summary>
- <para>Returns the signed angle in degrees between from and to.</para>
- </summary>
- <param name="from">The vector from which the angular difference is measured.</param>
- <param name="to">The vector to which the angular difference is measured.</param>
- </member>
- <member name="M:UnityEngine.Vector2.SmoothDamp(UnityEngine.Vector2,UnityEngine.Vector2,UnityEngine.Vector2&amp;,System.Single)">
- <summary>
- <para>Gradually changes a vector towards a desired goal over time.</para>
- </summary>
- <param name="current">The current position.</param>
- <param name="target">The position we are trying to reach.</param>
- <param name="currentVelocity">The current velocity, this value is modified by the function every time you call it.</param>
- <param name="smoothTime">Approximately the time it will take to reach the target. A smaller value will reach the target faster.</param>
- <param name="maxSpeed">Optionally allows you to clamp the maximum speed.</param>
- <param name="deltaTime">The time since the last call to this function. By default Time.deltaTime.</param>
- </member>
- <member name="M:UnityEngine.Vector2.SmoothDamp(UnityEngine.Vector2,UnityEngine.Vector2,UnityEngine.Vector2&amp;,System.Single,System.Single)">
- <summary>
- <para>Gradually changes a vector towards a desired goal over time.</para>
- </summary>
- <param name="current">The current position.</param>
- <param name="target">The position we are trying to reach.</param>
- <param name="currentVelocity">The current velocity, this value is modified by the function every time you call it.</param>
- <param name="smoothTime">Approximately the time it will take to reach the target. A smaller value will reach the target faster.</param>
- <param name="maxSpeed">Optionally allows you to clamp the maximum speed.</param>
- <param name="deltaTime">The time since the last call to this function. By default Time.deltaTime.</param>
- </member>
- <member name="M:UnityEngine.Vector2.SmoothDamp(UnityEngine.Vector2,UnityEngine.Vector2,UnityEngine.Vector2&amp;,System.Single,System.Single,System.Single)">
- <summary>
- <para>Gradually changes a vector towards a desired goal over time.</para>
- </summary>
- <param name="current">The current position.</param>
- <param name="target">The position we are trying to reach.</param>
- <param name="currentVelocity">The current velocity, this value is modified by the function every time you call it.</param>
- <param name="smoothTime">Approximately the time it will take to reach the target. A smaller value will reach the target faster.</param>
- <param name="maxSpeed">Optionally allows you to clamp the maximum speed.</param>
- <param name="deltaTime">The time since the last call to this function. By default Time.deltaTime.</param>
- </member>
- <member name="P:UnityEngine.Vector2.this">
- <summary>
- <para>Access the x or y component using [0] or [1] respectively.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Vector2.ToString">
- <summary>
- <para>Returns a nicely formatted string for this vector.</para>
- </summary>
- <param name="format"></param>
- </member>
- <member name="M:UnityEngine.Vector2.ToString(System.String)">
- <summary>
- <para>Returns a nicely formatted string for this vector.</para>
- </summary>
- <param name="format"></param>
- </member>
- <member name="T:UnityEngine.Vector2Int">
- <summary>
- <para>Representation of 2D vectors and points using integers.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Vector2Int.down">
- <summary>
- <para>Shorthand for writing Vector2Int (0, -1).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Vector2Int.left">
- <summary>
- <para>Shorthand for writing Vector2Int (-1, 0).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Vector2Int.magnitude">
- <summary>
- <para>Returns the length of this vector (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Vector2Int.one">
- <summary>
- <para>Shorthand for writing Vector2Int (1, 1).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Vector2Int.right">
- <summary>
- <para>Shorthand for writing Vector2Int (1, 0).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Vector2Int.sqrMagnitude">
- <summary>
- <para>Returns the squared length of this vector (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Vector2Int.up">
- <summary>
- <para>Shorthand for writing Vector2Int (0, 1).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Vector2Int.x">
- <summary>
- <para>X component of the vector.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Vector2Int.y">
- <summary>
- <para>Y component of the vector.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Vector2Int.zero">
- <summary>
- <para>Shorthand for writing Vector2Int (0, 0).</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Vector2Int.CeilToInt(UnityEngine.Vector2)">
- <summary>
- <para>Converts a Vector2 to a Vector2Int by doing a Ceiling to each value.</para>
- </summary>
- <param name="v"></param>
- </member>
- <member name="M:UnityEngine.Vector2Int.Clamp(UnityEngine.Vector2Int,UnityEngine.Vector2Int)">
- <summary>
- <para>Clamps the Vector2Int to the bounds given by min and max.</para>
- </summary>
- <param name="min"></param>
- <param name="max"></param>
- </member>
- <member name="M:UnityEngine.Vector2Int.Distance(UnityEngine.Vector2Int,UnityEngine.Vector2Int)">
- <summary>
- <para>Returns the distance between a and b.</para>
- </summary>
- <param name="a"></param>
- <param name="b"></param>
- </member>
- <member name="M:UnityEngine.Vector2Int.Equals(System.Object)">
- <summary>
- <para>Returns true if the objects are equal.</para>
- </summary>
- <param name="other"></param>
- </member>
- <member name="M:UnityEngine.Vector2Int.FloorToInt(UnityEngine.Vector2)">
- <summary>
- <para>Converts a Vector2 to a Vector2Int by doing a Floor to each value.</para>
- </summary>
- <param name="v"></param>
- </member>
- <member name="M:UnityEngine.Vector2Int.GetHashCode">
- <summary>
- <para>Gets the hash code for the Vector2Int.</para>
- </summary>
- <returns>
- <para>The hash code of the Vector2Int.</para>
- </returns>
- </member>
- <member name="?:UnityEngine.Vector2Int.implop_Vector2(Vector2Int)(UnityEngine.Vector2Int)">
- <summary>
- <para>Converts a Vector2Int to a Vector2.</para>
- </summary>
- <param name="v"></param>
- </member>
- <member name="M:UnityEngine.Vector2Int.Max(UnityEngine.Vector2Int,UnityEngine.Vector2Int)">
- <summary>
- <para>Returns a vector that is made from the largest components of two vectors.</para>
- </summary>
- <param name="lhs"></param>
- <param name="rhs"></param>
- </member>
- <member name="M:UnityEngine.Vector2Int.Min(UnityEngine.Vector2Int,UnityEngine.Vector2Int)">
- <summary>
- <para>Returns a vector that is made from the smallest components of two vectors.</para>
- </summary>
- <param name="lhs"></param>
- <param name="rhs"></param>
- </member>
- <member name="?:UnityEngine.Vector2Int.op_Equal(UnityEngine.Vector2Int,UnityEngine.Vector2Int)">
- <summary>
- <para>Returns true if the vectors are equal.</para>
- </summary>
- <param name="lhs"></param>
- <param name="rhs"></param>
- </member>
- <member name="?:UnityEngine.Vector2Int.op_Minus(UnityEngine.Vector2Int,UnityEngine.Vector2Int)">
- <summary>
- <para>Subtracts one vector from another.</para>
- </summary>
- <param name="a"></param>
- <param name="b"></param>
- </member>
- <member name="?:UnityEngine.Vector2Int.op_Multiply(UnityEngine.Vector2Int,UnityEngine.Vector2Int)">
- <summary>
- <para>Multiplies a vector by a number.</para>
- </summary>
- <param name="a"></param>
- <param name="b"></param>
- </member>
- <member name="?:UnityEngine.Vector2Int.op_Multiply(UnityEngine.Vector2Int,System.Int32)">
- <summary>
- <para>Multiplies a vector by a number.</para>
- </summary>
- <param name="a"></param>
- <param name="b"></param>
- </member>
- <member name="?:UnityEngine.Vector2Int.op_NotEqual(UnityEngine.Vector2Int,UnityEngine.Vector2Int)">
- <summary>
- <para>Returns true if vectors different.</para>
- </summary>
- <param name="lhs"></param>
- <param name="rhs"></param>
- </member>
- <member name="?:UnityEngine.Vector2Int.op_Plus(UnityEngine.Vector2Int,UnityEngine.Vector2Int)">
- <summary>
- <para>Adds two vectors.</para>
- </summary>
- <param name="a"></param>
- <param name="b"></param>
- </member>
- <member name="M:UnityEngine.Vector2Int.RoundToInt(UnityEngine.Vector2)">
- <summary>
- <para>Converts a Vector2 to a Vector2Int by doing a Round to each value.</para>
- </summary>
- <param name="v"></param>
- </member>
- <member name="M:UnityEngine.Vector2Int.Scale(UnityEngine.Vector2Int,UnityEngine.Vector2Int)">
- <summary>
- <para>Multiplies two vectors component-wise.</para>
- </summary>
- <param name="a"></param>
- <param name="b"></param>
- </member>
- <member name="M:UnityEngine.Vector2Int.Scale(UnityEngine.Vector2Int)">
- <summary>
- <para>Multiplies every component of this vector by the same component of scale.</para>
- </summary>
- <param name="scale"></param>
- </member>
- <member name="M:UnityEngine.Vector2Int.Set(System.Int32,System.Int32)">
- <summary>
- <para>Set x and y components of an existing Vector2Int.</para>
- </summary>
- <param name="x"></param>
- <param name="y"></param>
- </member>
- <member name="P:UnityEngine.Vector2Int.this">
- <summary>
- <para>Access the x or y component using [0] or [1] respectively.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Vector2Int.ToString">
- <summary>
- <para>Returns a nicely formatted string for this vector.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Vector3">
- <summary>
- <para>Representation of 3D vectors and points.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Vector3.back">
- <summary>
- <para>Shorthand for writing Vector3(0, 0, -1).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Vector3.down">
- <summary>
- <para>Shorthand for writing Vector3(0, -1, 0).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Vector3.forward">
- <summary>
- <para>Shorthand for writing Vector3(0, 0, 1).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Vector3.left">
- <summary>
- <para>Shorthand for writing Vector3(-1, 0, 0).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Vector3.magnitude">
- <summary>
- <para>Returns the length of this vector (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Vector3.negativeInfinity">
- <summary>
- <para>Shorthand for writing Vector3(float.NegativeInfinity, float.NegativeInfinity, float.NegativeInfinity).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Vector3.normalized">
- <summary>
- <para>Returns this vector with a magnitude of 1 (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Vector3.one">
- <summary>
- <para>Shorthand for writing Vector3(1, 1, 1).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Vector3.positiveInfinity">
- <summary>
- <para>Shorthand for writing Vector3(float.PositiveInfinity, float.PositiveInfinity, float.PositiveInfinity).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Vector3.right">
- <summary>
- <para>Shorthand for writing Vector3(1, 0, 0).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Vector3.sqrMagnitude">
- <summary>
- <para>Returns the squared length of this vector (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Vector3.up">
- <summary>
- <para>Shorthand for writing Vector3(0, 1, 0).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Vector3.x">
- <summary>
- <para>X component of the vector.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Vector3.y">
- <summary>
- <para>Y component of the vector.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Vector3.z">
- <summary>
- <para>Z component of the vector.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Vector3.zero">
- <summary>
- <para>Shorthand for writing Vector3(0, 0, 0).</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Vector3.Angle(UnityEngine.Vector3,UnityEngine.Vector3)">
- <summary>
- <para>Returns the angle in degrees between from and to.</para>
- </summary>
- <param name="from">The vector from which the angular difference is measured.</param>
- <param name="to">The vector to which the angular difference is measured.</param>
- <returns>
- <para>The angle in degrees between the two vectors.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Vector3.ClampMagnitude(UnityEngine.Vector3,System.Single)">
- <summary>
- <para>Returns a copy of vector with its magnitude clamped to maxLength.</para>
- </summary>
- <param name="vector"></param>
- <param name="maxLength"></param>
- </member>
- <member name="M:UnityEngine.Vector3.Cross(UnityEngine.Vector3,UnityEngine.Vector3)">
- <summary>
- <para>Cross Product of two vectors.</para>
- </summary>
- <param name="lhs"></param>
- <param name="rhs"></param>
- </member>
- <member name="M:UnityEngine.Vector3.#ctor(System.Single,System.Single,System.Single)">
- <summary>
- <para>Creates a new vector with given x, y, z components.</para>
- </summary>
- <param name="x"></param>
- <param name="y"></param>
- <param name="z"></param>
- </member>
- <member name="M:UnityEngine.Vector3.#ctor(System.Single,System.Single)">
- <summary>
- <para>Creates a new vector with given x, y components and sets z to zero.</para>
- </summary>
- <param name="x"></param>
- <param name="y"></param>
- </member>
- <member name="M:UnityEngine.Vector3.Distance(UnityEngine.Vector3,UnityEngine.Vector3)">
- <summary>
- <para>Returns the distance between a and b.</para>
- </summary>
- <param name="a"></param>
- <param name="b"></param>
- </member>
- <member name="M:UnityEngine.Vector3.Dot(UnityEngine.Vector3,UnityEngine.Vector3)">
- <summary>
- <para>Dot Product of two vectors.</para>
- </summary>
- <param name="lhs"></param>
- <param name="rhs"></param>
- </member>
- <member name="M:UnityEngine.Vector3.Equals(System.Object)">
- <summary>
- <para>Returns true if the given vector is exactly equal to this vector.</para>
- </summary>
- <param name="other"></param>
- </member>
- <member name="M:UnityEngine.Vector3.Lerp(UnityEngine.Vector3,UnityEngine.Vector3,System.Single)">
- <summary>
- <para>Linearly interpolates between two vectors.</para>
- </summary>
- <param name="a"></param>
- <param name="b"></param>
- <param name="t"></param>
- </member>
- <member name="M:UnityEngine.Vector3.LerpUnclamped(UnityEngine.Vector3,UnityEngine.Vector3,System.Single)">
- <summary>
- <para>Linearly interpolates between two vectors.</para>
- </summary>
- <param name="a"></param>
- <param name="b"></param>
- <param name="t"></param>
- </member>
- <member name="M:UnityEngine.Vector3.Max(UnityEngine.Vector3,UnityEngine.Vector3)">
- <summary>
- <para>Returns a vector that is made from the largest components of two vectors.</para>
- </summary>
- <param name="lhs"></param>
- <param name="rhs"></param>
- </member>
- <member name="M:UnityEngine.Vector3.Min(UnityEngine.Vector3,UnityEngine.Vector3)">
- <summary>
- <para>Returns a vector that is made from the smallest components of two vectors.</para>
- </summary>
- <param name="lhs"></param>
- <param name="rhs"></param>
- </member>
- <member name="M:UnityEngine.Vector3.MoveTowards(UnityEngine.Vector3,UnityEngine.Vector3,System.Single)">
- <summary>
- <para>Moves a point current in a straight line towards a target point.</para>
- </summary>
- <param name="current"></param>
- <param name="target"></param>
- <param name="maxDistanceDelta"></param>
- </member>
- <member name="M:UnityEngine.Vector3.Normalize(UnityEngine.Vector3)">
- <summary>
- <para>Makes this vector have a magnitude of 1.</para>
- </summary>
- <param name="value"></param>
- </member>
- <member name="?:UnityEngine.Vector3.op_Divide(UnityEngine.Vector3,System.Single)">
- <summary>
- <para>Divides a vector by a number.</para>
- </summary>
- <param name="a"></param>
- <param name="d"></param>
- </member>
- <member name="?:UnityEngine.Vector3.op_Equal(UnityEngine.Vector3,UnityEngine.Vector3)">
- <summary>
- <para>Returns true if two vectors are approximately equal.</para>
- </summary>
- <param name="lhs"></param>
- <param name="rhs"></param>
- </member>
- <member name="?:UnityEngine.Vector3.op_Minus(UnityEngine.Vector3,UnityEngine.Vector3)">
- <summary>
- <para>Subtracts one vector from another.</para>
- </summary>
- <param name="a"></param>
- <param name="b"></param>
- </member>
- <member name="?:UnityEngine.Vector3.op_Minus(UnityEngine.Vector3)">
- <summary>
- <para>Negates a vector.</para>
- </summary>
- <param name="a"></param>
- </member>
- <member name="?:UnityEngine.Vector3.op_Multiply(UnityEngine.Vector3,System.Single)">
- <summary>
- <para>Multiplies a vector by a number.</para>
- </summary>
- <param name="a"></param>
- <param name="d"></param>
- </member>
- <member name="?:UnityEngine.Vector3.op_Multiply(System.Single,UnityEngine.Vector3)">
- <summary>
- <para>Multiplies a vector by a number.</para>
- </summary>
- <param name="d"></param>
- <param name="a"></param>
- </member>
- <member name="?:UnityEngine.Vector3.op_NotEqual(UnityEngine.Vector3,UnityEngine.Vector3)">
- <summary>
- <para>Returns true if vectors different.</para>
- </summary>
- <param name="lhs"></param>
- <param name="rhs"></param>
- </member>
- <member name="?:UnityEngine.Vector3.op_Plus(UnityEngine.Vector3,UnityEngine.Vector3)">
- <summary>
- <para>Adds two vectors.</para>
- </summary>
- <param name="a"></param>
- <param name="b"></param>
- </member>
- <member name="M:UnityEngine.Vector3.OrthoNormalize(UnityEngine.Vector3&amp;,UnityEngine.Vector3&amp;)">
- <summary>
- <para>Makes vectors normalized and orthogonal to each other.</para>
- </summary>
- <param name="normal"></param>
- <param name="tangent"></param>
- </member>
- <member name="M:UnityEngine.Vector3.OrthoNormalize(UnityEngine.Vector3&amp;,UnityEngine.Vector3&amp;,UnityEngine.Vector3&amp;)">
- <summary>
- <para>Makes vectors normalized and orthogonal to each other.</para>
- </summary>
- <param name="normal"></param>
- <param name="tangent"></param>
- <param name="binormal"></param>
- </member>
- <member name="M:UnityEngine.Vector3.Project(UnityEngine.Vector3,UnityEngine.Vector3)">
- <summary>
- <para>Projects a vector onto another vector.</para>
- </summary>
- <param name="vector"></param>
- <param name="onNormal"></param>
- </member>
- <member name="M:UnityEngine.Vector3.ProjectOnPlane(UnityEngine.Vector3,UnityEngine.Vector3)">
- <summary>
- <para>Projects a vector onto a plane defined by a normal orthogonal to the plane.</para>
- </summary>
- <param name="vector"></param>
- <param name="planeNormal"></param>
- </member>
- <member name="M:UnityEngine.Vector3.Reflect(UnityEngine.Vector3,UnityEngine.Vector3)">
- <summary>
- <para>Reflects a vector off the plane defined by a normal.</para>
- </summary>
- <param name="inDirection"></param>
- <param name="inNormal"></param>
- </member>
- <member name="M:UnityEngine.Vector3.RotateTowards(UnityEngine.Vector3,UnityEngine.Vector3,System.Single,System.Single)">
- <summary>
- <para>Rotates a vector current towards target.</para>
- </summary>
- <param name="current">The vector being managed.</param>
- <param name="target">The vector.</param>
- <param name="maxRadiansDelta">The distance between the two vectors in radians.</param>
- <param name="maxMagnitudeDelta">The length of the radian.</param>
- <returns>
- <para>The location that RotateTowards generates.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Vector3.Scale(UnityEngine.Vector3,UnityEngine.Vector3)">
- <summary>
- <para>Multiplies two vectors component-wise.</para>
- </summary>
- <param name="a"></param>
- <param name="b"></param>
- </member>
- <member name="M:UnityEngine.Vector3.Scale(UnityEngine.Vector3)">
- <summary>
- <para>Multiplies every component of this vector by the same component of scale.</para>
- </summary>
- <param name="scale"></param>
- </member>
- <member name="M:UnityEngine.Vector3.Set(System.Single,System.Single,System.Single)">
- <summary>
- <para>Set x, y and z components of an existing Vector3.</para>
- </summary>
- <param name="newX"></param>
- <param name="newY"></param>
- <param name="newZ"></param>
- </member>
- <member name="M:UnityEngine.Vector3.SignedAngle(UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.Vector3)">
- <summary>
- <para>Returns the signed angle in degrees between from and to.</para>
- </summary>
- <param name="from">The vector from which the angular difference is measured.</param>
- <param name="to">The vector to which the angular difference is measured.</param>
- <param name="axis">A vector around which the other vectors are rotated.</param>
- </member>
- <member name="M:UnityEngine.Vector3.Slerp(UnityEngine.Vector3,UnityEngine.Vector3,System.Single)">
- <summary>
- <para>Spherically interpolates between two vectors.</para>
- </summary>
- <param name="a"></param>
- <param name="b"></param>
- <param name="t"></param>
- </member>
- <member name="M:UnityEngine.Vector3.SlerpUnclamped(UnityEngine.Vector3,UnityEngine.Vector3,System.Single)">
- <summary>
- <para>Spherically interpolates between two vectors.</para>
- </summary>
- <param name="a"></param>
- <param name="b"></param>
- <param name="t"></param>
- </member>
- <member name="M:UnityEngine.Vector3.SmoothDamp(UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.Vector3&amp;,System.Single)">
- <summary>
- <para>Gradually changes a vector towards a desired goal over time.</para>
- </summary>
- <param name="current">The current position.</param>
- <param name="target">The position we are trying to reach.</param>
- <param name="currentVelocity">The current velocity, this value is modified by the function every time you call it.</param>
- <param name="smoothTime">Approximately the time it will take to reach the target. A smaller value will reach the target faster.</param>
- <param name="maxSpeed">Optionally allows you to clamp the maximum speed.</param>
- <param name="deltaTime">The time since the last call to this function. By default Time.deltaTime.</param>
- </member>
- <member name="M:UnityEngine.Vector3.SmoothDamp(UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.Vector3&amp;,System.Single,System.Single)">
- <summary>
- <para>Gradually changes a vector towards a desired goal over time.</para>
- </summary>
- <param name="current">The current position.</param>
- <param name="target">The position we are trying to reach.</param>
- <param name="currentVelocity">The current velocity, this value is modified by the function every time you call it.</param>
- <param name="smoothTime">Approximately the time it will take to reach the target. A smaller value will reach the target faster.</param>
- <param name="maxSpeed">Optionally allows you to clamp the maximum speed.</param>
- <param name="deltaTime">The time since the last call to this function. By default Time.deltaTime.</param>
- </member>
- <member name="M:UnityEngine.Vector3.SmoothDamp(UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.Vector3&amp;,System.Single,System.Single,System.Single)">
- <summary>
- <para>Gradually changes a vector towards a desired goal over time.</para>
- </summary>
- <param name="current">The current position.</param>
- <param name="target">The position we are trying to reach.</param>
- <param name="currentVelocity">The current velocity, this value is modified by the function every time you call it.</param>
- <param name="smoothTime">Approximately the time it will take to reach the target. A smaller value will reach the target faster.</param>
- <param name="maxSpeed">Optionally allows you to clamp the maximum speed.</param>
- <param name="deltaTime">The time since the last call to this function. By default Time.deltaTime.</param>
- </member>
- <member name="P:UnityEngine.Vector3.this">
- <summary>
- <para>Access the x, y, z components using [0], [1], [2] respectively.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Vector3.ToString">
- <summary>
- <para>Returns a nicely formatted string for this vector.</para>
- </summary>
- <param name="format"></param>
- </member>
- <member name="M:UnityEngine.Vector3.ToString(System.String)">
- <summary>
- <para>Returns a nicely formatted string for this vector.</para>
- </summary>
- <param name="format"></param>
- </member>
- <member name="T:UnityEngine.Vector3Int">
- <summary>
- <para>Representation of 3D vectors and points using integers.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Vector3Int.down">
- <summary>
- <para>Shorthand for writing Vector3Int (0, -1, 0).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Vector3Int.left">
- <summary>
- <para>Shorthand for writing Vector3Int (-1, 0, 0).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Vector3Int.magnitude">
- <summary>
- <para>Returns the length of this vector (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Vector3Int.one">
- <summary>
- <para>Shorthand for writing Vector3Int (1, 1, 1).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Vector3Int.right">
- <summary>
- <para>Shorthand for writing Vector3Int (1, 0, 0).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Vector3Int.sqrMagnitude">
- <summary>
- <para>Returns the squared length of this vector (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Vector3Int.up">
- <summary>
- <para>Shorthand for writing Vector3Int (0, 1, 0).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Vector3Int.x">
- <summary>
- <para>X component of the vector.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Vector3Int.y">
- <summary>
- <para>Y component of the vector.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Vector3Int.z">
- <summary>
- <para>Z component of the vector.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Vector3Int.zero">
- <summary>
- <para>Shorthand for writing Vector3Int (0, 0, 0).</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Vector3Int.CeilToInt(UnityEngine.Vector3)">
- <summary>
- <para>Converts a Vector3 to a Vector3Int by doing a Ceiling to each value.</para>
- </summary>
- <param name="v"></param>
- </member>
- <member name="M:UnityEngine.Vector3Int.Clamp(UnityEngine.Vector3Int,UnityEngine.Vector3Int)">
- <summary>
- <para>Clamps the Vector3Int to the bounds given by min and max.</para>
- </summary>
- <param name="min"></param>
- <param name="max"></param>
- </member>
- <member name="M:UnityEngine.Vector3Int.Distance(UnityEngine.Vector3Int,UnityEngine.Vector3Int)">
- <summary>
- <para>Returns the distance between a and b.</para>
- </summary>
- <param name="a"></param>
- <param name="b"></param>
- </member>
- <member name="M:UnityEngine.Vector3Int.Equals(System.Object)">
- <summary>
- <para>Returns true if the objects are equal.</para>
- </summary>
- <param name="other"></param>
- </member>
- <member name="M:UnityEngine.Vector3Int.FloorToInt(UnityEngine.Vector3)">
- <summary>
- <para>Converts a Vector3 to a Vector3Int by doing a Floor to each value.</para>
- </summary>
- <param name="v"></param>
- </member>
- <member name="M:UnityEngine.Vector3Int.GetHashCode">
- <summary>
- <para>Gets the hash code for the Vector3Int.</para>
- </summary>
- <returns>
- <para>The hash code of the Vector3Int.</para>
- </returns>
- </member>
- <member name="?:UnityEngine.Vector3Int.implop_Vector3(Vector3Int)(UnityEngine.Vector3Int)">
- <summary>
- <para>Converts a Vector3Int to a Vector3.</para>
- </summary>
- <param name="v"></param>
- </member>
- <member name="M:UnityEngine.Vector3Int.Max(UnityEngine.Vector3Int,UnityEngine.Vector3Int)">
- <summary>
- <para>Returns a vector that is made from the largest components of two vectors.</para>
- </summary>
- <param name="lhs"></param>
- <param name="rhs"></param>
- </member>
- <member name="M:UnityEngine.Vector3Int.Min(UnityEngine.Vector3Int,UnityEngine.Vector3Int)">
- <summary>
- <para>Returns a vector that is made from the smallest components of two vectors.</para>
- </summary>
- <param name="lhs"></param>
- <param name="rhs"></param>
- </member>
- <member name="?:UnityEngine.Vector3Int.op_Equal(UnityEngine.Vector3Int,UnityEngine.Vector3Int)">
- <summary>
- <para>Returns true if the vectors are equal.</para>
- </summary>
- <param name="lhs"></param>
- <param name="rhs"></param>
- </member>
- <member name="?:UnityEngine.Vector3Int.op_Minus(UnityEngine.Vector3Int,UnityEngine.Vector3Int)">
- <summary>
- <para>Subtracts one vector from another.</para>
- </summary>
- <param name="a"></param>
- <param name="b"></param>
- </member>
- <member name="?:UnityEngine.Vector3Int.op_Multiply(UnityEngine.Vector3Int,UnityEngine.Vector3Int)">
- <summary>
- <para>Multiplies a vector by a number.</para>
- </summary>
- <param name="a"></param>
- <param name="b"></param>
- </member>
- <member name="?:UnityEngine.Vector3Int.op_Multiply(UnityEngine.Vector3Int,System.Int32)">
- <summary>
- <para>Multiplies a vector by a number.</para>
- </summary>
- <param name="a"></param>
- <param name="b"></param>
- </member>
- <member name="?:UnityEngine.Vector3Int.op_NotEqual(UnityEngine.Vector3Int,UnityEngine.Vector3Int)">
- <summary>
- <para>Returns true if vectors different.</para>
- </summary>
- <param name="lhs"></param>
- <param name="rhs"></param>
- </member>
- <member name="?:UnityEngine.Vector3Int.op_Plus(UnityEngine.Vector3Int,UnityEngine.Vector3Int)">
- <summary>
- <para>Adds two vectors.</para>
- </summary>
- <param name="a"></param>
- <param name="b"></param>
- </member>
- <member name="M:UnityEngine.Vector3Int.RoundToInt(UnityEngine.Vector3)">
- <summary>
- <para>Converts a Vector3 to a Vector3Int by doing a Round to each value.</para>
- </summary>
- <param name="v"></param>
- </member>
- <member name="M:UnityEngine.Vector3Int.Scale(UnityEngine.Vector3Int,UnityEngine.Vector3Int)">
- <summary>
- <para>Multiplies two vectors component-wise.</para>
- </summary>
- <param name="a"></param>
- <param name="b"></param>
- </member>
- <member name="M:UnityEngine.Vector3Int.Scale(UnityEngine.Vector3Int)">
- <summary>
- <para>Multiplies every component of this vector by the same component of scale.</para>
- </summary>
- <param name="scale"></param>
- </member>
- <member name="M:UnityEngine.Vector3Int.Set(System.Int32,System.Int32,System.Int32)">
- <summary>
- <para>Set x, y and z components of an existing Vector3Int.</para>
- </summary>
- <param name="x"></param>
- <param name="y"></param>
- <param name="z"></param>
- </member>
- <member name="P:UnityEngine.Vector3Int.this">
- <summary>
- <para>Access the x, y or z component using [0], [1] or [2] respectively.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Vector3Int.ToString">
- <summary>
- <para>Returns a nicely formatted string for this vector.</para>
- </summary>
- <param name="format"></param>
- </member>
- <member name="M:UnityEngine.Vector3Int.ToString(System.String)">
- <summary>
- <para>Returns a nicely formatted string for this vector.</para>
- </summary>
- <param name="format"></param>
- </member>
- <member name="T:UnityEngine.Vector4">
- <summary>
- <para>Representation of four-dimensional vectors.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Vector4.magnitude">
- <summary>
- <para>Returns the length of this vector (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Vector4.negativeInfinity">
- <summary>
- <para>Shorthand for writing Vector4(float.NegativeInfinity, float.NegativeInfinity, float.NegativeInfinity, float.NegativeInfinity).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Vector4.normalized">
- <summary>
- <para>Returns this vector with a magnitude of 1 (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Vector4.one">
- <summary>
- <para>Shorthand for writing Vector4(1,1,1,1).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Vector4.positiveInfinity">
- <summary>
- <para>Shorthand for writing Vector4(float.PositiveInfinity, float.PositiveInfinity, float.PositiveInfinity, float.PositiveInfinity).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Vector4.sqrMagnitude">
- <summary>
- <para>Returns the squared length of this vector (Read Only).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Vector4.w">
- <summary>
- <para>W component of the vector.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Vector4.x">
- <summary>
- <para>X component of the vector.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Vector4.y">
- <summary>
- <para>Y component of the vector.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Vector4.z">
- <summary>
- <para>Z component of the vector.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Vector4.zero">
- <summary>
- <para>Shorthand for writing Vector4(0,0,0,0).</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Vector4.#ctor(System.Single,System.Single,System.Single,System.Single)">
- <summary>
- <para>Creates a new vector with given x, y, z, w components.</para>
- </summary>
- <param name="x"></param>
- <param name="y"></param>
- <param name="z"></param>
- <param name="w"></param>
- </member>
- <member name="M:UnityEngine.Vector4.#ctor(System.Single,System.Single,System.Single)">
- <summary>
- <para>Creates a new vector with given x, y, z components and sets w to zero.</para>
- </summary>
- <param name="x"></param>
- <param name="y"></param>
- <param name="z"></param>
- </member>
- <member name="M:UnityEngine.Vector4.#ctor(System.Single,System.Single)">
- <summary>
- <para>Creates a new vector with given x, y components and sets z and w to zero.</para>
- </summary>
- <param name="x"></param>
- <param name="y"></param>
- </member>
- <member name="M:UnityEngine.Vector4.Distance(UnityEngine.Vector4,UnityEngine.Vector4)">
- <summary>
- <para>Returns the distance between a and b.</para>
- </summary>
- <param name="a"></param>
- <param name="b"></param>
- </member>
- <member name="M:UnityEngine.Vector4.Dot(UnityEngine.Vector4,UnityEngine.Vector4)">
- <summary>
- <para>Dot Product of two vectors.</para>
- </summary>
- <param name="a"></param>
- <param name="b"></param>
- </member>
- <member name="M:UnityEngine.Vector4.Equals(System.Object)">
- <summary>
- <para>Returns true if the given vector is exactly equal to this vector.</para>
- </summary>
- <param name="other"></param>
- </member>
- <member name="?:UnityEngine.Vector4.implop_Vector2(Vector4)(UnityEngine.Vector4)">
- <summary>
- <para>Converts a Vector4 to a Vector2.</para>
- </summary>
- <param name="v"></param>
- </member>
- <member name="?:UnityEngine.Vector4.implop_Vector3(Vector4)(UnityEngine.Vector4)">
- <summary>
- <para>Converts a Vector4 to a Vector3.</para>
- </summary>
- <param name="v"></param>
- </member>
- <member name="?:UnityEngine.Vector4.implop_Vector4(Vector2)(UnityEngine.Vector2)">
- <summary>
- <para>Converts a Vector2 to a Vector4.</para>
- </summary>
- <param name="v"></param>
- </member>
- <member name="?:UnityEngine.Vector4.implop_Vector4(Vector3)(UnityEngine.Vector3)">
- <summary>
- <para>Converts a Vector3 to a Vector4.</para>
- </summary>
- <param name="v"></param>
- </member>
- <member name="M:UnityEngine.Vector4.Lerp(UnityEngine.Vector4,UnityEngine.Vector4,System.Single)">
- <summary>
- <para>Linearly interpolates between two vectors.</para>
- </summary>
- <param name="a"></param>
- <param name="b"></param>
- <param name="t"></param>
- </member>
- <member name="M:UnityEngine.Vector4.LerpUnclamped(UnityEngine.Vector4,UnityEngine.Vector4,System.Single)">
- <summary>
- <para>Linearly interpolates between two vectors.</para>
- </summary>
- <param name="a"></param>
- <param name="b"></param>
- <param name="t"></param>
- </member>
- <member name="M:UnityEngine.Vector4.Max(UnityEngine.Vector4,UnityEngine.Vector4)">
- <summary>
- <para>Returns a vector that is made from the largest components of two vectors.</para>
- </summary>
- <param name="lhs"></param>
- <param name="rhs"></param>
- </member>
- <member name="M:UnityEngine.Vector4.Min(UnityEngine.Vector4,UnityEngine.Vector4)">
- <summary>
- <para>Returns a vector that is made from the smallest components of two vectors.</para>
- </summary>
- <param name="lhs"></param>
- <param name="rhs"></param>
- </member>
- <member name="M:UnityEngine.Vector4.MoveTowards(UnityEngine.Vector4,UnityEngine.Vector4,System.Single)">
- <summary>
- <para>Moves a point current towards target.</para>
- </summary>
- <param name="current"></param>
- <param name="target"></param>
- <param name="maxDistanceDelta"></param>
- </member>
- <member name="M:UnityEngine.Vector4.Normalize(UnityEngine.Vector4)">
- <summary>
- <para></para>
- </summary>
- <param name="a"></param>
- </member>
- <member name="M:UnityEngine.Vector4.Normalize">
- <summary>
- <para>Makes this vector have a magnitude of 1.</para>
- </summary>
- </member>
- <member name="?:UnityEngine.Vector4.op_Divide(UnityEngine.Vector4,System.Single)">
- <summary>
- <para>Divides a vector by a number.</para>
- </summary>
- <param name="a"></param>
- <param name="d"></param>
- </member>
- <member name="?:UnityEngine.Vector4.op_Equal(UnityEngine.Vector4,UnityEngine.Vector4)">
- <summary>
- <para>Returns true if two vectors are approximately equal.</para>
- </summary>
- <param name="lhs"></param>
- <param name="rhs"></param>
- </member>
- <member name="?:UnityEngine.Vector4.op_Minus(UnityEngine.Vector4,UnityEngine.Vector4)">
- <summary>
- <para>Subtracts one vector from another.</para>
- </summary>
- <param name="a"></param>
- <param name="b"></param>
- </member>
- <member name="?:UnityEngine.Vector4.op_Minus(UnityEngine.Vector4)">
- <summary>
- <para>Negates a vector.</para>
- </summary>
- <param name="a"></param>
- </member>
- <member name="?:UnityEngine.Vector4.op_Multiply(UnityEngine.Vector4,System.Single)">
- <summary>
- <para>Multiplies a vector by a number.</para>
- </summary>
- <param name="a"></param>
- <param name="d"></param>
- </member>
- <member name="?:UnityEngine.Vector4.op_Multiply(System.Single,UnityEngine.Vector4)">
- <summary>
- <para>Multiplies a vector by a number.</para>
- </summary>
- <param name="d"></param>
- <param name="a"></param>
- </member>
- <member name="?:UnityEngine.Vector4.op_Plus(UnityEngine.Vector4,UnityEngine.Vector4)">
- <summary>
- <para>Adds two vectors.</para>
- </summary>
- <param name="a"></param>
- <param name="b"></param>
- </member>
- <member name="M:UnityEngine.Vector4.Project(UnityEngine.Vector4,UnityEngine.Vector4)">
- <summary>
- <para>Projects a vector onto another vector.</para>
- </summary>
- <param name="a"></param>
- <param name="b"></param>
- </member>
- <member name="M:UnityEngine.Vector4.Scale(UnityEngine.Vector4,UnityEngine.Vector4)">
- <summary>
- <para>Multiplies two vectors component-wise.</para>
- </summary>
- <param name="a"></param>
- <param name="b"></param>
- </member>
- <member name="M:UnityEngine.Vector4.Scale(UnityEngine.Vector4)">
- <summary>
- <para>Multiplies every component of this vector by the same component of scale.</para>
- </summary>
- <param name="scale"></param>
- </member>
- <member name="M:UnityEngine.Vector4.Set(System.Single,System.Single,System.Single,System.Single)">
- <summary>
- <para>Set x, y, z and w components of an existing Vector4.</para>
- </summary>
- <param name="newX"></param>
- <param name="newY"></param>
- <param name="newZ"></param>
- <param name="newW"></param>
- </member>
- <member name="P:UnityEngine.Vector4.this">
- <summary>
- <para>Access the x, y, z, w components using [0], [1], [2], [3] respectively.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Vector4.ToString">
- <summary>
- <para>Returns a nicely formatted string for this vector.</para>
- </summary>
- <param name="format"></param>
- </member>
- <member name="M:UnityEngine.Vector4.ToString(System.String)">
- <summary>
- <para>Returns a nicely formatted string for this vector.</para>
- </summary>
- <param name="format"></param>
- </member>
- <member name="T:UnityEngine.VRTextureUsage">
- <summary>
- <para>This enum describes how the RenderTexture is used as a VR eye texture. Instead of using the values of this enum manually, use the value returned by XR.XRSettings.eyeTextureDesc|eyeTextureDesc or other VR functions returning a RenderTextureDescriptor.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.VRTextureUsage.None">
- <summary>
- <para>The RenderTexture is not a VR eye texture. No special rendering behavior will occur.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.VRTextureUsage.OneEye">
- <summary>
- <para>This texture corresponds to a single eye on a stereoscopic display.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.VRTextureUsage.TwoEyes">
- <summary>
- <para>This texture corresponds to two eyes on a stereoscopic display. This will be taken into account when using Graphics.Blit and other rendering functions.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.WaitForEndOfFrame">
- <summary>
- <para>Waits until the end of the frame after all cameras and GUI is rendered, just before displaying the frame on screen.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.WaitForFixedUpdate">
- <summary>
- <para>Waits until next fixed frame rate update function. See Also: MonoBehaviour.FixedUpdate.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.WaitForSeconds">
- <summary>
- <para>Suspends the coroutine execution for the given amount of seconds using scaled time.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.WaitForSeconds.#ctor(System.Single)">
- <summary>
- <para>Creates a yield instruction to wait for a given number of seconds using scaled time.</para>
- </summary>
- <param name="seconds"></param>
- </member>
- <member name="T:UnityEngine.WaitForSecondsRealtime">
- <summary>
- <para>Suspends the coroutine execution for the given amount of seconds using unscaled time.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.WaitForSecondsRealtime.#ctor(System.Single)">
- <summary>
- <para>Creates a yield instruction to wait for a given number of seconds using unscaled time.</para>
- </summary>
- <param name="time"></param>
- </member>
- <member name="T:UnityEngine.WaitUntil">
- <summary>
- <para>Suspends the coroutine execution until the supplied delegate evaluates to true.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.WaitUntil.#ctor(System.Func`1&lt;System.Boolean&gt;)">
- <summary>
- <para>Initializes a yield instruction with a given delegate to be evaluated.</para>
- </summary>
- <param name="predicate">Supplied delegate will be evaluated each frame after MonoBehaviour.Update and before MonoBehaviour.LateUpdate until delegate returns true.</param>
- </member>
- <member name="T:UnityEngine.WaitWhile">
- <summary>
- <para>Suspends the coroutine execution until the supplied delegate evaluates to false.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.WaitWhile.#ctor(System.Func`1&lt;System.Boolean&gt;)">
- <summary>
- <para>Initializes a yield instruction with a given delegate to be evaluated.</para>
- </summary>
- <param name="predicate">The supplied delegate will be evaluated each frame after MonoBehaviour.Update and before MonoBehaviour.LateUpdate until delegate returns false.</param>
- </member>
- <member name="T:UnityEngine.WeightedMode">
- <summary>
- <para>Sets which weights to use when calculating curve segments.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.WeightedMode.Both">
- <summary>
- <para>Include inWeight and outWeight when calculating curve segments.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.WeightedMode.In">
- <summary>
- <para>Include inWeight when calculating the previous curve segment.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.WeightedMode.None">
- <summary>
- <para>Exclude both inWeight or outWeight when calculating curve segments.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.WeightedMode.Out">
- <summary>
- <para>Include outWeight when calculating the next curve segment.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Windows.CrashReporting">
- <summary>
- <para>Exposes useful information related to crash reporting on Windows platforms.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Windows.CrashReporting.crashReportFolder">
- <summary>
- <para>Returns the path to the crash report folder on Windows.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Windows.Speech.ConfidenceLevel">
- <summary>
- <para>Used by KeywordRecognizer, GrammarRecognizer, DictationRecognizer. Phrases under the specified minimum level will be ignored.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Windows.Speech.ConfidenceLevel.High">
- <summary>
- <para>High confidence level.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Windows.Speech.ConfidenceLevel.Low">
- <summary>
- <para>Low confidence level.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Windows.Speech.ConfidenceLevel.Medium">
- <summary>
- <para>Medium confidence level.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Windows.Speech.ConfidenceLevel.Rejected">
- <summary>
- <para>Everything is rejected.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Windows.Speech.DictationCompletionCause">
- <summary>
- <para>Represents the reason why dictation session has completed.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Windows.Speech.DictationCompletionCause.AudioQualityFailure">
- <summary>
- <para>Dictation session completion was caused by bad audio quality.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Windows.Speech.DictationCompletionCause.Canceled">
- <summary>
- <para>Dictation session was either cancelled, or the application was paused while dictation session was in progress.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Windows.Speech.DictationCompletionCause.Complete">
- <summary>
- <para>Dictation session has completed successfully.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Windows.Speech.DictationCompletionCause.MicrophoneUnavailable">
- <summary>
- <para>Dictation session has finished because a microphone was not available.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Windows.Speech.DictationCompletionCause.NetworkFailure">
- <summary>
- <para>Dictation session has finished because network connection was not available.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Windows.Speech.DictationCompletionCause.TimeoutExceeded">
- <summary>
- <para>Dictation session has reached its timeout.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Windows.Speech.DictationCompletionCause.UnknownError">
- <summary>
- <para>Dictation session has completed due to an unknown error.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Windows.Speech.DictationRecognizer">
- <summary>
- <para>DictationRecognizer listens to speech input and attempts to determine what phrase was uttered.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Windows.Speech.DictationRecognizer.AutoSilenceTimeoutSeconds">
- <summary>
- <para>The time length in seconds before dictation recognizer session ends due to lack of audio input.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Windows.Speech.DictationRecognizer.#ctor">
- <summary>
- <para>Create a DictationRecognizer with the specified minimum confidence and dictation topic constraint. Phrases under the specified minimum level will be ignored.</para>
- </summary>
- <param name="minimumConfidence">The confidence level at which the recognizer will begin accepting phrases.</param>
- <param name="topic">The dictation topic that this dictation recognizer should optimize its recognition for.</param>
- <param name="confidenceLevel"></param>
- </member>
- <member name="M:UnityEngine.Windows.Speech.DictationRecognizer.#ctor(UnityEngine.Windows.Speech.ConfidenceLevel)">
- <summary>
- <para>Create a DictationRecognizer with the specified minimum confidence and dictation topic constraint. Phrases under the specified minimum level will be ignored.</para>
- </summary>
- <param name="minimumConfidence">The confidence level at which the recognizer will begin accepting phrases.</param>
- <param name="topic">The dictation topic that this dictation recognizer should optimize its recognition for.</param>
- <param name="confidenceLevel"></param>
- </member>
- <member name="M:UnityEngine.Windows.Speech.DictationRecognizer.#ctor(UnityEngine.Windows.Speech.DictationTopicConstraint)">
- <summary>
- <para>Create a DictationRecognizer with the specified minimum confidence and dictation topic constraint. Phrases under the specified minimum level will be ignored.</para>
- </summary>
- <param name="minimumConfidence">The confidence level at which the recognizer will begin accepting phrases.</param>
- <param name="topic">The dictation topic that this dictation recognizer should optimize its recognition for.</param>
- <param name="confidenceLevel"></param>
- </member>
- <member name="M:UnityEngine.Windows.Speech.DictationRecognizer.#ctor(UnityEngine.Windows.Speech.ConfidenceLevel,UnityEngine.Windows.Speech.DictationTopicConstraint)">
- <summary>
- <para>Create a DictationRecognizer with the specified minimum confidence and dictation topic constraint. Phrases under the specified minimum level will be ignored.</para>
- </summary>
- <param name="minimumConfidence">The confidence level at which the recognizer will begin accepting phrases.</param>
- <param name="topic">The dictation topic that this dictation recognizer should optimize its recognition for.</param>
- <param name="confidenceLevel"></param>
- </member>
- <member name="?:UnityEngine.Windows.Speech.DictationRecognizer.DictationComplete(UnityEngine.Windows.Speech.DictationRecognizer/DictationCompletedDelegate)">
- <summary>
- <para>Event that is triggered when the recognizer session completes.</para>
- </summary>
- <param name="value">Delegate that is to be invoked on DictationComplete event.</param>
- </member>
- <member name="T:UnityEngine.Windows.Speech.DictationRecognizer.DictationCompletedDelegate">
- <summary>
- <para>Delegate for DictationComplete event.</para>
- </summary>
- <param name="cause">The cause of dictation session completion.</param>
- </member>
- <member name="?:UnityEngine.Windows.Speech.DictationRecognizer.DictationError(UnityEngine.Windows.Speech.DictationRecognizer/DictationErrorHandler)">
- <summary>
- <para>Event that is triggered when the recognizer session encouters an error.</para>
- </summary>
- <param name="value">Delegate that is to be invoked on DictationError event.</param>
- </member>
- <member name="T:UnityEngine.Windows.Speech.DictationRecognizer.DictationErrorHandler">
- <summary>
- <para>Delegate for DictationError event.</para>
- </summary>
- <param name="error">The error mesage.</param>
- <param name="hresult">HRESULT code that corresponds to the error.</param>
- </member>
- <member name="?:UnityEngine.Windows.Speech.DictationRecognizer.DictationHypothesis(UnityEngine.Windows.Speech.DictationRecognizer/DictationHypothesisDelegate)">
- <summary>
- <para>Event that is triggered when the recognizer changes its hypothesis for the current fragment.</para>
- </summary>
- <param name="value">Delegate to be triggered in the event of a hypothesis changed event.</param>
- </member>
- <member name="T:UnityEngine.Windows.Speech.DictationRecognizer.DictationHypothesisDelegate">
- <summary>
- <para>Callback indicating a hypothesis change event. You should register with DictationHypothesis event.</para>
- </summary>
- <param name="text">The text that the recognizer believes may have been recognized.</param>
- </member>
- <member name="?:UnityEngine.Windows.Speech.DictationRecognizer.DictationResult(UnityEngine.Windows.Speech.DictationRecognizer/DictationResultDelegate)">
- <summary>
- <para>Event indicating a phrase has been recognized with the specified confidence level.</para>
- </summary>
- <param name="value">The delegate to be triggered when this event is triggered.</param>
- </member>
- <member name="T:UnityEngine.Windows.Speech.DictationRecognizer.DictationResultDelegate">
- <summary>
- <para>Callback indicating a phrase has been recognized with the specified confidence level. You should register with DictationResult event.</para>
- </summary>
- <param name="text">The recognized text.</param>
- <param name="confidence">The confidence level at which the text was recognized.</param>
- </member>
- <member name="M:UnityEngine.Windows.Speech.DictationRecognizer.Dispose">
- <summary>
- <para>Disposes the resources this dictation recognizer uses.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Windows.Speech.DictationRecognizer.InitialSilenceTimeoutSeconds">
- <summary>
- <para>The time length in seconds before dictation recognizer session ends due to lack of audio input in case there was no audio heard in the current session.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Windows.Speech.DictationRecognizer.Start">
- <summary>
- <para>Starts the dictation recognization session. Dictation recognizer can only be started if PhraseRecognitionSystem is not running.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Windows.Speech.DictationRecognizer.Status">
- <summary>
- <para>Indicates the status of dictation recognizer.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Windows.Speech.DictationRecognizer.Stop">
- <summary>
- <para>Stops the dictation recognization session.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Windows.Speech.DictationTopicConstraint">
- <summary>
- <para>DictationTopicConstraint enum specifies the scenario for which a specific dictation recognizer should optimize.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Windows.Speech.DictationTopicConstraint.Dictation">
- <summary>
- <para>Dictation recognizer will optimize for dictation scenario.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Windows.Speech.DictationTopicConstraint.Form">
- <summary>
- <para>Dictation recognizer will optimize for form-filling scenario.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Windows.Speech.DictationTopicConstraint.WebSearch">
- <summary>
- <para>Dictation recognizer will optimize for web search scenario.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Windows.Speech.GrammarRecognizer">
- <summary>
- <para>The GrammarRecognizer is a complement to the KeywordRecognizer. In many cases developers will find the KeywordRecognizer fills all their development needs. However, in some cases, more complex grammars will be better expressed in the form of an xml file on disk.
-The GrammarRecognizer uses Extensible Markup Language (XML) elements and attributes, as specified in the World Wide Web Consortium (W3C) Speech Recognition Grammar Specification (SRGS) Version 1.0. These XML elements and attributes represent the rule structures that define the words or phrases (commands) recognized by speech recognition engines.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Windows.Speech.GrammarRecognizer.#ctor(System.String)">
- <summary>
- <para>Creates a grammar recognizer using specified file path and minimum confidence.</para>
- </summary>
- <param name="grammarFilePath">Path of the grammar file.</param>
- <param name="minimumConfidence">The confidence level at which the recognizer will begin accepting phrases.</param>
- </member>
- <member name="M:UnityEngine.Windows.Speech.GrammarRecognizer.#ctor(System.String,UnityEngine.Windows.Speech.ConfidenceLevel)">
- <summary>
- <para>Creates a grammar recognizer using specified file path and minimum confidence.</para>
- </summary>
- <param name="grammarFilePath">Path of the grammar file.</param>
- <param name="minimumConfidence">The confidence level at which the recognizer will begin accepting phrases.</param>
- </member>
- <member name="P:UnityEngine.Windows.Speech.GrammarRecognizer.GrammarFilePath">
- <summary>
- <para>Returns the grammar file path which was supplied when the grammar recognizer was created.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Windows.Speech.KeywordRecognizer">
- <summary>
- <para>KeywordRecognizer listens to speech input and attempts to match uttered phrases to a list of registered keywords.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Windows.Speech.KeywordRecognizer.#ctor(System.String[])">
- <summary>
- <para>Create a KeywordRecognizer which listens to specified keywords with the specified minimum confidence. Phrases under the specified minimum level will be ignored.</para>
- </summary>
- <param name="keywords">The keywords that the recognizer will listen to.</param>
- <param name="minimumConfidence">The minimum confidence level of speech recognition that the recognizer will accept.</param>
- </member>
- <member name="M:UnityEngine.Windows.Speech.KeywordRecognizer.#ctor(System.String[],UnityEngine.Windows.Speech.ConfidenceLevel)">
- <summary>
- <para>Create a KeywordRecognizer which listens to specified keywords with the specified minimum confidence. Phrases under the specified minimum level will be ignored.</para>
- </summary>
- <param name="keywords">The keywords that the recognizer will listen to.</param>
- <param name="minimumConfidence">The minimum confidence level of speech recognition that the recognizer will accept.</param>
- </member>
- <member name="P:UnityEngine.Windows.Speech.KeywordRecognizer.Keywords">
- <summary>
- <para>Returns the list of keywords which was supplied when the keyword recognizer was created.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Windows.Speech.PhraseRecognitionSystem">
- <summary>
- <para>Phrase recognition system is responsible for managing phrase recognizers and dispatching recognition events to them.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Windows.Speech.PhraseRecognitionSystem.isSupported">
- <summary>
- <para>Returns whether speech recognition is supported on the machine that the application is running on.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Windows.Speech.PhraseRecognitionSystem.ErrorDelegate">
- <summary>
- <para>Delegate for OnError event.</para>
- </summary>
- <param name="errorCode">Error code for the error that occurred.</param>
- </member>
- <member name="?:UnityEngine.Windows.Speech.PhraseRecognitionSystem.OnError(UnityEngine.Windows.Speech.PhraseRecognitionSystem/ErrorDelegate)">
- <summary>
- <para>Event that gets invoked when phrase recognition system encounters an error.</para>
- </summary>
- <param name="value">Delegate that will be invoked when the event occurs.</param>
- </member>
- <member name="?:UnityEngine.Windows.Speech.PhraseRecognitionSystem.OnStatusChanged(UnityEngine.Windows.Speech.PhraseRecognitionSystem/StatusDelegate)">
- <summary>
- <para>Event which occurs when the status of the phrase recognition system changes.</para>
- </summary>
- <param name="value">Delegate that will be invoked when the event occurs.</param>
- </member>
- <member name="M:UnityEngine.Windows.Speech.PhraseRecognitionSystem.Restart">
- <summary>
- <para>Attempts to restart the phrase recognition system.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Windows.Speech.PhraseRecognitionSystem.Shutdown">
- <summary>
- <para>Shuts phrase recognition system down.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Windows.Speech.PhraseRecognitionSystem.Status">
- <summary>
- <para>Returns the current status of the phrase recognition system.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Windows.Speech.PhraseRecognitionSystem.StatusDelegate">
- <summary>
- <para>Delegate for OnStatusChanged event.</para>
- </summary>
- <param name="status">The new status of the phrase recognition system.</param>
- </member>
- <member name="T:UnityEngine.Windows.Speech.PhraseRecognizedEventArgs">
- <summary>
- <para>Provides information about a phrase recognized event.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Windows.Speech.PhraseRecognizedEventArgs.confidence">
- <summary>
- <para>A measure of correct recognition certainty.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Windows.Speech.PhraseRecognizedEventArgs.phraseDuration">
- <summary>
- <para>The time it took for the phrase to be uttered.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Windows.Speech.PhraseRecognizedEventArgs.phraseStartTime">
- <summary>
- <para>The moment in time when uttering of the phrase began.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Windows.Speech.PhraseRecognizedEventArgs.semanticMeanings">
- <summary>
- <para>A semantic meaning of recognized phrase.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Windows.Speech.PhraseRecognizedEventArgs.text">
- <summary>
- <para>The text that was recognized.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Windows.Speech.PhraseRecognizer">
- <summary>
- <para>A common base class for both keyword recognizer and grammar recognizer.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Windows.Speech.PhraseRecognizer.Dispose">
- <summary>
- <para>Disposes the resources used by phrase recognizer.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Windows.Speech.PhraseRecognizer.IsRunning">
- <summary>
- <para>Tells whether the phrase recognizer is listening for phrases.</para>
- </summary>
- </member>
- <member name="?:UnityEngine.Windows.Speech.PhraseRecognizer.OnPhraseRecognized(UnityEngine.Windows.Speech.PhraseRecognizer/PhraseRecognizedDelegate)">
- <summary>
- <para>Event that gets fired when the phrase recognizer recognizes a phrase.</para>
- </summary>
- <param name="value">Delegate that will be invoked when the event occurs.</param>
- </member>
- <member name="T:UnityEngine.Windows.Speech.PhraseRecognizer.PhraseRecognizedDelegate">
- <summary>
- <para>Delegate for OnPhraseRecognized event.</para>
- </summary>
- <param name="args">Information about a phrase recognized event.</param>
- </member>
- <member name="M:UnityEngine.Windows.Speech.PhraseRecognizer.Start">
- <summary>
- <para>Makes the phrase recognizer start listening to phrases.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Windows.Speech.PhraseRecognizer.Stop">
- <summary>
- <para>Stops the phrase recognizer from listening to phrases.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Windows.Speech.SemanticMeaning">
- <summary>
- <para>Semantic meaning is a collection of semantic properties of a recognized phrase. These semantic properties can be specified in SRGS grammar files.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Windows.Speech.SemanticMeaning.key">
- <summary>
- <para>A key of semaning meaning.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Windows.Speech.SemanticMeaning.values">
- <summary>
- <para>Values of semantic property that the correspond to the semantic meaning key.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Windows.Speech.SpeechError">
- <summary>
- <para>Represents an error in a speech recognition system.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Windows.Speech.SpeechError.AudioQualityFailure">
- <summary>
- <para>Speech recognition engine failed because the audio quality was too low.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Windows.Speech.SpeechError.GrammarCompilationFailure">
- <summary>
- <para>Speech recognition engine failed to compiled specified grammar.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Windows.Speech.SpeechError.MicrophoneUnavailable">
- <summary>
- <para>Speech error occurred because a microphone was not available.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Windows.Speech.SpeechError.NetworkFailure">
- <summary>
- <para>Speech error occurred due to a network failure.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Windows.Speech.SpeechError.NoError">
- <summary>
- <para>No error occurred.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Windows.Speech.SpeechError.TimeoutExceeded">
- <summary>
- <para>A speech recognition system has timed out.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Windows.Speech.SpeechError.TopicLanguageNotSupported">
- <summary>
- <para>Supplied grammar file language is not supported.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Windows.Speech.SpeechError.UnknownError">
- <summary>
- <para>A speech recognition system has encountered an unknown error.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Windows.Speech.SpeechSystemStatus">
- <summary>
- <para>Represents the current status of the speech recognition system or a dictation recognizer.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Windows.Speech.SpeechSystemStatus.Failed">
- <summary>
- <para>Speech recognition system has encountered an error and is in an indeterminate state.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Windows.Speech.SpeechSystemStatus.Running">
- <summary>
- <para>Speech recognition system is running.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Windows.Speech.SpeechSystemStatus.Stopped">
- <summary>
- <para>Speech recognition system is stopped.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.WrapMode">
- <summary>
- <para>Determines how time is treated outside of the keyframed range of an AnimationClip or AnimationCurve.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.WrapMode.ClampForever">
- <summary>
- <para>Plays back the animation. When it reaches the end, it will keep playing the last frame and never stop playing.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.WrapMode.Default">
- <summary>
- <para>Reads the default repeat mode set higher up.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.WrapMode.Loop">
- <summary>
- <para>When time reaches the end of the animation clip, time will continue at the beginning.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.WrapMode.Once">
- <summary>
- <para>When time reaches the end of the animation clip, the clip will automatically stop playing and time will be reset to beginning of the clip.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.WrapMode.PingPong">
- <summary>
- <para>When time reaches the end of the animation clip, time will ping pong back between beginning and end.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.YieldInstruction">
- <summary>
- <para>Base class for all yield instructions.</para>
- </summary>
- </member>
- </members>
-</doc>
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.CrashReportingModule.dll b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.CrashReportingModule.dll
deleted file mode 100644
index 6f5ed37..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.CrashReportingModule.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.CrashReportingModule.xml b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.CrashReportingModule.xml
deleted file mode 100644
index 3a5490a..0000000
--- a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.CrashReportingModule.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
-<doc>
- <members>
- <assembly>
- <name>UnityEngine.CrashReportingModule</name>
- </assembly>
- <member name="T:UnityEngine.CrashReportHandler.CrashReportHandler">
- <summary>
- <para>Engine API for CrashReporting Service.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CrashReportHandler.CrashReportHandler.enableCaptureExceptions">
- <summary>
- <para>This Boolean field will cause CrashReportHandler to capture exceptions when set to true. By default enable capture exceptions is true.</para>
- </summary>
- </member>
- </members>
-</doc>
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.DirectorModule.dll b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.DirectorModule.dll
deleted file mode 100644
index 5609217..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.DirectorModule.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.DirectorModule.xml b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.DirectorModule.xml
deleted file mode 100644
index c68c673..0000000
--- a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.DirectorModule.xml
+++ /dev/null
@@ -1,185 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
-<doc>
- <members>
- <assembly>
- <name>UnityEngine.DirectorModule</name>
- </assembly>
- <member name="T:UnityEngine.Playables.DirectorWrapMode">
- <summary>
- <para>Wrap mode for Playables.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Playables.DirectorWrapMode.Hold">
- <summary>
- <para>Hold the last frame when the playable time reaches it's duration.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Playables.DirectorWrapMode.Loop">
- <summary>
- <para>Loop back to zero time and continue playing.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Playables.DirectorWrapMode.None">
- <summary>
- <para>Do not keep playing when the time reaches the duration.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Playables.PlayableDirector">
- <summary>
- <para>Instantiates a PlayableAsset and controls playback of Playable objects.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Playables.PlayableDirector.duration">
- <summary>
- <para>The duration of the Playable in seconds.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Playables.PlayableDirector.extrapolationMode">
- <summary>
- <para>Controls how the time is incremented when it goes beyond the duration of the playable.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Playables.PlayableDirector.initialTime">
- <summary>
- <para>The time at which the Playable should start when first played.</para>
- </summary>
- </member>
- <member name="?:UnityEngine.Playables.PlayableDirector.paused(System.Action`1&lt;UnityEngine.Playables.PlayableDirector&gt;)">
- <summary>
- <para>Event that is raised when a PlayableDirector component has paused.</para>
- </summary>
- <param name="value"></param>
- </member>
- <member name="P:UnityEngine.Playables.PlayableDirector.playableAsset">
- <summary>
- <para>The PlayableAsset that is used to instantiate a playable for playback.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Playables.PlayableDirector.playableGraph">
- <summary>
- <para>The PlayableGraph created by the PlayableDirector.</para>
- </summary>
- </member>
- <member name="?:UnityEngine.Playables.PlayableDirector.played(System.Action`1&lt;UnityEngine.Playables.PlayableDirector&gt;)">
- <summary>
- <para>Event that is raised when a PlayableDirector component has begun playing.</para>
- </summary>
- <param name="value"></param>
- </member>
- <member name="P:UnityEngine.Playables.PlayableDirector.playOnAwake">
- <summary>
- <para>Whether the playable asset will start playing back as soon as the component awakes.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Playables.PlayableDirector.state">
- <summary>
- <para>The current playing state of the component. (Read Only)</para>
- </summary>
- </member>
- <member name="?:UnityEngine.Playables.PlayableDirector.stopped(System.Action`1&lt;UnityEngine.Playables.PlayableDirector&gt;)">
- <summary>
- <para>Event that is raised when a PlayableDirector component has stopped.</para>
- </summary>
- <param name="value"></param>
- </member>
- <member name="P:UnityEngine.Playables.PlayableDirector.time">
- <summary>
- <para>The component's current time. This value is incremented according to the PlayableDirector.timeUpdateMode when it is playing. You can also change this value manually.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Playables.PlayableDirector.timeUpdateMode">
- <summary>
- <para>Controls how time is incremented when playing back.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Playables.PlayableDirector.ClearReferenceValue(UnityEngine.PropertyName)">
- <summary>
- <para>Clears an exposed reference value.</para>
- </summary>
- <param name="id">Identifier of the ExposedReference.</param>
- </member>
- <member name="M:UnityEngine.Playables.PlayableDirector.DeferredEvaluate">
- <summary>
- <para>Tells the PlayableDirector to evaluate it's PlayableGraph on the next update.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Playables.PlayableDirector.Evaluate">
- <summary>
- <para>Evaluates the currently playing Playable at the current time.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Playables.PlayableDirector.GetGenericBinding(UnityEngine.Object)">
- <summary>
- <para>Returns a binding to a reference object.</para>
- </summary>
- <param name="key">The object that acts as a key.</param>
- </member>
- <member name="M:UnityEngine.Playables.PlayableDirector.GetReferenceValue(UnityEngine.PropertyName,System.Boolean&amp;)">
- <summary>
- <para>Retreives an ExposedReference binding.</para>
- </summary>
- <param name="id">Identifier of the ExposedReference.</param>
- <param name="idValid">Whether the reference was found.</param>
- </member>
- <member name="M:UnityEngine.Playables.PlayableDirector.Pause">
- <summary>
- <para>Pauses playback of the currently running playable.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Playables.PlayableDirector.Play(UnityEngine.Playables.PlayableAsset,UnityEngine.Playables.DirectorWrapMode)">
- <summary>
- <para>Instatiates a Playable using the provided PlayableAsset and starts playback.</para>
- </summary>
- <param name="asset">An asset to instantiate a playable from.</param>
- <param name="mode">What to do when the time passes the duration of the playable.</param>
- </member>
- <member name="M:UnityEngine.Playables.PlayableDirector.Play(UnityEngine.Playables.PlayableAsset)">
- <summary>
- <para>Instatiates a Playable using the provided PlayableAsset and starts playback.</para>
- </summary>
- <param name="asset">An asset to instantiate a playable from.</param>
- <param name="mode">What to do when the time passes the duration of the playable.</param>
- </member>
- <member name="M:UnityEngine.Playables.PlayableDirector.Play">
- <summary>
- <para>Instatiates a Playable using the provided PlayableAsset and starts playback.</para>
- </summary>
- <param name="asset">An asset to instantiate a playable from.</param>
- <param name="mode">What to do when the time passes the duration of the playable.</param>
- </member>
- <member name="M:UnityEngine.Playables.PlayableDirector.RebuildGraph">
- <summary>
- <para>Discards the existing PlayableGraph and creates a new instance.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Playables.PlayableDirector.Resume">
- <summary>
- <para>Resume playing a paused playable.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Playables.PlayableDirector.SetGenericBinding(UnityEngine.Object,UnityEngine.Object)">
- <summary>
- <para>Sets the binding of a reference object from a PlayableBinding.</para>
- </summary>
- <param name="key">The source object in the PlayableBinding.</param>
- <param name="value">The object to bind to the key.</param>
- </member>
- <member name="M:UnityEngine.Playables.PlayableDirector.SetReferenceValue(UnityEngine.PropertyName,UnityEngine.Object)">
- <summary>
- <para>Sets an ExposedReference value.</para>
- </summary>
- <param name="id">Identifier of the ExposedReference.</param>
- <param name="value">The object to bind to set the reference value to.</param>
- </member>
- <member name="M:UnityEngine.Playables.PlayableDirector.Stop">
- <summary>
- <para>Stops playback of the current Playable and destroys the corresponding graph.</para>
- </summary>
- </member>
- <member name="A:UnityEngine.DirectorModule">
- <summary>
- <para>The Director module implements the PlayableDirector class.</para>
- </summary>
- </member>
- </members>
-</doc>
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.FacebookModule.dll b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.FacebookModule.dll
deleted file mode 100644
index 4d04997..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.FacebookModule.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.FacebookModule.xml b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.FacebookModule.xml
deleted file mode 100644
index 9a03fd1..0000000
--- a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.FacebookModule.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
-<doc>
- <members>
- <assembly>
- <name>UnityEngine.FacebookModule</name>
- </assembly>
- <member name="A:UnityEngine.FacebookModule">
- <summary>
- <para>The Facebook module is required to initialize the Facebook platform support.</para>
- </summary>
- </member>
- </members>
-</doc>
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.FileSystemHttpModule.dll b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.FileSystemHttpModule.dll
deleted file mode 100644
index a281a26..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.FileSystemHttpModule.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.FileSystemHttpModule.xml b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.FileSystemHttpModule.xml
deleted file mode 100644
index 05e123d..0000000
--- a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.FileSystemHttpModule.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
-<doc>
- <members>
- <assembly>
- <name>UnityEngine.FileSystemHttpModule</name>
- </assembly>
- <member name="A:UnityEngine.FileSystemHttpModule">
- <summary>
- <para>HTTP Virtual File System. Allows file I/O over HTTP</para>
- </summary>
- </member>
- </members>
-</doc>
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.GameCenterModule.dll b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.GameCenterModule.dll
deleted file mode 100644
index 42b5460..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.GameCenterModule.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.GameCenterModule.xml b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.GameCenterModule.xml
deleted file mode 100644
index 2d81188..0000000
--- a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.GameCenterModule.xml
+++ /dev/null
@@ -1,480 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
-<doc>
- <members>
- <assembly>
- <name>UnityEngine.GameCenterModule</name>
- </assembly>
- <member name="T:UnityEngine.Social">
- <summary>
- <para>Generic access to the Social API.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Social.localUser">
- <summary>
- <para>The local user (potentially not logged in).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Social.Active">
- <summary>
- <para>This is the currently active social platform. </para>
- </summary>
- </member>
- <member name="M:UnityEngine.Social.CreateAchievement">
- <summary>
- <para>Create an IAchievement instance.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Social.CreateLeaderboard">
- <summary>
- <para>Create an ILeaderboard instance.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Social.LoadAchievementDescriptions(System.Action`1&lt;UnityEngine.SocialPlatforms.IAchievementDescription[]&gt;)">
- <summary>
- <para>Loads the achievement descriptions accociated with this application.</para>
- </summary>
- <param name="callback"></param>
- </member>
- <member name="M:UnityEngine.Social.LoadAchievements(System.Action`1&lt;UnityEngine.SocialPlatforms.IAchievement[]&gt;)">
- <summary>
- <para>Load the achievements the logged in user has already achieved or reported progress on.</para>
- </summary>
- <param name="callback"></param>
- </member>
- <member name="M:UnityEngine.Social.LoadScores(System.String,System.Action`1&lt;UnityEngine.SocialPlatforms.IScore[]&gt;)">
- <summary>
- <para>Load a default set of scores from the given leaderboard.</para>
- </summary>
- <param name="leaderboardID"></param>
- <param name="callback"></param>
- </member>
- <member name="M:UnityEngine.Social.LoadUsers(System.String[],System.Action`1&lt;UnityEngine.SocialPlatforms.IUserProfile[]&gt;)">
- <summary>
- <para>Load the user profiles accociated with the given array of user IDs.</para>
- </summary>
- <param name="userIDs"></param>
- <param name="callback"></param>
- </member>
- <member name="M:UnityEngine.Social.ReportProgress(System.String,System.Double,System.Action`1&lt;System.Boolean&gt;)">
- <summary>
- <para>Reports the progress of an achievement.</para>
- </summary>
- <param name="achievementID"></param>
- <param name="progress"></param>
- <param name="callback"></param>
- </member>
- <member name="M:UnityEngine.Social.ReportScore(System.Int64,System.String,System.Action`1&lt;System.Boolean&gt;)">
- <summary>
- <para>Report a score to a specific leaderboard.</para>
- </summary>
- <param name="score"></param>
- <param name="board"></param>
- <param name="callback"></param>
- </member>
- <member name="M:UnityEngine.Social.ShowAchievementsUI">
- <summary>
- <para>Show a default/system view of the games achievements.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Social.ShowLeaderboardUI">
- <summary>
- <para>Show a default/system view of the games leaderboards.</para>
- </summary>
- </member>
- <member name="?:UnityEngine.SocialPlatforms.IAchievement">
- <summary>
- <para>Information for a user's achievement.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SocialPlatforms.IAchievement.completed">
- <summary>
- <para>Set to true when percentCompleted is 100.0.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SocialPlatforms.IAchievement.hidden">
- <summary>
- <para>This achievement is currently hidden from the user.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SocialPlatforms.IAchievement.id">
- <summary>
- <para>The unique identifier of this achievement.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SocialPlatforms.IAchievement.lastReportedDate">
- <summary>
- <para>Set by server when percentCompleted is updated.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SocialPlatforms.IAchievement.percentCompleted">
- <summary>
- <para>Progress for this achievement.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.SocialPlatforms.IAchievement.ReportProgress(System.Action`1&lt;System.Boolean&gt;)">
- <summary>
- <para>Send notification about progress on this achievement.</para>
- </summary>
- <param name="callback"></param>
- </member>
- <member name="?:UnityEngine.SocialPlatforms.IAchievementDescription">
- <summary>
- <para>Static data describing an achievement.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SocialPlatforms.IAchievementDescription.achievedDescription">
- <summary>
- <para>Description when the achivement is completed.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SocialPlatforms.IAchievementDescription.hidden">
- <summary>
- <para>Hidden achievement are not shown in the list until the percentCompleted has been touched (even if it's 0.0).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SocialPlatforms.IAchievementDescription.id">
- <summary>
- <para>Unique identifier for this achievement description.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SocialPlatforms.IAchievementDescription.image">
- <summary>
- <para>Image representation of the achievement.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SocialPlatforms.IAchievementDescription.points">
- <summary>
- <para>Point value of this achievement.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SocialPlatforms.IAchievementDescription.title">
- <summary>
- <para>Human readable title.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SocialPlatforms.IAchievementDescription.unachievedDescription">
- <summary>
- <para>Description when the achivement has not been completed.</para>
- </summary>
- </member>
- <member name="?:UnityEngine.SocialPlatforms.ILeaderboard">
- <summary>
- <para>The leaderboard contains the scores of all players for a particular game.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SocialPlatforms.ILeaderboard.id">
- <summary>
- <para>Unique identifier for this leaderboard.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SocialPlatforms.ILeaderboard.loading">
- <summary>
- <para>The leaderboad is in the process of loading scores.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SocialPlatforms.ILeaderboard.localUserScore">
- <summary>
- <para>The leaderboard score of the logged in user.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SocialPlatforms.ILeaderboard.maxRange">
- <summary>
- <para>The total amount of scores the leaderboard contains.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SocialPlatforms.ILeaderboard.range">
- <summary>
- <para>The rank range this leaderboard returns.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SocialPlatforms.ILeaderboard.scores">
- <summary>
- <para>The leaderboard scores returned by a query.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SocialPlatforms.ILeaderboard.timeScope">
- <summary>
- <para>The time period/scope searched by this leaderboard.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SocialPlatforms.ILeaderboard.title">
- <summary>
- <para>The human readable title of this leaderboard.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SocialPlatforms.ILeaderboard.userScope">
- <summary>
- <para>The users scope searched by this leaderboard.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.SocialPlatforms.ILeaderboard.LoadScores(System.Action`1&lt;System.Boolean&gt;)">
- <summary>
- <para>Load scores according to the filters set on this leaderboard.</para>
- </summary>
- <param name="callback"></param>
- </member>
- <member name="M:UnityEngine.SocialPlatforms.ILeaderboard.SetUserFilter(System.String[])">
- <summary>
- <para>Only search for these user IDs.</para>
- </summary>
- <param name="userIDs">List of user ids.</param>
- </member>
- <member name="?:UnityEngine.SocialPlatforms.ILocalUser">
- <summary>
- <para>Represents the local or currently logged in user.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SocialPlatforms.ILocalUser.authenticated">
- <summary>
- <para>Checks if the current user has been authenticated.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SocialPlatforms.ILocalUser.friends">
- <summary>
- <para>The users friends list.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SocialPlatforms.ILocalUser.underage">
- <summary>
- <para>Is the user underage?</para>
- </summary>
- </member>
- <member name="M:UnityEngine.SocialPlatforms.ILocalUser.Authenticate(System.Action`1&lt;System.Boolean&gt;)">
- <summary>
- <para>Authenticate the local user to the current active Social API implementation and fetch his profile data.</para>
- </summary>
- <param name="callback">Callback that is called whenever the authentication operation is finished. The first parameter is a Boolean identifying whether the authentication operation was successful. The optional second argument contains a string identifying any errors (if available) if the operation was unsuccessful.</param>
- </member>
- <member name="M:UnityEngine.SocialPlatforms.ILocalUser.Authenticate(System.Action`2&lt;System.Boolean,System.String&gt;)">
- <summary>
- <para>Authenticate the local user to the current active Social API implementation and fetch his profile data.</para>
- </summary>
- <param name="callback">Callback that is called whenever the authentication operation is finished. The first parameter is a Boolean identifying whether the authentication operation was successful. The optional second argument contains a string identifying any errors (if available) if the operation was unsuccessful.</param>
- </member>
- <member name="M:UnityEngine.SocialPlatforms.ILocalUser.LoadFriends(System.Action`1&lt;System.Boolean&gt;)">
- <summary>
- <para>Fetches the friends list of the logged in user. The friends list on the ISocialPlatform.localUser|Social.localUser instance is populated if this call succeeds.</para>
- </summary>
- <param name="callback"></param>
- </member>
- <member name="?:UnityEngine.SocialPlatforms.IScore">
- <summary>
- <para>A game score.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SocialPlatforms.IScore.date">
- <summary>
- <para>The date the score was achieved.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SocialPlatforms.IScore.formattedValue">
- <summary>
- <para>The correctly formatted value of the score, like X points or X kills.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SocialPlatforms.IScore.leaderboardID">
- <summary>
- <para>The ID of the leaderboard this score belongs to.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SocialPlatforms.IScore.rank">
- <summary>
- <para>The rank or position of the score in the leaderboard. </para>
- </summary>
- </member>
- <member name="P:UnityEngine.SocialPlatforms.IScore.userID">
- <summary>
- <para>The user who owns this score.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SocialPlatforms.IScore.value">
- <summary>
- <para>The score value achieved.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.SocialPlatforms.IScore.ReportScore(System.Action`1&lt;System.Boolean&gt;)">
- <summary>
- <para>Report this score instance.</para>
- </summary>
- <param name="callback"></param>
- </member>
- <member name="?:UnityEngine.SocialPlatforms.ISocialPlatform">
- <summary>
- <para>The generic Social API interface which implementations must inherit.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SocialPlatforms.ISocialPlatform.localUser">
- <summary>
- <para>See Social.localUser.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.SocialPlatforms.ISocialPlatform.CreateAchievement">
- <summary>
- <para>See Social.CreateAchievement..</para>
- </summary>
- </member>
- <member name="M:UnityEngine.SocialPlatforms.ISocialPlatform.CreateLeaderboard">
- <summary>
- <para>See Social.CreateLeaderboard.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.SocialPlatforms.ISocialPlatform.LoadAchievementDescriptions(System.Action`1&lt;UnityEngine.SocialPlatforms.IAchievementDescription[]&gt;)">
- <summary>
- <para>See Social.LoadAchievementDescriptions.</para>
- </summary>
- <param name="callback"></param>
- </member>
- <member name="M:UnityEngine.SocialPlatforms.ISocialPlatform.LoadAchievements(System.Action`1&lt;UnityEngine.SocialPlatforms.IAchievement[]&gt;)">
- <summary>
- <para>See Social.LoadAchievements.</para>
- </summary>
- <param name="callback"></param>
- </member>
- <member name="M:UnityEngine.SocialPlatforms.ISocialPlatform.LoadScores(System.String,System.Action`1&lt;UnityEngine.SocialPlatforms.IScore[]&gt;)">
- <summary>
- <para>See Social.LoadScores.</para>
- </summary>
- <param name="leaderboardID"></param>
- <param name="callback"></param>
- <param name="board"></param>
- </member>
- <member name="M:UnityEngine.SocialPlatforms.ISocialPlatform.LoadScores(UnityEngine.SocialPlatforms.ILeaderboard,System.Action`1&lt;System.Boolean&gt;)">
- <summary>
- <para>See Social.LoadScores.</para>
- </summary>
- <param name="leaderboardID"></param>
- <param name="callback"></param>
- <param name="board"></param>
- </member>
- <member name="M:UnityEngine.SocialPlatforms.ISocialPlatform.LoadUsers(System.String[],System.Action`1&lt;UnityEngine.SocialPlatforms.IUserProfile[]&gt;)">
- <summary>
- <para>See Social.LoadUsers.</para>
- </summary>
- <param name="userIDs"></param>
- <param name="callback"></param>
- </member>
- <member name="M:UnityEngine.SocialPlatforms.ISocialPlatform.ReportProgress(System.String,System.Double,System.Action`1&lt;System.Boolean&gt;)">
- <summary>
- <para>See Social.ReportProgress.</para>
- </summary>
- <param name="achievementID"></param>
- <param name="progress"></param>
- <param name="callback"></param>
- </member>
- <member name="M:UnityEngine.SocialPlatforms.ISocialPlatform.ReportScore(System.Int64,System.String,System.Action`1&lt;System.Boolean&gt;)">
- <summary>
- <para>See Social.ReportScore.</para>
- </summary>
- <param name="score"></param>
- <param name="board"></param>
- <param name="callback"></param>
- </member>
- <member name="M:UnityEngine.SocialPlatforms.ISocialPlatform.ShowAchievementsUI">
- <summary>
- <para>See Social.ShowAchievementsUI.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.SocialPlatforms.ISocialPlatform.ShowLeaderboardUI">
- <summary>
- <para>See Social.ShowLeaderboardUI.</para>
- </summary>
- </member>
- <member name="?:UnityEngine.SocialPlatforms.IUserProfile">
- <summary>
- <para>Represents generic user instances, like friends of the local user.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SocialPlatforms.IUserProfile.id">
- <summary>
- <para>This users unique identifier.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SocialPlatforms.IUserProfile.image">
- <summary>
- <para>Avatar image of the user.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SocialPlatforms.IUserProfile.isFriend">
- <summary>
- <para>Is this user a friend of the current logged in user?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SocialPlatforms.IUserProfile.state">
- <summary>
- <para>Presence state of the user.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SocialPlatforms.IUserProfile.userName">
- <summary>
- <para>This user's username or alias.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.SocialPlatforms.Range">
- <summary>
- <para>The score range a leaderboard query should include.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SocialPlatforms.Range.count">
- <summary>
- <para>The total amount of scores retreived.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SocialPlatforms.Range.from">
- <summary>
- <para>The rank of the first score which is returned.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.SocialPlatforms.Range.#ctor(System.Int32,System.Int32)">
- <summary>
- <para>Constructor for a score range, the range starts from a specific value and contains a maxium score count.</para>
- </summary>
- <param name="fromValue">The minimum allowed value.</param>
- <param name="valueCount">The number of possible values.</param>
- </member>
- <member name="T:UnityEngine.SocialPlatforms.TimeScope">
- <summary>
- <para>The scope of time searched through when querying the leaderboard.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.SocialPlatforms.UserScope">
- <summary>
- <para>The scope of the users searched through when querying the leaderboard.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.SocialPlatforms.UserState">
- <summary>
- <para>User presence state.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SocialPlatforms.UserState.Offline">
- <summary>
- <para>The user is offline.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SocialPlatforms.UserState.Online">
- <summary>
- <para>The user is online.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SocialPlatforms.UserState.OnlineAndAway">
- <summary>
- <para>The user is online but away from their computer.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SocialPlatforms.UserState.OnlineAndBusy">
- <summary>
- <para>The user is online but set their status to busy.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.SocialPlatforms.UserState.Playing">
- <summary>
- <para>The user is playing a game.</para>
- </summary>
- </member>
- <member name="A:UnityEngine.GameCenterModule">
- <summary>
- <para>The GameCenter module provides APIs to use Apple's GameCenter service.</para>
- </summary>
- </member>
- </members>
-</doc>
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.GridModule.dll b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.GridModule.dll
deleted file mode 100644
index 622992f..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.GridModule.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.GridModule.xml b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.GridModule.xml
deleted file mode 100644
index 574a2cb..0000000
--- a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.GridModule.xml
+++ /dev/null
@@ -1,236 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
-<doc>
- <members>
- <assembly>
- <name>UnityEngine.GridModule</name>
- </assembly>
- <member name="T:UnityEngine.Grid">
- <summary>
- <para>Grid is the base class for plotting a layout of uniformly spaced points and lines.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Grid.cellGap">
- <summary>
- <para>The size of the gap between each cell in the Grid.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Grid.cellLayout">
- <summary>
- <para>The layout of the cells in the Grid.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Grid.cellSize">
- <summary>
- <para>The size of each cell in the Grid.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Grid.cellSwizzle">
- <summary>
- <para>The cell swizzle for the Grid.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Grid.GetCellCenterLocal(UnityEngine.Vector3Int)">
- <summary>
- <para>Get the logical center coordinate of a grid cell in local space.</para>
- </summary>
- <param name="position">Grid cell position.</param>
- <returns>
- <para>Center of the cell transformed into local space coordinates.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Grid.GetCellCenterWorld(UnityEngine.Vector3Int)">
- <summary>
- <para>Get the logical center coordinate of a grid cell in world space.</para>
- </summary>
- <param name="position">Grid cell position.</param>
- <returns>
- <para>Center of the cell transformed into world space coordinates.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Grid.InverseSwizzle(UnityEngine.GridLayout/CellSwizzle,UnityEngine.Vector3)">
- <summary>
- <para>Does the inverse swizzle of the given position for given swizzle order.</para>
- </summary>
- <param name="swizzle">Determines the rearrangement order for the inverse swizzle.</param>
- <param name="position">Position to inverse swizzle.</param>
- <returns>
- <para>The inversed swizzled position.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Grid.Swizzle(UnityEngine.GridLayout/CellSwizzle,UnityEngine.Vector3)">
- <summary>
- <para>Swizzles the given position with the given swizzle order.</para>
- </summary>
- <param name="swizzle">Determines the rearrangement order for the swizzle.</param>
- <param name="position">Position to swizzle.</param>
- <returns>
- <para>The swizzled position.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.GridLayout">
- <summary>
- <para>An abstract class that defines a grid layout.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GridLayout.cellGap">
- <summary>
- <para>The size of the gap between each cell in the layout.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GridLayout.cellLayout">
- <summary>
- <para>The layout of the cells.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GridLayout.cellSize">
- <summary>
- <para>The size of each cell in the layout.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GridLayout.cellSwizzle">
- <summary>
- <para>The cell swizzle for the layout.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.GridLayout.CellLayout">
- <summary>
- <para>The layout of the GridLayout.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.GridLayout.CellLayout.Hexagon">
- <summary>
- <para>Hexagonal layout for cells in the GridLayout.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.GridLayout.CellLayout.Rectangle">
- <summary>
- <para>Rectangular layout for cells in the GridLayout.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.GridLayout.CellSwizzle">
- <summary>
- <para>Swizzles cell positions to other positions.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.GridLayout.CellSwizzle.XYZ">
- <summary>
- <para>Keeps the cell positions at XYZ.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.GridLayout.CellSwizzle.XZY">
- <summary>
- <para>Swizzles the cell positions from XYZ to XZY.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.GridLayout.CellSwizzle.YXZ">
- <summary>
- <para>Swizzles the cell positions from XYZ to YXZ.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.GridLayout.CellSwizzle.YZX">
- <summary>
- <para>Swizzles the cell positions from XYZ to YZX.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.GridLayout.CellSwizzle.ZXY">
- <summary>
- <para>Swizzles the cell positions from XYZ to ZXY.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.GridLayout.CellSwizzle.ZYX">
- <summary>
- <para>Swizzles the cell positions from XYZ to ZYX.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.GridLayout.CellToLocal(UnityEngine.Vector3Int)">
- <summary>
- <para>Converts a cell position to local position space.</para>
- </summary>
- <param name="cellPosition">Cell position to convert.</param>
- <returns>
- <para>Local position of the cell position.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GridLayout.CellToLocalInterpolated(UnityEngine.Vector3)">
- <summary>
- <para>Converts an interpolated cell position in floats to local position space.</para>
- </summary>
- <param name="cellPosition">Interpolated cell position to convert.</param>
- <returns>
- <para>Local position of the cell position.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GridLayout.CellToWorld(UnityEngine.Vector3Int)">
- <summary>
- <para>Converts a cell position to world position space.</para>
- </summary>
- <param name="cellPosition">Cell position to convert.</param>
- <returns>
- <para>World position of the cell position.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GridLayout.GetBoundsLocal(UnityEngine.Vector3Int)">
- <summary>
- <para>Returns the local bounds for a cell at the location.</para>
- </summary>
- <param name="localPosition">Location of the cell.</param>
- <param name="cellPosition"></param>
- <returns>
- <para>Local bounds of cell at the position.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GridLayout.GetLayoutCellCenter">
- <summary>
- <para>Get the default center coordinate of a cell for the set layout of the Grid.</para>
- </summary>
- <returns>
- <para>Cell Center coordinate.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GridLayout.LocalToCell(UnityEngine.Vector3)">
- <summary>
- <para>Converts a local position to cell position.</para>
- </summary>
- <param name="localPosition">Local Position to convert.</param>
- <returns>
- <para>Cell position of the local position.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GridLayout.LocalToCellInterpolated(UnityEngine.Vector3)">
- <summary>
- <para>Converts a local position to cell position.</para>
- </summary>
- <param name="localPosition">Local Position to convert.</param>
- <returns>
- <para>Interpolated cell position of the local position.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GridLayout.LocalToWorld(UnityEngine.Vector3)">
- <summary>
- <para>Converts a local position to world position.</para>
- </summary>
- <param name="localPosition">Local Position to convert.</param>
- <returns>
- <para>World position of the local position.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GridLayout.WorldToCell(UnityEngine.Vector3)">
- <summary>
- <para>Converts a world position to cell position.</para>
- </summary>
- <param name="worldPosition">World Position to convert.</param>
- <returns>
- <para>Cell position of the world position.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GridLayout.WorldToLocal(UnityEngine.Vector3)">
- <summary>
- <para>Converts a world position to local position.</para>
- </summary>
- <param name="worldPosition">World Position to convert.</param>
- <returns>
- <para>Local position of the world position.</para>
- </returns>
- </member>
- </members>
-</doc>
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.HotReloadModule.dll b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.HotReloadModule.dll
deleted file mode 100644
index 80f0a0a..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.HotReloadModule.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.HotReloadModule.xml b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.HotReloadModule.xml
deleted file mode 100644
index 67bd6d6..0000000
--- a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.HotReloadModule.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
-<doc>
- <members>
- <assembly>
- <name>UnityEngine.HotReloadModule</name>
- </assembly>
- </members>
-</doc>
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.IMGUIModule.dll b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.IMGUIModule.dll
deleted file mode 100644
index db44bf6..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.IMGUIModule.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.IMGUIModule.xml b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.IMGUIModule.xml
deleted file mode 100644
index 682ef7d..0000000
--- a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.IMGUIModule.xml
+++ /dev/null
@@ -1,4638 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
-<doc>
- <members>
- <assembly>
- <name>UnityEngine.IMGUIModule</name>
- </assembly>
- <member name="T:UnityEngine.Event">
- <summary>
- <para>A UnityGUI event.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Event.alt">
- <summary>
- <para>Is Alt/Option key held down? (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Event.button">
- <summary>
- <para>Which mouse button was pressed.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Event.capsLock">
- <summary>
- <para>Is Caps Lock on? (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Event.character">
- <summary>
- <para>The character typed.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Event.clickCount">
- <summary>
- <para>How many consecutive mouse clicks have we received.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Event.command">
- <summary>
- <para>Is Command/Windows key held down? (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Event.commandName">
- <summary>
- <para>The name of an ExecuteCommand or ValidateCommand Event.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Event.control">
- <summary>
- <para>Is Control key held down? (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Event.current">
- <summary>
- <para>The current event that's being processed right now.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Event.delta">
- <summary>
- <para>The relative movement of the mouse compared to last event.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Event.displayIndex">
- <summary>
- <para>Index of display that the event belongs to.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Event.functionKey">
- <summary>
- <para>Is the current keypress a function key? (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Event.isKey">
- <summary>
- <para>Is this event a keyboard event? (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Event.isMouse">
- <summary>
- <para>Is this event a mouse event? (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Event.keyCode">
- <summary>
- <para>The raw key code for keyboard events.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Event.modifiers">
- <summary>
- <para>Which modifier keys are held down.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Event.mousePosition">
- <summary>
- <para>The mouse position.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Event.numeric">
- <summary>
- <para>Is the current keypress on the numeric keyboard? (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Event.shift">
- <summary>
- <para>Is Shift held down? (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Event.type">
- <summary>
- <para>The type of event.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Event.GetEventCount">
- <summary>
- <para>Returns the current number of events that are stored in the event queue.</para>
- </summary>
- <returns>
- <para>Current number of events currently in the event queue.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Event.GetTypeForControl(System.Int32)">
- <summary>
- <para>Get a filtered event type for a given control ID.</para>
- </summary>
- <param name="controlID">The ID of the control you are querying from.</param>
- </member>
- <member name="M:UnityEngine.Event.KeyboardEvent(System.String)">
- <summary>
- <para>Create a keyboard event.</para>
- </summary>
- <param name="key"></param>
- </member>
- <member name="M:UnityEngine.Event.PopEvent(UnityEngine.Event)">
- <summary>
- <para>Get the next queued [Event] from the event system.</para>
- </summary>
- <param name="outEvent">Next Event.</param>
- </member>
- <member name="M:UnityEngine.Event.Use">
- <summary>
- <para>Use this event.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.EventModifiers">
- <summary>
- <para>Types of modifier key that can be active during a keystroke event.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.EventModifiers.Alt">
- <summary>
- <para>Alt key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.EventModifiers.CapsLock">
- <summary>
- <para>Caps lock key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.EventModifiers.Command">
- <summary>
- <para>Command key (Mac).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.EventModifiers.Control">
- <summary>
- <para>Control key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.EventModifiers.FunctionKey">
- <summary>
- <para>Function key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.EventModifiers.None">
- <summary>
- <para>No modifier key pressed during a keystroke event.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.EventModifiers.Numeric">
- <summary>
- <para>Num lock key.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.EventModifiers.Shift">
- <summary>
- <para>Shift key.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.EventType">
- <summary>
- <para>Types of UnityGUI input and processing events.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.EventType.mouseDown">
- <summary>
- <para>An event that is called when the mouse is clicked.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.EventType.mouseDrag">
- <summary>
- <para>An event that is called when the mouse is clicked and dragged.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.EventType.mouseUp">
- <summary>
- <para>An event that is called when the mouse is no longer being clicked.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.EventType.ContextClick">
- <summary>
- <para>User has right-clicked (or control-clicked on the mac).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.EventType.DragExited">
- <summary>
- <para>Editor only: drag &amp; drop operation exited.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.EventType.DragPerform">
- <summary>
- <para>Editor only: drag &amp; drop operation performed.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.EventType.DragUpdated">
- <summary>
- <para>Editor only: drag &amp; drop operation updated.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.EventType.ExecuteCommand">
- <summary>
- <para>Execute a special command (eg. copy &amp; paste).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.EventType.Ignore">
- <summary>
- <para>Event should be ignored.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.EventType.KeyDown">
- <summary>
- <para>A keyboard key was pressed.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.EventType.KeyUp">
- <summary>
- <para>A keyboard key was released.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.EventType.Layout">
- <summary>
- <para>A layout event.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.EventType.MouseDown">
- <summary>
- <para>Mouse button was pressed.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.EventType.MouseDrag">
- <summary>
- <para>Mouse was dragged.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.EventType.MouseEnterWindow">
- <summary>
- <para>Mouse entered a window (Editor views only).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.EventType.MouseLeaveWindow">
- <summary>
- <para>Mouse left a window (Editor views only).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.EventType.MouseMove">
- <summary>
- <para>Mouse was moved (Editor views only).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.EventType.MouseUp">
- <summary>
- <para>Mouse button was released.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.EventType.Repaint">
- <summary>
- <para>A repaint event. One is sent every frame.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.EventType.ScrollWheel">
- <summary>
- <para>The scroll wheel was moved.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.EventType.Used">
- <summary>
- <para>Already processed event.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.EventType.ValidateCommand">
- <summary>
- <para>Validates a special command (e.g. copy &amp; paste).</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ExitGUIException">
- <summary>
- <para>An exception that will prevent all subsequent immediate mode GUI functions from evaluating for the remainder of the GUI loop.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.FocusType">
- <summary>
- <para>Used by GUIUtility.GetControlID to inform the IMGUI system if a given control can get keyboard focus. This allows the IMGUI system to give focus appropriately when a user presses tab for cycling between controls.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.FocusType.Keyboard">
- <summary>
- <para>This control can receive keyboard focus.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.FocusType.Passive">
- <summary>
- <para>This control can not receive keyboard focus.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.GUI">
- <summary>
- <para>The GUI class is the interface for Unity's GUI with manual positioning.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUI.backgroundColor">
- <summary>
- <para>Global tinting color for all background elements rendered by the GUI.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUI.changed">
- <summary>
- <para>Returns true if any controls changed the value of the input data.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUI.color">
- <summary>
- <para>Global tinting color for the GUI.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUI.contentColor">
- <summary>
- <para>Tinting color for all text rendered by the GUI.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUI.depth">
- <summary>
- <para>The sorting depth of the currently executing GUI behaviour.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUI.enabled">
- <summary>
- <para>Is the GUI enabled?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUI.matrix">
- <summary>
- <para>The GUI transform matrix.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUI.skin">
- <summary>
- <para>The global skin to use.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUI.tooltip">
- <summary>
- <para>The tooltip of the control the mouse is currently over, or which has keyboard focus. (Read Only).</para>
- </summary>
- </member>
- <member name="M:UnityEngine.GUI.BeginGroup(UnityEngine.Rect)">
- <summary>
- <para>Begin a group. Must be matched with a call to EndGroup.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the group.</param>
- <param name="text">Text to display on the group.</param>
- <param name="image">Texture to display on the group.</param>
- <param name="content">Text, image and tooltip for this group. If supplied, any mouse clicks are "captured" by the group and not If left out, no background is rendered, and mouse clicks are passed.</param>
- <param name="style">The style to use for the background.</param>
- </member>
- <member name="M:UnityEngine.GUI.BeginGroup(UnityEngine.Rect,System.String)">
- <summary>
- <para>Begin a group. Must be matched with a call to EndGroup.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the group.</param>
- <param name="text">Text to display on the group.</param>
- <param name="image">Texture to display on the group.</param>
- <param name="content">Text, image and tooltip for this group. If supplied, any mouse clicks are "captured" by the group and not If left out, no background is rendered, and mouse clicks are passed.</param>
- <param name="style">The style to use for the background.</param>
- </member>
- <member name="M:UnityEngine.GUI.BeginGroup(UnityEngine.Rect,UnityEngine.Texture)">
- <summary>
- <para>Begin a group. Must be matched with a call to EndGroup.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the group.</param>
- <param name="text">Text to display on the group.</param>
- <param name="image">Texture to display on the group.</param>
- <param name="content">Text, image and tooltip for this group. If supplied, any mouse clicks are "captured" by the group and not If left out, no background is rendered, and mouse clicks are passed.</param>
- <param name="style">The style to use for the background.</param>
- </member>
- <member name="M:UnityEngine.GUI.BeginGroup(UnityEngine.Rect,UnityEngine.GUIContent)">
- <summary>
- <para>Begin a group. Must be matched with a call to EndGroup.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the group.</param>
- <param name="text">Text to display on the group.</param>
- <param name="image">Texture to display on the group.</param>
- <param name="content">Text, image and tooltip for this group. If supplied, any mouse clicks are "captured" by the group and not If left out, no background is rendered, and mouse clicks are passed.</param>
- <param name="style">The style to use for the background.</param>
- </member>
- <member name="M:UnityEngine.GUI.BeginGroup(UnityEngine.Rect,UnityEngine.GUIStyle)">
- <summary>
- <para>Begin a group. Must be matched with a call to EndGroup.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the group.</param>
- <param name="text">Text to display on the group.</param>
- <param name="image">Texture to display on the group.</param>
- <param name="content">Text, image and tooltip for this group. If supplied, any mouse clicks are "captured" by the group and not If left out, no background is rendered, and mouse clicks are passed.</param>
- <param name="style">The style to use for the background.</param>
- </member>
- <member name="M:UnityEngine.GUI.BeginGroup(UnityEngine.Rect,System.String,UnityEngine.GUIStyle)">
- <summary>
- <para>Begin a group. Must be matched with a call to EndGroup.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the group.</param>
- <param name="text">Text to display on the group.</param>
- <param name="image">Texture to display on the group.</param>
- <param name="content">Text, image and tooltip for this group. If supplied, any mouse clicks are "captured" by the group and not If left out, no background is rendered, and mouse clicks are passed.</param>
- <param name="style">The style to use for the background.</param>
- </member>
- <member name="M:UnityEngine.GUI.BeginGroup(UnityEngine.Rect,UnityEngine.Texture,UnityEngine.GUIStyle)">
- <summary>
- <para>Begin a group. Must be matched with a call to EndGroup.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the group.</param>
- <param name="text">Text to display on the group.</param>
- <param name="image">Texture to display on the group.</param>
- <param name="content">Text, image and tooltip for this group. If supplied, any mouse clicks are "captured" by the group and not If left out, no background is rendered, and mouse clicks are passed.</param>
- <param name="style">The style to use for the background.</param>
- </member>
- <member name="M:UnityEngine.GUI.BeginGroup(UnityEngine.Rect,UnityEngine.GUIContent,UnityEngine.GUIStyle)">
- <summary>
- <para>Begin a group. Must be matched with a call to EndGroup.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the group.</param>
- <param name="text">Text to display on the group.</param>
- <param name="image">Texture to display on the group.</param>
- <param name="content">Text, image and tooltip for this group. If supplied, any mouse clicks are "captured" by the group and not If left out, no background is rendered, and mouse clicks are passed.</param>
- <param name="style">The style to use for the background.</param>
- </member>
- <member name="M:UnityEngine.GUI.BeginScrollView(UnityEngine.Rect,UnityEngine.Vector2,UnityEngine.Rect)">
- <summary>
- <para>Begin a scrolling view inside your GUI.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the ScrollView.</param>
- <param name="scrollPosition">The pixel distance that the view is scrolled in the X and Y directions.</param>
- <param name="viewRect">The rectangle used inside the scrollview.</param>
- <param name="horizontalScrollbar">Optional GUIStyle to use for the horizontal scrollbar. If left out, the horizontalScrollbar style from the current GUISkin is used.</param>
- <param name="verticalScrollbar">Optional GUIStyle to use for the vertical scrollbar. If left out, the verticalScrollbar style from the current GUISkin is used.</param>
- <param name="alwaysShowHorizontal">Optional parameter to always show the horizontal scrollbar. If false or left out, it is only shown when viewRect is wider than position.</param>
- <param name="alwaysShowVertical">Optional parameter to always show the vertical scrollbar. If false or left out, it is only shown when viewRect is taller than position.</param>
- <returns>
- <para>The modified scrollPosition. Feed this back into the variable you pass in, as shown in the example.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUI.BeginScrollView(UnityEngine.Rect,UnityEngine.Vector2,UnityEngine.Rect,System.Boolean,System.Boolean)">
- <summary>
- <para>Begin a scrolling view inside your GUI.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the ScrollView.</param>
- <param name="scrollPosition">The pixel distance that the view is scrolled in the X and Y directions.</param>
- <param name="viewRect">The rectangle used inside the scrollview.</param>
- <param name="horizontalScrollbar">Optional GUIStyle to use for the horizontal scrollbar. If left out, the horizontalScrollbar style from the current GUISkin is used.</param>
- <param name="verticalScrollbar">Optional GUIStyle to use for the vertical scrollbar. If left out, the verticalScrollbar style from the current GUISkin is used.</param>
- <param name="alwaysShowHorizontal">Optional parameter to always show the horizontal scrollbar. If false or left out, it is only shown when viewRect is wider than position.</param>
- <param name="alwaysShowVertical">Optional parameter to always show the vertical scrollbar. If false or left out, it is only shown when viewRect is taller than position.</param>
- <returns>
- <para>The modified scrollPosition. Feed this back into the variable you pass in, as shown in the example.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUI.BeginScrollView(UnityEngine.Rect,UnityEngine.Vector2,UnityEngine.Rect,UnityEngine.GUIStyle,UnityEngine.GUIStyle)">
- <summary>
- <para>Begin a scrolling view inside your GUI.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the ScrollView.</param>
- <param name="scrollPosition">The pixel distance that the view is scrolled in the X and Y directions.</param>
- <param name="viewRect">The rectangle used inside the scrollview.</param>
- <param name="horizontalScrollbar">Optional GUIStyle to use for the horizontal scrollbar. If left out, the horizontalScrollbar style from the current GUISkin is used.</param>
- <param name="verticalScrollbar">Optional GUIStyle to use for the vertical scrollbar. If left out, the verticalScrollbar style from the current GUISkin is used.</param>
- <param name="alwaysShowHorizontal">Optional parameter to always show the horizontal scrollbar. If false or left out, it is only shown when viewRect is wider than position.</param>
- <param name="alwaysShowVertical">Optional parameter to always show the vertical scrollbar. If false or left out, it is only shown when viewRect is taller than position.</param>
- <returns>
- <para>The modified scrollPosition. Feed this back into the variable you pass in, as shown in the example.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUI.BeginScrollView(UnityEngine.Rect,UnityEngine.Vector2,UnityEngine.Rect,System.Boolean,System.Boolean,UnityEngine.GUIStyle,UnityEngine.GUIStyle)">
- <summary>
- <para>Begin a scrolling view inside your GUI.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the ScrollView.</param>
- <param name="scrollPosition">The pixel distance that the view is scrolled in the X and Y directions.</param>
- <param name="viewRect">The rectangle used inside the scrollview.</param>
- <param name="horizontalScrollbar">Optional GUIStyle to use for the horizontal scrollbar. If left out, the horizontalScrollbar style from the current GUISkin is used.</param>
- <param name="verticalScrollbar">Optional GUIStyle to use for the vertical scrollbar. If left out, the verticalScrollbar style from the current GUISkin is used.</param>
- <param name="alwaysShowHorizontal">Optional parameter to always show the horizontal scrollbar. If false or left out, it is only shown when viewRect is wider than position.</param>
- <param name="alwaysShowVertical">Optional parameter to always show the vertical scrollbar. If false or left out, it is only shown when viewRect is taller than position.</param>
- <returns>
- <para>The modified scrollPosition. Feed this back into the variable you pass in, as shown in the example.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUI.Box(UnityEngine.Rect,System.String)">
- <summary>
- <para>Create a Box on the GUI Layer.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the box.</param>
- <param name="text">Text to display on the box.</param>
- <param name="image">Texture to display on the box.</param>
- <param name="content">Text, image and tooltip for this box.</param>
- <param name="style">The style to use. If left out, the box style from the current GUISkin is used.</param>
- </member>
- <member name="M:UnityEngine.GUI.Box(UnityEngine.Rect,UnityEngine.Texture)">
- <summary>
- <para>Create a Box on the GUI Layer.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the box.</param>
- <param name="text">Text to display on the box.</param>
- <param name="image">Texture to display on the box.</param>
- <param name="content">Text, image and tooltip for this box.</param>
- <param name="style">The style to use. If left out, the box style from the current GUISkin is used.</param>
- </member>
- <member name="M:UnityEngine.GUI.Box(UnityEngine.Rect,UnityEngine.GUIContent)">
- <summary>
- <para>Create a Box on the GUI Layer.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the box.</param>
- <param name="text">Text to display on the box.</param>
- <param name="image">Texture to display on the box.</param>
- <param name="content">Text, image and tooltip for this box.</param>
- <param name="style">The style to use. If left out, the box style from the current GUISkin is used.</param>
- </member>
- <member name="M:UnityEngine.GUI.Box(UnityEngine.Rect,System.String,UnityEngine.GUIStyle)">
- <summary>
- <para>Create a Box on the GUI Layer.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the box.</param>
- <param name="text">Text to display on the box.</param>
- <param name="image">Texture to display on the box.</param>
- <param name="content">Text, image and tooltip for this box.</param>
- <param name="style">The style to use. If left out, the box style from the current GUISkin is used.</param>
- </member>
- <member name="M:UnityEngine.GUI.Box(UnityEngine.Rect,UnityEngine.Texture,UnityEngine.GUIStyle)">
- <summary>
- <para>Create a Box on the GUI Layer.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the box.</param>
- <param name="text">Text to display on the box.</param>
- <param name="image">Texture to display on the box.</param>
- <param name="content">Text, image and tooltip for this box.</param>
- <param name="style">The style to use. If left out, the box style from the current GUISkin is used.</param>
- </member>
- <member name="M:UnityEngine.GUI.Box(UnityEngine.Rect,UnityEngine.GUIContent,UnityEngine.GUIStyle)">
- <summary>
- <para>Create a Box on the GUI Layer.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the box.</param>
- <param name="text">Text to display on the box.</param>
- <param name="image">Texture to display on the box.</param>
- <param name="content">Text, image and tooltip for this box.</param>
- <param name="style">The style to use. If left out, the box style from the current GUISkin is used.</param>
- </member>
- <member name="M:UnityEngine.GUI.BringWindowToBack(System.Int32)">
- <summary>
- <para>Bring a specific window to back of the floating windows.</para>
- </summary>
- <param name="windowID">The identifier used when you created the window in the Window call.</param>
- </member>
- <member name="M:UnityEngine.GUI.BringWindowToFront(System.Int32)">
- <summary>
- <para>Bring a specific window to front of the floating windows.</para>
- </summary>
- <param name="windowID">The identifier used when you created the window in the Window call.</param>
- </member>
- <member name="M:UnityEngine.GUI.Button(UnityEngine.Rect,System.String)">
- <summary>
- <para>Make a single press button. The user clicks them and something happens immediately.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the button.</param>
- <param name="text">Text to display on the button.</param>
- <param name="image">Texture to display on the button.</param>
- <param name="content">Text, image and tooltip for this button.</param>
- <param name="style">The style to use. If left out, the button style from the current GUISkin is used.</param>
- <returns>
- <para>true when the users clicks the button.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUI.Button(UnityEngine.Rect,UnityEngine.Texture)">
- <summary>
- <para>Make a single press button. The user clicks them and something happens immediately.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the button.</param>
- <param name="text">Text to display on the button.</param>
- <param name="image">Texture to display on the button.</param>
- <param name="content">Text, image and tooltip for this button.</param>
- <param name="style">The style to use. If left out, the button style from the current GUISkin is used.</param>
- <returns>
- <para>true when the users clicks the button.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUI.Button(UnityEngine.Rect,UnityEngine.GUIContent)">
- <summary>
- <para>Make a single press button. The user clicks them and something happens immediately.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the button.</param>
- <param name="text">Text to display on the button.</param>
- <param name="image">Texture to display on the button.</param>
- <param name="content">Text, image and tooltip for this button.</param>
- <param name="style">The style to use. If left out, the button style from the current GUISkin is used.</param>
- <returns>
- <para>true when the users clicks the button.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUI.Button(UnityEngine.Rect,System.String,UnityEngine.GUIStyle)">
- <summary>
- <para>Make a single press button. The user clicks them and something happens immediately.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the button.</param>
- <param name="text">Text to display on the button.</param>
- <param name="image">Texture to display on the button.</param>
- <param name="content">Text, image and tooltip for this button.</param>
- <param name="style">The style to use. If left out, the button style from the current GUISkin is used.</param>
- <returns>
- <para>true when the users clicks the button.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUI.Button(UnityEngine.Rect,UnityEngine.Texture,UnityEngine.GUIStyle)">
- <summary>
- <para>Make a single press button. The user clicks them and something happens immediately.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the button.</param>
- <param name="text">Text to display on the button.</param>
- <param name="image">Texture to display on the button.</param>
- <param name="content">Text, image and tooltip for this button.</param>
- <param name="style">The style to use. If left out, the button style from the current GUISkin is used.</param>
- <returns>
- <para>true when the users clicks the button.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUI.Button(UnityEngine.Rect,UnityEngine.GUIContent,UnityEngine.GUIStyle)">
- <summary>
- <para>Make a single press button. The user clicks them and something happens immediately.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the button.</param>
- <param name="text">Text to display on the button.</param>
- <param name="image">Texture to display on the button.</param>
- <param name="content">Text, image and tooltip for this button.</param>
- <param name="style">The style to use. If left out, the button style from the current GUISkin is used.</param>
- <returns>
- <para>true when the users clicks the button.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUI.DragWindow(UnityEngine.Rect)">
- <summary>
- <para>Make a window draggable.</para>
- </summary>
- <param name="position">The part of the window that can be dragged. This is clipped to the actual window.</param>
- </member>
- <member name="M:UnityEngine.GUI.DragWindow">
- <summary>
- <para>If you want to have the entire window background to act as a drag area, use the version of DragWindow that takes no parameters and put it at the end of the window function.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.GUI.DrawTexture(UnityEngine.Rect,UnityEngine.Texture)">
- <summary>
- <para>Draw a texture within a rectangle.</para>
- </summary>
- <param name="position">Rectangle on the screen to draw the texture within.</param>
- <param name="image">Texture to display.</param>
- <param name="scaleMode">How to scale the image when the aspect ratio of it doesn't fit the aspect ratio to be drawn within.</param>
- <param name="alphaBlend">Whether to apply alpha blending when drawing the image (enabled by default).</param>
- <param name="imageAspect">Aspect ratio to use for the source image. If 0 (the default), the aspect ratio from the image is used. Pass in w/h for the desired aspect ratio. This allows the aspect ratio of the source image to be adjusted without changing the pixel width and height.</param>
- </member>
- <member name="M:UnityEngine.GUI.DrawTexture(UnityEngine.Rect,UnityEngine.Texture,UnityEngine.ScaleMode)">
- <summary>
- <para>Draw a texture within a rectangle.</para>
- </summary>
- <param name="position">Rectangle on the screen to draw the texture within.</param>
- <param name="image">Texture to display.</param>
- <param name="scaleMode">How to scale the image when the aspect ratio of it doesn't fit the aspect ratio to be drawn within.</param>
- <param name="alphaBlend">Whether to apply alpha blending when drawing the image (enabled by default).</param>
- <param name="imageAspect">Aspect ratio to use for the source image. If 0 (the default), the aspect ratio from the image is used. Pass in w/h for the desired aspect ratio. This allows the aspect ratio of the source image to be adjusted without changing the pixel width and height.</param>
- </member>
- <member name="M:UnityEngine.GUI.DrawTexture(UnityEngine.Rect,UnityEngine.Texture,UnityEngine.ScaleMode,System.Boolean)">
- <summary>
- <para>Draw a texture within a rectangle.</para>
- </summary>
- <param name="position">Rectangle on the screen to draw the texture within.</param>
- <param name="image">Texture to display.</param>
- <param name="scaleMode">How to scale the image when the aspect ratio of it doesn't fit the aspect ratio to be drawn within.</param>
- <param name="alphaBlend">Whether to apply alpha blending when drawing the image (enabled by default).</param>
- <param name="imageAspect">Aspect ratio to use for the source image. If 0 (the default), the aspect ratio from the image is used. Pass in w/h for the desired aspect ratio. This allows the aspect ratio of the source image to be adjusted without changing the pixel width and height.</param>
- </member>
- <member name="M:UnityEngine.GUI.DrawTexture(UnityEngine.Rect,UnityEngine.Texture,UnityEngine.ScaleMode,System.Boolean,System.Single)">
- <summary>
- <para>Draw a texture within a rectangle.</para>
- </summary>
- <param name="position">Rectangle on the screen to draw the texture within.</param>
- <param name="image">Texture to display.</param>
- <param name="scaleMode">How to scale the image when the aspect ratio of it doesn't fit the aspect ratio to be drawn within.</param>
- <param name="alphaBlend">Whether to apply alpha blending when drawing the image (enabled by default).</param>
- <param name="imageAspect">Aspect ratio to use for the source image. If 0 (the default), the aspect ratio from the image is used. Pass in w/h for the desired aspect ratio. This allows the aspect ratio of the source image to be adjusted without changing the pixel width and height.</param>
- </member>
- <member name="M:UnityEngine.GUI.DrawTexture(UnityEngine.Rect,UnityEngine.Texture,UnityEngine.ScaleMode,System.Boolean,System.Single,UnityEngine.Color,System.Single,System.Single)">
- <summary>
- <para>Draws a border with rounded corners within a rectangle. The texture is used to pattern the border. Note that this method only works on shader model 2.5 and above.</para>
- </summary>
- <param name="position">Rectangle on the screen to draw the texture within.</param>
- <param name="image">Texture to display.</param>
- <param name="scaleMode">How to scale the image when the aspect ratio of it doesn't fit the aspect ratio to be drawn within.</param>
- <param name="alphaBlend">Whether to apply alpha blending when drawing the image (enabled by default).</param>
- <param name="imageAspect">Aspect ratio to use for the source image. If 0 (the default), the aspect ratio from the image is used. Pass in w/h for the desired aspect ratio. This allows the aspect ratio of the source image to be adjusted without changing the pixel width and height.</param>
- <param name="color">A tint color to apply on the texture.</param>
- <param name="borderWidth">The width of the border. If 0, the full texture is drawn.</param>
- <param name="borderWidths">The width of the borders (left, top, right and bottom). If Vector4.zero, the full texture is drawn.</param>
- <param name="borderRadius">The radius for rounded corners. If 0, corners will not be rounded.</param>
- <param name="borderRadiuses">The radiuses for rounded corners (top-left, top-right, bottom-right and bottom-left). If Vector4.zero, corners will not be rounded.</param>
- </member>
- <member name="M:UnityEngine.GUI.DrawTexture(UnityEngine.Rect,UnityEngine.Texture,UnityEngine.ScaleMode,System.Boolean,System.Single,UnityEngine.Color,UnityEngine.Vector4,System.Single)">
- <summary>
- <para>Draws a border with rounded corners within a rectangle. The texture is used to pattern the border. Note that this method only works on shader model 2.5 and above.</para>
- </summary>
- <param name="position">Rectangle on the screen to draw the texture within.</param>
- <param name="image">Texture to display.</param>
- <param name="scaleMode">How to scale the image when the aspect ratio of it doesn't fit the aspect ratio to be drawn within.</param>
- <param name="alphaBlend">Whether to apply alpha blending when drawing the image (enabled by default).</param>
- <param name="imageAspect">Aspect ratio to use for the source image. If 0 (the default), the aspect ratio from the image is used. Pass in w/h for the desired aspect ratio. This allows the aspect ratio of the source image to be adjusted without changing the pixel width and height.</param>
- <param name="color">A tint color to apply on the texture.</param>
- <param name="borderWidth">The width of the border. If 0, the full texture is drawn.</param>
- <param name="borderWidths">The width of the borders (left, top, right and bottom). If Vector4.zero, the full texture is drawn.</param>
- <param name="borderRadius">The radius for rounded corners. If 0, corners will not be rounded.</param>
- <param name="borderRadiuses">The radiuses for rounded corners (top-left, top-right, bottom-right and bottom-left). If Vector4.zero, corners will not be rounded.</param>
- </member>
- <member name="M:UnityEngine.GUI.DrawTextureWithTexCoords(UnityEngine.Rect,UnityEngine.Texture,UnityEngine.Rect)">
- <summary>
- <para>Draw a texture within a rectangle with the given texture coordinates.</para>
- </summary>
- <param name="position">Rectangle on the screen to draw the texture within.</param>
- <param name="image">Texture to display.</param>
- <param name="texCoords">How to scale the image when the aspect ratio of it doesn't fit the aspect ratio to be drawn within.</param>
- <param name="alphaBlend">Whether to alpha blend the image on to the display (the default). If false, the picture is drawn on to the display.</param>
- </member>
- <member name="M:UnityEngine.GUI.DrawTextureWithTexCoords(UnityEngine.Rect,UnityEngine.Texture,UnityEngine.Rect,System.Boolean)">
- <summary>
- <para>Draw a texture within a rectangle with the given texture coordinates.</para>
- </summary>
- <param name="position">Rectangle on the screen to draw the texture within.</param>
- <param name="image">Texture to display.</param>
- <param name="texCoords">How to scale the image when the aspect ratio of it doesn't fit the aspect ratio to be drawn within.</param>
- <param name="alphaBlend">Whether to alpha blend the image on to the display (the default). If false, the picture is drawn on to the display.</param>
- </member>
- <member name="M:UnityEngine.GUI.EndGroup">
- <summary>
- <para>End a group.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.GUI.EndScrollView">
- <summary>
- <para>Ends a scrollview started with a call to BeginScrollView.</para>
- </summary>
- <param name="handleScrollWheel"></param>
- </member>
- <member name="M:UnityEngine.GUI.EndScrollView(System.Boolean)">
- <summary>
- <para>Ends a scrollview started with a call to BeginScrollView.</para>
- </summary>
- <param name="handleScrollWheel"></param>
- </member>
- <member name="M:UnityEngine.GUI.FocusControl(System.String)">
- <summary>
- <para>Move keyboard focus to a named control.</para>
- </summary>
- <param name="name">Name set using SetNextControlName.</param>
- </member>
- <member name="M:UnityEngine.GUI.FocusWindow(System.Int32)">
- <summary>
- <para>Make a window become the active window.</para>
- </summary>
- <param name="windowID">The identifier used when you created the window in the Window call.</param>
- </member>
- <member name="M:UnityEngine.GUI.GetNameOfFocusedControl">
- <summary>
- <para>Get the name of named control that has focus.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.GUI.GroupScope">
- <summary>
- <para>Disposable helper class for managing BeginGroup / EndGroup.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.GUI.GroupScope.#ctor(UnityEngine.Rect)">
- <summary>
- <para>Create a new GroupScope and begin the corresponding group.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the group.</param>
- <param name="text">Text to display on the group.</param>
- <param name="image">Texture to display on the group.</param>
- <param name="content">Text, image and tooltip for this group. If supplied, any mouse clicks are "captured" by the group and not If left out, no background is rendered, and mouse clicks are passed.</param>
- <param name="style">The style to use for the background.</param>
- </member>
- <member name="M:UnityEngine.GUI.GroupScope.#ctor(UnityEngine.Rect,System.String)">
- <summary>
- <para>Create a new GroupScope and begin the corresponding group.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the group.</param>
- <param name="text">Text to display on the group.</param>
- <param name="image">Texture to display on the group.</param>
- <param name="content">Text, image and tooltip for this group. If supplied, any mouse clicks are "captured" by the group and not If left out, no background is rendered, and mouse clicks are passed.</param>
- <param name="style">The style to use for the background.</param>
- </member>
- <member name="M:UnityEngine.GUI.GroupScope.#ctor(UnityEngine.Rect,UnityEngine.Texture)">
- <summary>
- <para>Create a new GroupScope and begin the corresponding group.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the group.</param>
- <param name="text">Text to display on the group.</param>
- <param name="image">Texture to display on the group.</param>
- <param name="content">Text, image and tooltip for this group. If supplied, any mouse clicks are "captured" by the group and not If left out, no background is rendered, and mouse clicks are passed.</param>
- <param name="style">The style to use for the background.</param>
- </member>
- <member name="M:UnityEngine.GUI.GroupScope.#ctor(UnityEngine.Rect,UnityEngine.GUIContent)">
- <summary>
- <para>Create a new GroupScope and begin the corresponding group.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the group.</param>
- <param name="text">Text to display on the group.</param>
- <param name="image">Texture to display on the group.</param>
- <param name="content">Text, image and tooltip for this group. If supplied, any mouse clicks are "captured" by the group and not If left out, no background is rendered, and mouse clicks are passed.</param>
- <param name="style">The style to use for the background.</param>
- </member>
- <member name="M:UnityEngine.GUI.GroupScope.#ctor(UnityEngine.Rect,UnityEngine.GUIStyle)">
- <summary>
- <para>Create a new GroupScope and begin the corresponding group.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the group.</param>
- <param name="text">Text to display on the group.</param>
- <param name="image">Texture to display on the group.</param>
- <param name="content">Text, image and tooltip for this group. If supplied, any mouse clicks are "captured" by the group and not If left out, no background is rendered, and mouse clicks are passed.</param>
- <param name="style">The style to use for the background.</param>
- </member>
- <member name="M:UnityEngine.GUI.GroupScope.#ctor(UnityEngine.Rect,System.String,UnityEngine.GUIStyle)">
- <summary>
- <para>Create a new GroupScope and begin the corresponding group.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the group.</param>
- <param name="text">Text to display on the group.</param>
- <param name="image">Texture to display on the group.</param>
- <param name="content">Text, image and tooltip for this group. If supplied, any mouse clicks are "captured" by the group and not If left out, no background is rendered, and mouse clicks are passed.</param>
- <param name="style">The style to use for the background.</param>
- </member>
- <member name="M:UnityEngine.GUI.GroupScope.#ctor(UnityEngine.Rect,UnityEngine.Texture,UnityEngine.GUIStyle)">
- <summary>
- <para>Create a new GroupScope and begin the corresponding group.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the group.</param>
- <param name="text">Text to display on the group.</param>
- <param name="image">Texture to display on the group.</param>
- <param name="content">Text, image and tooltip for this group. If supplied, any mouse clicks are "captured" by the group and not If left out, no background is rendered, and mouse clicks are passed.</param>
- <param name="style">The style to use for the background.</param>
- </member>
- <member name="M:UnityEngine.GUI.HorizontalScrollbar(UnityEngine.Rect,System.Single,System.Single,System.Single,System.Single)">
- <summary>
- <para>Make a horizontal scrollbar. Scrollbars are what you use to scroll through a document. Most likely, you want to use scrollViews instead.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the scrollbar.</param>
- <param name="value">The position between min and max.</param>
- <param name="size">How much can we see?</param>
- <param name="leftValue">The value at the left end of the scrollbar.</param>
- <param name="rightValue">The value at the right end of the scrollbar.</param>
- <param name="style">The style to use for the scrollbar background. If left out, the horizontalScrollbar style from the current GUISkin is used.</param>
- <returns>
- <para>The modified value. This can be changed by the user by dragging the scrollbar, or clicking the arrows at the end.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUI.HorizontalScrollbar(UnityEngine.Rect,System.Single,System.Single,System.Single,System.Single,UnityEngine.GUIStyle)">
- <summary>
- <para>Make a horizontal scrollbar. Scrollbars are what you use to scroll through a document. Most likely, you want to use scrollViews instead.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the scrollbar.</param>
- <param name="value">The position between min and max.</param>
- <param name="size">How much can we see?</param>
- <param name="leftValue">The value at the left end of the scrollbar.</param>
- <param name="rightValue">The value at the right end of the scrollbar.</param>
- <param name="style">The style to use for the scrollbar background. If left out, the horizontalScrollbar style from the current GUISkin is used.</param>
- <returns>
- <para>The modified value. This can be changed by the user by dragging the scrollbar, or clicking the arrows at the end.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUI.HorizontalSlider(UnityEngine.Rect,System.Single,System.Single,System.Single)">
- <summary>
- <para>A horizontal slider the user can drag to change a value between a min and a max.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the slider.</param>
- <param name="value">The value the slider shows. This determines the position of the draggable thumb.</param>
- <param name="leftValue">The value at the left end of the slider.</param>
- <param name="rightValue">The value at the right end of the slider.</param>
- <param name="slider">The GUIStyle to use for displaying the dragging area. If left out, the horizontalSlider style from the current GUISkin is used.</param>
- <param name="thumb">The GUIStyle to use for displaying draggable thumb. If left out, the horizontalSliderThumb style from the current GUISkin is used.</param>
- <returns>
- <para>The value that has been set by the user.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUI.HorizontalSlider(UnityEngine.Rect,System.Single,System.Single,System.Single,UnityEngine.GUIStyle,UnityEngine.GUIStyle)">
- <summary>
- <para>A horizontal slider the user can drag to change a value between a min and a max.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the slider.</param>
- <param name="value">The value the slider shows. This determines the position of the draggable thumb.</param>
- <param name="leftValue">The value at the left end of the slider.</param>
- <param name="rightValue">The value at the right end of the slider.</param>
- <param name="slider">The GUIStyle to use for displaying the dragging area. If left out, the horizontalSlider style from the current GUISkin is used.</param>
- <param name="thumb">The GUIStyle to use for displaying draggable thumb. If left out, the horizontalSliderThumb style from the current GUISkin is used.</param>
- <returns>
- <para>The value that has been set by the user.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUI.Label(UnityEngine.Rect,System.String)">
- <summary>
- <para>Make a text or texture label on screen.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the label.</param>
- <param name="text">Text to display on the label.</param>
- <param name="image">Texture to display on the label.</param>
- <param name="content">Text, image and tooltip for this label.</param>
- <param name="style">The style to use. If left out, the label style from the current GUISkin is used.</param>
- </member>
- <member name="M:UnityEngine.GUI.Label(UnityEngine.Rect,UnityEngine.Texture)">
- <summary>
- <para>Make a text or texture label on screen.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the label.</param>
- <param name="text">Text to display on the label.</param>
- <param name="image">Texture to display on the label.</param>
- <param name="content">Text, image and tooltip for this label.</param>
- <param name="style">The style to use. If left out, the label style from the current GUISkin is used.</param>
- </member>
- <member name="M:UnityEngine.GUI.Label(UnityEngine.Rect,UnityEngine.GUIContent)">
- <summary>
- <para>Make a text or texture label on screen.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the label.</param>
- <param name="text">Text to display on the label.</param>
- <param name="image">Texture to display on the label.</param>
- <param name="content">Text, image and tooltip for this label.</param>
- <param name="style">The style to use. If left out, the label style from the current GUISkin is used.</param>
- </member>
- <member name="M:UnityEngine.GUI.Label(UnityEngine.Rect,System.String,UnityEngine.GUIStyle)">
- <summary>
- <para>Make a text or texture label on screen.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the label.</param>
- <param name="text">Text to display on the label.</param>
- <param name="image">Texture to display on the label.</param>
- <param name="content">Text, image and tooltip for this label.</param>
- <param name="style">The style to use. If left out, the label style from the current GUISkin is used.</param>
- </member>
- <member name="M:UnityEngine.GUI.Label(UnityEngine.Rect,UnityEngine.Texture,UnityEngine.GUIStyle)">
- <summary>
- <para>Make a text or texture label on screen.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the label.</param>
- <param name="text">Text to display on the label.</param>
- <param name="image">Texture to display on the label.</param>
- <param name="content">Text, image and tooltip for this label.</param>
- <param name="style">The style to use. If left out, the label style from the current GUISkin is used.</param>
- </member>
- <member name="M:UnityEngine.GUI.Label(UnityEngine.Rect,UnityEngine.GUIContent,UnityEngine.GUIStyle)">
- <summary>
- <para>Make a text or texture label on screen.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the label.</param>
- <param name="text">Text to display on the label.</param>
- <param name="image">Texture to display on the label.</param>
- <param name="content">Text, image and tooltip for this label.</param>
- <param name="style">The style to use. If left out, the label style from the current GUISkin is used.</param>
- </member>
- <member name="M:UnityEngine.GUI.ModalWindow">
- <summary>
- <para>Show a Modal Window.</para>
- </summary>
- <param name="id">A unique id number.</param>
- <param name="clientRect">Position and size of the window.</param>
- <param name="func">A function which contains the immediate mode GUI code to draw the contents of your window.</param>
- <param name="text">Text to appear in the title-bar area of the window, if any.</param>
- <param name="image">An image to appear in the title bar of the window, if any.</param>
- <param name="content">GUIContent to appear in the title bar of the window, if any.</param>
- <param name="style">Style to apply to the window.</param>
- </member>
- <member name="M:UnityEngine.GUI.ModalWindow(System.Int32,UnityEngine.Rect,UnityEngine.GUI/WindowFunction,System.String)">
- <summary>
- <para>Show a Modal Window.</para>
- </summary>
- <param name="id">A unique id number.</param>
- <param name="clientRect">Position and size of the window.</param>
- <param name="func">A function which contains the immediate mode GUI code to draw the contents of your window.</param>
- <param name="text">Text to appear in the title-bar area of the window, if any.</param>
- <param name="image">An image to appear in the title bar of the window, if any.</param>
- <param name="content">GUIContent to appear in the title bar of the window, if any.</param>
- <param name="style">Style to apply to the window.</param>
- </member>
- <member name="M:UnityEngine.GUI.ModalWindow(System.Int32,UnityEngine.Rect,UnityEngine.GUI/WindowFunction,UnityEngine.Texture)">
- <summary>
- <para>Show a Modal Window.</para>
- </summary>
- <param name="id">A unique id number.</param>
- <param name="clientRect">Position and size of the window.</param>
- <param name="func">A function which contains the immediate mode GUI code to draw the contents of your window.</param>
- <param name="text">Text to appear in the title-bar area of the window, if any.</param>
- <param name="image">An image to appear in the title bar of the window, if any.</param>
- <param name="content">GUIContent to appear in the title bar of the window, if any.</param>
- <param name="style">Style to apply to the window.</param>
- </member>
- <member name="M:UnityEngine.GUI.ModalWindow(System.Int32,UnityEngine.Rect,UnityEngine.GUI/WindowFunction,UnityEngine.GUIContent)">
- <summary>
- <para>Show a Modal Window.</para>
- </summary>
- <param name="id">A unique id number.</param>
- <param name="clientRect">Position and size of the window.</param>
- <param name="func">A function which contains the immediate mode GUI code to draw the contents of your window.</param>
- <param name="text">Text to appear in the title-bar area of the window, if any.</param>
- <param name="image">An image to appear in the title bar of the window, if any.</param>
- <param name="content">GUIContent to appear in the title bar of the window, if any.</param>
- <param name="style">Style to apply to the window.</param>
- </member>
- <member name="M:UnityEngine.GUI.ModalWindow(System.Int32,UnityEngine.Rect,UnityEngine.GUI/WindowFunction,System.String,UnityEngine.GUIStyle)">
- <summary>
- <para>Show a Modal Window.</para>
- </summary>
- <param name="id">A unique id number.</param>
- <param name="clientRect">Position and size of the window.</param>
- <param name="func">A function which contains the immediate mode GUI code to draw the contents of your window.</param>
- <param name="text">Text to appear in the title-bar area of the window, if any.</param>
- <param name="image">An image to appear in the title bar of the window, if any.</param>
- <param name="content">GUIContent to appear in the title bar of the window, if any.</param>
- <param name="style">Style to apply to the window.</param>
- </member>
- <member name="M:UnityEngine.GUI.ModalWindow(System.Int32,UnityEngine.Rect,UnityEngine.GUI/WindowFunction,UnityEngine.Texture,UnityEngine.GUIStyle)">
- <summary>
- <para>Show a Modal Window.</para>
- </summary>
- <param name="id">A unique id number.</param>
- <param name="clientRect">Position and size of the window.</param>
- <param name="func">A function which contains the immediate mode GUI code to draw the contents of your window.</param>
- <param name="text">Text to appear in the title-bar area of the window, if any.</param>
- <param name="image">An image to appear in the title bar of the window, if any.</param>
- <param name="content">GUIContent to appear in the title bar of the window, if any.</param>
- <param name="style">Style to apply to the window.</param>
- </member>
- <member name="M:UnityEngine.GUI.ModalWindow(System.Int32,UnityEngine.Rect,UnityEngine.GUI/WindowFunction,UnityEngine.GUIContent,UnityEngine.GUIStyle)">
- <summary>
- <para>Show a Modal Window.</para>
- </summary>
- <param name="id">A unique id number.</param>
- <param name="clientRect">Position and size of the window.</param>
- <param name="func">A function which contains the immediate mode GUI code to draw the contents of your window.</param>
- <param name="text">Text to appear in the title-bar area of the window, if any.</param>
- <param name="image">An image to appear in the title bar of the window, if any.</param>
- <param name="content">GUIContent to appear in the title bar of the window, if any.</param>
- <param name="style">Style to apply to the window.</param>
- </member>
- <member name="M:UnityEngine.GUI.ModalWindow">
- <summary>
- <para>Show a Modal Window.</para>
- </summary>
- <param name="id">A unique id number.</param>
- <param name="clientRect">Position and size of the window.</param>
- <param name="func">A function which contains the immediate mode GUI code to draw the contents of your window.</param>
- <param name="text">Text to appear in the title-bar area of the window, if any.</param>
- <param name="image">An image to appear in the title bar of the window, if any.</param>
- <param name="content">GUIContent to appear in the title bar of the window, if any.</param>
- <param name="style">Style to apply to the window.</param>
- </member>
- <member name="M:UnityEngine.GUI.PasswordField(UnityEngine.Rect,System.String,System.Char)">
- <summary>
- <para>Make a text field where the user can enter a password.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the text field.</param>
- <param name="password">Password to edit. The return value of this function should be assigned back to the string as shown in the example.</param>
- <param name="maskChar">Character to mask the password with.</param>
- <param name="maxLength">The maximum length of the string. If left out, the user can type for ever and ever.</param>
- <param name="style">The style to use. If left out, the textField style from the current GUISkin is used.</param>
- <returns>
- <para>The edited password.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUI.PasswordField(UnityEngine.Rect,System.String,System.Char,System.Int32)">
- <summary>
- <para>Make a text field where the user can enter a password.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the text field.</param>
- <param name="password">Password to edit. The return value of this function should be assigned back to the string as shown in the example.</param>
- <param name="maskChar">Character to mask the password with.</param>
- <param name="maxLength">The maximum length of the string. If left out, the user can type for ever and ever.</param>
- <param name="style">The style to use. If left out, the textField style from the current GUISkin is used.</param>
- <returns>
- <para>The edited password.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUI.PasswordField(UnityEngine.Rect,System.String,System.Char,UnityEngine.GUIStyle)">
- <summary>
- <para>Make a text field where the user can enter a password.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the text field.</param>
- <param name="password">Password to edit. The return value of this function should be assigned back to the string as shown in the example.</param>
- <param name="maskChar">Character to mask the password with.</param>
- <param name="maxLength">The maximum length of the string. If left out, the user can type for ever and ever.</param>
- <param name="style">The style to use. If left out, the textField style from the current GUISkin is used.</param>
- <returns>
- <para>The edited password.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUI.PasswordField(UnityEngine.Rect,System.String,System.Char,System.Int32,UnityEngine.GUIStyle)">
- <summary>
- <para>Make a text field where the user can enter a password.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the text field.</param>
- <param name="password">Password to edit. The return value of this function should be assigned back to the string as shown in the example.</param>
- <param name="maskChar">Character to mask the password with.</param>
- <param name="maxLength">The maximum length of the string. If left out, the user can type for ever and ever.</param>
- <param name="style">The style to use. If left out, the textField style from the current GUISkin is used.</param>
- <returns>
- <para>The edited password.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUI.RepeatButton(UnityEngine.Rect,System.String)">
- <summary>
- <para>Make a button that is active as long as the user holds it down.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the button.</param>
- <param name="text">Text to display on the button.</param>
- <param name="image">Texture to display on the button.</param>
- <param name="content">Text, image and tooltip for this button.</param>
- <param name="style">The style to use. If left out, the button style from the current GUISkin is used.</param>
- <returns>
- <para>True when the users clicks the button.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUI.RepeatButton(UnityEngine.Rect,UnityEngine.Texture)">
- <summary>
- <para>Make a button that is active as long as the user holds it down.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the button.</param>
- <param name="text">Text to display on the button.</param>
- <param name="image">Texture to display on the button.</param>
- <param name="content">Text, image and tooltip for this button.</param>
- <param name="style">The style to use. If left out, the button style from the current GUISkin is used.</param>
- <returns>
- <para>True when the users clicks the button.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUI.RepeatButton(UnityEngine.Rect,UnityEngine.GUIContent)">
- <summary>
- <para>Make a button that is active as long as the user holds it down.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the button.</param>
- <param name="text">Text to display on the button.</param>
- <param name="image">Texture to display on the button.</param>
- <param name="content">Text, image and tooltip for this button.</param>
- <param name="style">The style to use. If left out, the button style from the current GUISkin is used.</param>
- <returns>
- <para>True when the users clicks the button.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUI.RepeatButton(UnityEngine.Rect,System.String,UnityEngine.GUIStyle)">
- <summary>
- <para>Make a button that is active as long as the user holds it down.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the button.</param>
- <param name="text">Text to display on the button.</param>
- <param name="image">Texture to display on the button.</param>
- <param name="content">Text, image and tooltip for this button.</param>
- <param name="style">The style to use. If left out, the button style from the current GUISkin is used.</param>
- <returns>
- <para>True when the users clicks the button.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUI.RepeatButton(UnityEngine.Rect,UnityEngine.Texture,UnityEngine.GUIStyle)">
- <summary>
- <para>Make a button that is active as long as the user holds it down.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the button.</param>
- <param name="text">Text to display on the button.</param>
- <param name="image">Texture to display on the button.</param>
- <param name="content">Text, image and tooltip for this button.</param>
- <param name="style">The style to use. If left out, the button style from the current GUISkin is used.</param>
- <returns>
- <para>True when the users clicks the button.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUI.RepeatButton(UnityEngine.Rect,UnityEngine.GUIContent,UnityEngine.GUIStyle)">
- <summary>
- <para>Make a button that is active as long as the user holds it down.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the button.</param>
- <param name="text">Text to display on the button.</param>
- <param name="image">Texture to display on the button.</param>
- <param name="content">Text, image and tooltip for this button.</param>
- <param name="style">The style to use. If left out, the button style from the current GUISkin is used.</param>
- <returns>
- <para>True when the users clicks the button.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUI.ScrollTo(UnityEngine.Rect)">
- <summary>
- <para>Scrolls all enclosing scrollviews so they try to make position visible.</para>
- </summary>
- <param name="position"></param>
- </member>
- <member name="T:UnityEngine.GUI.ScrollViewScope">
- <summary>
- <para>Disposable helper class for managing BeginScrollView / EndScrollView.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUI.ScrollViewScope.handleScrollWheel">
- <summary>
- <para>Whether this ScrollView should handle scroll wheel events. (default: true).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUI.ScrollViewScope.scrollPosition">
- <summary>
- <para>The modified scrollPosition. Feed this back into the variable you pass in, as shown in the example.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.GUI.ScrollViewScope.#ctor(UnityEngine.Rect,UnityEngine.Vector2,UnityEngine.Rect)">
- <summary>
- <para>Create a new ScrollViewScope and begin the corresponding ScrollView.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the ScrollView.</param>
- <param name="scrollPosition">The pixel distance that the view is scrolled in the X and Y directions.</param>
- <param name="viewRect">The rectangle used inside the scrollview.</param>
- <param name="alwaysShowHorizontal">Optional parameter to always show the horizontal scrollbar. If false or left out, it is only shown when clientRect is wider than position.</param>
- <param name="alwaysShowVertical">Optional parameter to always show the vertical scrollbar. If false or left out, it is only shown when clientRect is taller than position.</param>
- <param name="horizontalScrollbar">Optional GUIStyle to use for the horizontal scrollbar. If left out, the horizontalScrollbar style from the current GUISkin is used.</param>
- <param name="verticalScrollbar">Optional GUIStyle to use for the vertical scrollbar. If left out, the verticalScrollbar style from the current GUISkin is used.</param>
- </member>
- <member name="M:UnityEngine.GUI.ScrollViewScope.#ctor(UnityEngine.Rect,UnityEngine.Vector2,UnityEngine.Rect,System.Boolean,System.Boolean)">
- <summary>
- <para>Create a new ScrollViewScope and begin the corresponding ScrollView.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the ScrollView.</param>
- <param name="scrollPosition">The pixel distance that the view is scrolled in the X and Y directions.</param>
- <param name="viewRect">The rectangle used inside the scrollview.</param>
- <param name="alwaysShowHorizontal">Optional parameter to always show the horizontal scrollbar. If false or left out, it is only shown when clientRect is wider than position.</param>
- <param name="alwaysShowVertical">Optional parameter to always show the vertical scrollbar. If false or left out, it is only shown when clientRect is taller than position.</param>
- <param name="horizontalScrollbar">Optional GUIStyle to use for the horizontal scrollbar. If left out, the horizontalScrollbar style from the current GUISkin is used.</param>
- <param name="verticalScrollbar">Optional GUIStyle to use for the vertical scrollbar. If left out, the verticalScrollbar style from the current GUISkin is used.</param>
- </member>
- <member name="M:UnityEngine.GUI.ScrollViewScope.#ctor(UnityEngine.Rect,UnityEngine.Vector2,UnityEngine.Rect,UnityEngine.GUIStyle,UnityEngine.GUIStyle)">
- <summary>
- <para>Create a new ScrollViewScope and begin the corresponding ScrollView.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the ScrollView.</param>
- <param name="scrollPosition">The pixel distance that the view is scrolled in the X and Y directions.</param>
- <param name="viewRect">The rectangle used inside the scrollview.</param>
- <param name="alwaysShowHorizontal">Optional parameter to always show the horizontal scrollbar. If false or left out, it is only shown when clientRect is wider than position.</param>
- <param name="alwaysShowVertical">Optional parameter to always show the vertical scrollbar. If false or left out, it is only shown when clientRect is taller than position.</param>
- <param name="horizontalScrollbar">Optional GUIStyle to use for the horizontal scrollbar. If left out, the horizontalScrollbar style from the current GUISkin is used.</param>
- <param name="verticalScrollbar">Optional GUIStyle to use for the vertical scrollbar. If left out, the verticalScrollbar style from the current GUISkin is used.</param>
- </member>
- <member name="M:UnityEngine.GUI.ScrollViewScope.#ctor(UnityEngine.Rect,UnityEngine.Vector2,UnityEngine.Rect,System.Boolean,System.Boolean,UnityEngine.GUIStyle,UnityEngine.GUIStyle)">
- <summary>
- <para>Create a new ScrollViewScope and begin the corresponding ScrollView.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the ScrollView.</param>
- <param name="scrollPosition">The pixel distance that the view is scrolled in the X and Y directions.</param>
- <param name="viewRect">The rectangle used inside the scrollview.</param>
- <param name="alwaysShowHorizontal">Optional parameter to always show the horizontal scrollbar. If false or left out, it is only shown when clientRect is wider than position.</param>
- <param name="alwaysShowVertical">Optional parameter to always show the vertical scrollbar. If false or left out, it is only shown when clientRect is taller than position.</param>
- <param name="horizontalScrollbar">Optional GUIStyle to use for the horizontal scrollbar. If left out, the horizontalScrollbar style from the current GUISkin is used.</param>
- <param name="verticalScrollbar">Optional GUIStyle to use for the vertical scrollbar. If left out, the verticalScrollbar style from the current GUISkin is used.</param>
- </member>
- <member name="M:UnityEngine.GUI.SelectionGrid(UnityEngine.Rect,System.Int32,System.String[],System.Int32)">
- <summary>
- <para>Make a grid of buttons.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the grid.</param>
- <param name="selected">The index of the selected grid button.</param>
- <param name="texts">An array of strings to show on the grid buttons.</param>
- <param name="images">An array of textures on the grid buttons.</param>
- <param name="contents">An array of text, image and tooltips for the grid button.</param>
- <param name="xCount">How many elements to fit in the horizontal direction. The controls will be scaled to fit unless the style defines a fixedWidth to use.</param>
- <param name="style">The style to use. If left out, the button style from the current GUISkin is used.</param>
- <param name="content"></param>
- <returns>
- <para>The index of the selected button.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUI.SelectionGrid(UnityEngine.Rect,System.Int32,UnityEngine.Texture[],System.Int32)">
- <summary>
- <para>Make a grid of buttons.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the grid.</param>
- <param name="selected">The index of the selected grid button.</param>
- <param name="texts">An array of strings to show on the grid buttons.</param>
- <param name="images">An array of textures on the grid buttons.</param>
- <param name="contents">An array of text, image and tooltips for the grid button.</param>
- <param name="xCount">How many elements to fit in the horizontal direction. The controls will be scaled to fit unless the style defines a fixedWidth to use.</param>
- <param name="style">The style to use. If left out, the button style from the current GUISkin is used.</param>
- <param name="content"></param>
- <returns>
- <para>The index of the selected button.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUI.SelectionGrid(UnityEngine.Rect,System.Int32,UnityEngine.GUIContent[],System.Int32)">
- <summary>
- <para>Make a grid of buttons.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the grid.</param>
- <param name="selected">The index of the selected grid button.</param>
- <param name="texts">An array of strings to show on the grid buttons.</param>
- <param name="images">An array of textures on the grid buttons.</param>
- <param name="contents">An array of text, image and tooltips for the grid button.</param>
- <param name="xCount">How many elements to fit in the horizontal direction. The controls will be scaled to fit unless the style defines a fixedWidth to use.</param>
- <param name="style">The style to use. If left out, the button style from the current GUISkin is used.</param>
- <param name="content"></param>
- <returns>
- <para>The index of the selected button.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUI.SelectionGrid(UnityEngine.Rect,System.Int32,System.String[],System.Int32,UnityEngine.GUIStyle)">
- <summary>
- <para>Make a grid of buttons.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the grid.</param>
- <param name="selected">The index of the selected grid button.</param>
- <param name="texts">An array of strings to show on the grid buttons.</param>
- <param name="images">An array of textures on the grid buttons.</param>
- <param name="contents">An array of text, image and tooltips for the grid button.</param>
- <param name="xCount">How many elements to fit in the horizontal direction. The controls will be scaled to fit unless the style defines a fixedWidth to use.</param>
- <param name="style">The style to use. If left out, the button style from the current GUISkin is used.</param>
- <param name="content"></param>
- <returns>
- <para>The index of the selected button.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUI.SelectionGrid(UnityEngine.Rect,System.Int32,UnityEngine.Texture[],System.Int32,UnityEngine.GUIStyle)">
- <summary>
- <para>Make a grid of buttons.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the grid.</param>
- <param name="selected">The index of the selected grid button.</param>
- <param name="texts">An array of strings to show on the grid buttons.</param>
- <param name="images">An array of textures on the grid buttons.</param>
- <param name="contents">An array of text, image and tooltips for the grid button.</param>
- <param name="xCount">How many elements to fit in the horizontal direction. The controls will be scaled to fit unless the style defines a fixedWidth to use.</param>
- <param name="style">The style to use. If left out, the button style from the current GUISkin is used.</param>
- <param name="content"></param>
- <returns>
- <para>The index of the selected button.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUI.SelectionGrid(UnityEngine.Rect,System.Int32,UnityEngine.GUIContent[],System.Int32,UnityEngine.GUIStyle)">
- <summary>
- <para>Make a grid of buttons.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the grid.</param>
- <param name="selected">The index of the selected grid button.</param>
- <param name="texts">An array of strings to show on the grid buttons.</param>
- <param name="images">An array of textures on the grid buttons.</param>
- <param name="contents">An array of text, image and tooltips for the grid button.</param>
- <param name="xCount">How many elements to fit in the horizontal direction. The controls will be scaled to fit unless the style defines a fixedWidth to use.</param>
- <param name="style">The style to use. If left out, the button style from the current GUISkin is used.</param>
- <param name="content"></param>
- <returns>
- <para>The index of the selected button.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUI.SetNextControlName(System.String)">
- <summary>
- <para>Set the name of the next control.</para>
- </summary>
- <param name="name"></param>
- </member>
- <member name="M:UnityEngine.GUI.TextArea(UnityEngine.Rect,System.String)">
- <summary>
- <para>Make a Multi-line text area where the user can edit a string.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the text field.</param>
- <param name="text">Text to edit. The return value of this function should be assigned back to the string as shown in the example.</param>
- <param name="maxLength">The maximum length of the string. If left out, the user can type for ever and ever.</param>
- <param name="style">The style to use. If left out, the textArea style from the current GUISkin is used.</param>
- <returns>
- <para>The edited string.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUI.TextArea(UnityEngine.Rect,System.String,System.Int32)">
- <summary>
- <para>Make a Multi-line text area where the user can edit a string.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the text field.</param>
- <param name="text">Text to edit. The return value of this function should be assigned back to the string as shown in the example.</param>
- <param name="maxLength">The maximum length of the string. If left out, the user can type for ever and ever.</param>
- <param name="style">The style to use. If left out, the textArea style from the current GUISkin is used.</param>
- <returns>
- <para>The edited string.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUI.TextArea(UnityEngine.Rect,System.String,UnityEngine.GUIStyle)">
- <summary>
- <para>Make a Multi-line text area where the user can edit a string.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the text field.</param>
- <param name="text">Text to edit. The return value of this function should be assigned back to the string as shown in the example.</param>
- <param name="maxLength">The maximum length of the string. If left out, the user can type for ever and ever.</param>
- <param name="style">The style to use. If left out, the textArea style from the current GUISkin is used.</param>
- <returns>
- <para>The edited string.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUI.TextArea(UnityEngine.Rect,System.String,System.Int32,UnityEngine.GUIStyle)">
- <summary>
- <para>Make a Multi-line text area where the user can edit a string.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the text field.</param>
- <param name="text">Text to edit. The return value of this function should be assigned back to the string as shown in the example.</param>
- <param name="maxLength">The maximum length of the string. If left out, the user can type for ever and ever.</param>
- <param name="style">The style to use. If left out, the textArea style from the current GUISkin is used.</param>
- <returns>
- <para>The edited string.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUI.TextField(UnityEngine.Rect,System.String)">
- <summary>
- <para>Make a single-line text field where the user can edit a string.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the text field.</param>
- <param name="text">Text to edit. The return value of this function should be assigned back to the string as shown in the example.</param>
- <param name="maxLength">The maximum length of the string. If left out, the user can type for ever and ever.</param>
- <param name="style">The style to use. If left out, the textField style from the current GUISkin is used.</param>
- <returns>
- <para>The edited string.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUI.TextField(UnityEngine.Rect,System.String,System.Int32)">
- <summary>
- <para>Make a single-line text field where the user can edit a string.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the text field.</param>
- <param name="text">Text to edit. The return value of this function should be assigned back to the string as shown in the example.</param>
- <param name="maxLength">The maximum length of the string. If left out, the user can type for ever and ever.</param>
- <param name="style">The style to use. If left out, the textField style from the current GUISkin is used.</param>
- <returns>
- <para>The edited string.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUI.TextField(UnityEngine.Rect,System.String,UnityEngine.GUIStyle)">
- <summary>
- <para>Make a single-line text field where the user can edit a string.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the text field.</param>
- <param name="text">Text to edit. The return value of this function should be assigned back to the string as shown in the example.</param>
- <param name="maxLength">The maximum length of the string. If left out, the user can type for ever and ever.</param>
- <param name="style">The style to use. If left out, the textField style from the current GUISkin is used.</param>
- <returns>
- <para>The edited string.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUI.TextField(UnityEngine.Rect,System.String,System.Int32,UnityEngine.GUIStyle)">
- <summary>
- <para>Make a single-line text field where the user can edit a string.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the text field.</param>
- <param name="text">Text to edit. The return value of this function should be assigned back to the string as shown in the example.</param>
- <param name="maxLength">The maximum length of the string. If left out, the user can type for ever and ever.</param>
- <param name="style">The style to use. If left out, the textField style from the current GUISkin is used.</param>
- <returns>
- <para>The edited string.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUI.Toggle(UnityEngine.Rect,System.Boolean,System.String)">
- <summary>
- <para>Make an on/off toggle button.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the button.</param>
- <param name="value">Is this button on or off?</param>
- <param name="text">Text to display on the button.</param>
- <param name="image">Texture to display on the button.</param>
- <param name="content">Text, image and tooltip for this button.</param>
- <param name="style">The style to use. If left out, the toggle style from the current GUISkin is used.</param>
- <returns>
- <para>The new value of the button.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUI.Toggle(UnityEngine.Rect,System.Boolean,UnityEngine.Texture)">
- <summary>
- <para>Make an on/off toggle button.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the button.</param>
- <param name="value">Is this button on or off?</param>
- <param name="text">Text to display on the button.</param>
- <param name="image">Texture to display on the button.</param>
- <param name="content">Text, image and tooltip for this button.</param>
- <param name="style">The style to use. If left out, the toggle style from the current GUISkin is used.</param>
- <returns>
- <para>The new value of the button.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUI.Toggle(UnityEngine.Rect,System.Boolean,UnityEngine.GUIContent)">
- <summary>
- <para>Make an on/off toggle button.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the button.</param>
- <param name="value">Is this button on or off?</param>
- <param name="text">Text to display on the button.</param>
- <param name="image">Texture to display on the button.</param>
- <param name="content">Text, image and tooltip for this button.</param>
- <param name="style">The style to use. If left out, the toggle style from the current GUISkin is used.</param>
- <returns>
- <para>The new value of the button.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUI.Toggle(UnityEngine.Rect,System.Boolean,System.String,UnityEngine.GUIStyle)">
- <summary>
- <para>Make an on/off toggle button.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the button.</param>
- <param name="value">Is this button on or off?</param>
- <param name="text">Text to display on the button.</param>
- <param name="image">Texture to display on the button.</param>
- <param name="content">Text, image and tooltip for this button.</param>
- <param name="style">The style to use. If left out, the toggle style from the current GUISkin is used.</param>
- <returns>
- <para>The new value of the button.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUI.Toggle(UnityEngine.Rect,System.Boolean,UnityEngine.Texture,UnityEngine.GUIStyle)">
- <summary>
- <para>Make an on/off toggle button.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the button.</param>
- <param name="value">Is this button on or off?</param>
- <param name="text">Text to display on the button.</param>
- <param name="image">Texture to display on the button.</param>
- <param name="content">Text, image and tooltip for this button.</param>
- <param name="style">The style to use. If left out, the toggle style from the current GUISkin is used.</param>
- <returns>
- <para>The new value of the button.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUI.Toggle(UnityEngine.Rect,System.Boolean,UnityEngine.GUIContent,UnityEngine.GUIStyle)">
- <summary>
- <para>Make an on/off toggle button.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the button.</param>
- <param name="value">Is this button on or off?</param>
- <param name="text">Text to display on the button.</param>
- <param name="image">Texture to display on the button.</param>
- <param name="content">Text, image and tooltip for this button.</param>
- <param name="style">The style to use. If left out, the toggle style from the current GUISkin is used.</param>
- <returns>
- <para>The new value of the button.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUI.Toolbar(UnityEngine.Rect,System.Int32,System.String[])">
- <summary>
- <para>Make a toolbar.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the toolbar.</param>
- <param name="selected">The index of the selected button.</param>
- <param name="texts">An array of strings to show on the toolbar buttons.</param>
- <param name="images">An array of textures on the toolbar buttons.</param>
- <param name="contents">An array of text, image and tooltips for the toolbar buttons.</param>
- <param name="style">The style to use. If left out, the button style from the current GUISkin is used.</param>
- <param name="buttonSize">Determines how toolbar button size is calculated.</param>
- <returns>
- <para>The index of the selected button.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUI.Toolbar(UnityEngine.Rect,System.Int32,UnityEngine.Texture[])">
- <summary>
- <para>Make a toolbar.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the toolbar.</param>
- <param name="selected">The index of the selected button.</param>
- <param name="texts">An array of strings to show on the toolbar buttons.</param>
- <param name="images">An array of textures on the toolbar buttons.</param>
- <param name="contents">An array of text, image and tooltips for the toolbar buttons.</param>
- <param name="style">The style to use. If left out, the button style from the current GUISkin is used.</param>
- <param name="buttonSize">Determines how toolbar button size is calculated.</param>
- <returns>
- <para>The index of the selected button.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUI.Toolbar(UnityEngine.Rect,System.Int32,UnityEngine.GUIContent[])">
- <summary>
- <para>Make a toolbar.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the toolbar.</param>
- <param name="selected">The index of the selected button.</param>
- <param name="texts">An array of strings to show on the toolbar buttons.</param>
- <param name="images">An array of textures on the toolbar buttons.</param>
- <param name="contents">An array of text, image and tooltips for the toolbar buttons.</param>
- <param name="style">The style to use. If left out, the button style from the current GUISkin is used.</param>
- <param name="buttonSize">Determines how toolbar button size is calculated.</param>
- <returns>
- <para>The index of the selected button.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUI.Toolbar(UnityEngine.Rect,System.Int32,System.String[],UnityEngine.GUIStyle)">
- <summary>
- <para>Make a toolbar.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the toolbar.</param>
- <param name="selected">The index of the selected button.</param>
- <param name="texts">An array of strings to show on the toolbar buttons.</param>
- <param name="images">An array of textures on the toolbar buttons.</param>
- <param name="contents">An array of text, image and tooltips for the toolbar buttons.</param>
- <param name="style">The style to use. If left out, the button style from the current GUISkin is used.</param>
- <param name="buttonSize">Determines how toolbar button size is calculated.</param>
- <returns>
- <para>The index of the selected button.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUI.Toolbar(UnityEngine.Rect,System.Int32,UnityEngine.Texture[],UnityEngine.GUIStyle)">
- <summary>
- <para>Make a toolbar.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the toolbar.</param>
- <param name="selected">The index of the selected button.</param>
- <param name="texts">An array of strings to show on the toolbar buttons.</param>
- <param name="images">An array of textures on the toolbar buttons.</param>
- <param name="contents">An array of text, image and tooltips for the toolbar buttons.</param>
- <param name="style">The style to use. If left out, the button style from the current GUISkin is used.</param>
- <param name="buttonSize">Determines how toolbar button size is calculated.</param>
- <returns>
- <para>The index of the selected button.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUI.Toolbar(UnityEngine.Rect,System.Int32,UnityEngine.GUIContent[],UnityEngine.GUIStyle)">
- <summary>
- <para>Make a toolbar.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the toolbar.</param>
- <param name="selected">The index of the selected button.</param>
- <param name="texts">An array of strings to show on the toolbar buttons.</param>
- <param name="images">An array of textures on the toolbar buttons.</param>
- <param name="contents">An array of text, image and tooltips for the toolbar buttons.</param>
- <param name="style">The style to use. If left out, the button style from the current GUISkin is used.</param>
- <param name="buttonSize">Determines how toolbar button size is calculated.</param>
- <returns>
- <para>The index of the selected button.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUI.Toolbar(UnityEngine.Rect,System.Int32,UnityEngine.GUIContent[],UnityEngine.GUIStyle,UnityEngine.GUI/ToolbarButtonSize)">
- <summary>
- <para>Make a toolbar.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the toolbar.</param>
- <param name="selected">The index of the selected button.</param>
- <param name="texts">An array of strings to show on the toolbar buttons.</param>
- <param name="images">An array of textures on the toolbar buttons.</param>
- <param name="contents">An array of text, image and tooltips for the toolbar buttons.</param>
- <param name="style">The style to use. If left out, the button style from the current GUISkin is used.</param>
- <param name="buttonSize">Determines how toolbar button size is calculated.</param>
- <returns>
- <para>The index of the selected button.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.GUI.ToolbarButtonSize">
- <summary>
- <para>Determines how toolbar button size is calculated.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.GUI.ToolbarButtonSize.FitToContents">
- <summary>
- <para>The width of each toolbar button is calculated based on the width of its content.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.GUI.ToolbarButtonSize.Fixed">
- <summary>
- <para>Calculates the button size by dividing the available width by the number of buttons. The minimum size is the maximum content width.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.GUI.UnfocusWindow">
- <summary>
- <para>Remove focus from all windows.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.GUI.VerticalScrollbar(UnityEngine.Rect,System.Single,System.Single,System.Single,System.Single)">
- <summary>
- <para>Make a vertical scrollbar. Scrollbars are what you use to scroll through a document. Most likely, you want to use scrollViews instead.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the scrollbar.</param>
- <param name="value">The position between min and max.</param>
- <param name="size">How much can we see?</param>
- <param name="topValue">The value at the top of the scrollbar.</param>
- <param name="bottomValue">The value at the bottom of the scrollbar.</param>
- <param name="style">The style to use for the scrollbar background. If left out, the horizontalScrollbar style from the current GUISkin is used.</param>
- <returns>
- <para>The modified value. This can be changed by the user by dragging the scrollbar, or clicking the arrows at the end.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUI.VerticalScrollbar(UnityEngine.Rect,System.Single,System.Single,System.Single,System.Single,UnityEngine.GUIStyle)">
- <summary>
- <para>Make a vertical scrollbar. Scrollbars are what you use to scroll through a document. Most likely, you want to use scrollViews instead.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the scrollbar.</param>
- <param name="value">The position between min and max.</param>
- <param name="size">How much can we see?</param>
- <param name="topValue">The value at the top of the scrollbar.</param>
- <param name="bottomValue">The value at the bottom of the scrollbar.</param>
- <param name="style">The style to use for the scrollbar background. If left out, the horizontalScrollbar style from the current GUISkin is used.</param>
- <returns>
- <para>The modified value. This can be changed by the user by dragging the scrollbar, or clicking the arrows at the end.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUI.VerticalSlider(UnityEngine.Rect,System.Single,System.Single,System.Single)">
- <summary>
- <para>A vertical slider the user can drag to change a value between a min and a max.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the slider.</param>
- <param name="value">The value the slider shows. This determines the position of the draggable thumb.</param>
- <param name="topValue">The value at the top end of the slider.</param>
- <param name="bottomValue">The value at the bottom end of the slider.</param>
- <param name="slider">The GUIStyle to use for displaying the dragging area. If left out, the horizontalSlider style from the current GUISkin is used.</param>
- <param name="thumb">The GUIStyle to use for displaying draggable thumb. If left out, the horizontalSliderThumb style from the current GUISkin is used.</param>
- <returns>
- <para>The value that has been set by the user.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUI.VerticalSlider(UnityEngine.Rect,System.Single,System.Single,System.Single,UnityEngine.GUIStyle,UnityEngine.GUIStyle)">
- <summary>
- <para>A vertical slider the user can drag to change a value between a min and a max.</para>
- </summary>
- <param name="position">Rectangle on the screen to use for the slider.</param>
- <param name="value">The value the slider shows. This determines the position of the draggable thumb.</param>
- <param name="topValue">The value at the top end of the slider.</param>
- <param name="bottomValue">The value at the bottom end of the slider.</param>
- <param name="slider">The GUIStyle to use for displaying the dragging area. If left out, the horizontalSlider style from the current GUISkin is used.</param>
- <param name="thumb">The GUIStyle to use for displaying draggable thumb. If left out, the horizontalSliderThumb style from the current GUISkin is used.</param>
- <returns>
- <para>The value that has been set by the user.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUI.Window(System.Int32,UnityEngine.Rect,UnityEngine.GUI/WindowFunction,System.String)">
- <summary>
- <para>Make a popup window.</para>
- </summary>
- <param name="Style">An optional style to use for the window. If left out, the window style from the current GUISkin is used.</param>
- <param name="id">ID number for the window (can be any value as long as it is unique).</param>
- <param name="clientRect">Onscreen rectangle denoting the window's position and size.</param>
- <param name="func">Script function to display the window's contents.</param>
- <param name="text">Text to render inside the window.</param>
- <param name="image">Image to render inside the window.</param>
- <param name="content">GUIContent to render inside the window.</param>
- <param name="style">Style information for the window.</param>
- <param name="title">Text displayed in the window's title bar.</param>
- <returns>
- <para>Onscreen rectangle denoting the window's position and size.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUI.Window(System.Int32,UnityEngine.Rect,UnityEngine.GUI/WindowFunction,UnityEngine.Texture)">
- <summary>
- <para>Make a popup window.</para>
- </summary>
- <param name="Style">An optional style to use for the window. If left out, the window style from the current GUISkin is used.</param>
- <param name="id">ID number for the window (can be any value as long as it is unique).</param>
- <param name="clientRect">Onscreen rectangle denoting the window's position and size.</param>
- <param name="func">Script function to display the window's contents.</param>
- <param name="text">Text to render inside the window.</param>
- <param name="image">Image to render inside the window.</param>
- <param name="content">GUIContent to render inside the window.</param>
- <param name="style">Style information for the window.</param>
- <param name="title">Text displayed in the window's title bar.</param>
- <returns>
- <para>Onscreen rectangle denoting the window's position and size.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUI.Window(System.Int32,UnityEngine.Rect,UnityEngine.GUI/WindowFunction,UnityEngine.GUIContent)">
- <summary>
- <para>Make a popup window.</para>
- </summary>
- <param name="Style">An optional style to use for the window. If left out, the window style from the current GUISkin is used.</param>
- <param name="id">ID number for the window (can be any value as long as it is unique).</param>
- <param name="clientRect">Onscreen rectangle denoting the window's position and size.</param>
- <param name="func">Script function to display the window's contents.</param>
- <param name="text">Text to render inside the window.</param>
- <param name="image">Image to render inside the window.</param>
- <param name="content">GUIContent to render inside the window.</param>
- <param name="style">Style information for the window.</param>
- <param name="title">Text displayed in the window's title bar.</param>
- <returns>
- <para>Onscreen rectangle denoting the window's position and size.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUI.Window(System.Int32,UnityEngine.Rect,UnityEngine.GUI/WindowFunction,System.String,UnityEngine.GUIStyle)">
- <summary>
- <para>Make a popup window.</para>
- </summary>
- <param name="Style">An optional style to use for the window. If left out, the window style from the current GUISkin is used.</param>
- <param name="id">ID number for the window (can be any value as long as it is unique).</param>
- <param name="clientRect">Onscreen rectangle denoting the window's position and size.</param>
- <param name="func">Script function to display the window's contents.</param>
- <param name="text">Text to render inside the window.</param>
- <param name="image">Image to render inside the window.</param>
- <param name="content">GUIContent to render inside the window.</param>
- <param name="style">Style information for the window.</param>
- <param name="title">Text displayed in the window's title bar.</param>
- <returns>
- <para>Onscreen rectangle denoting the window's position and size.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUI.Window(System.Int32,UnityEngine.Rect,UnityEngine.GUI/WindowFunction,UnityEngine.Texture,UnityEngine.GUIStyle)">
- <summary>
- <para>Make a popup window.</para>
- </summary>
- <param name="Style">An optional style to use for the window. If left out, the window style from the current GUISkin is used.</param>
- <param name="id">ID number for the window (can be any value as long as it is unique).</param>
- <param name="clientRect">Onscreen rectangle denoting the window's position and size.</param>
- <param name="func">Script function to display the window's contents.</param>
- <param name="text">Text to render inside the window.</param>
- <param name="image">Image to render inside the window.</param>
- <param name="content">GUIContent to render inside the window.</param>
- <param name="style">Style information for the window.</param>
- <param name="title">Text displayed in the window's title bar.</param>
- <returns>
- <para>Onscreen rectangle denoting the window's position and size.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUI.Window(System.Int32,UnityEngine.Rect,UnityEngine.GUI/WindowFunction,UnityEngine.GUIContent,UnityEngine.GUIStyle)">
- <summary>
- <para>Make a popup window.</para>
- </summary>
- <param name="Style">An optional style to use for the window. If left out, the window style from the current GUISkin is used.</param>
- <param name="id">ID number for the window (can be any value as long as it is unique).</param>
- <param name="clientRect">Onscreen rectangle denoting the window's position and size.</param>
- <param name="func">Script function to display the window's contents.</param>
- <param name="text">Text to render inside the window.</param>
- <param name="image">Image to render inside the window.</param>
- <param name="content">GUIContent to render inside the window.</param>
- <param name="style">Style information for the window.</param>
- <param name="title">Text displayed in the window's title bar.</param>
- <returns>
- <para>Onscreen rectangle denoting the window's position and size.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.GUI.WindowFunction">
- <summary>
- <para>Callback to draw GUI within a window (used with GUI.Window).</para>
- </summary>
- <param name="id"></param>
- </member>
- <member name="T:UnityEngine.GUIContent">
- <summary>
- <para>The contents of a GUI element.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUIContent.image">
- <summary>
- <para>The icon image contained.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.GUIContent.none">
- <summary>
- <para>Shorthand for empty content.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUIContent.text">
- <summary>
- <para>The text contained.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUIContent.tooltip">
- <summary>
- <para>The tooltip of this element.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.GUIContent.#ctor">
- <summary>
- <para>Constructor for GUIContent in all shapes and sizes.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.GUIContent.#ctor(System.String)">
- <summary>
- <para>Build a GUIContent object containing only text.</para>
- </summary>
- <param name="text"></param>
- </member>
- <member name="M:UnityEngine.GUIContent.#ctor(UnityEngine.Texture)">
- <summary>
- <para>Build a GUIContent object containing only an image.</para>
- </summary>
- <param name="image"></param>
- </member>
- <member name="M:UnityEngine.GUIContent.#ctor(System.String,UnityEngine.Texture)">
- <summary>
- <para>Build a GUIContent object containing both text and an image.</para>
- </summary>
- <param name="text"></param>
- <param name="image"></param>
- </member>
- <member name="M:UnityEngine.GUIContent.#ctor(System.String,System.String)">
- <summary>
- <para>Build a GUIContent containing some text. When the user hovers the mouse over it, the global GUI.tooltip is set to the tooltip.</para>
- </summary>
- <param name="text"></param>
- <param name="tooltip"></param>
- </member>
- <member name="M:UnityEngine.GUIContent.#ctor(UnityEngine.Texture,System.String)">
- <summary>
- <para>Build a GUIContent containing an image. When the user hovers the mouse over it, the global GUI.tooltip is set to the tooltip.</para>
- </summary>
- <param name="image"></param>
- <param name="tooltip"></param>
- </member>
- <member name="M:UnityEngine.GUIContent.#ctor(System.String,UnityEngine.Texture,System.String)">
- <summary>
- <para>Build a GUIContent that contains both text, an image and has a tooltip defined. When the user hovers the mouse over it, the global GUI.tooltip is set to the tooltip.</para>
- </summary>
- <param name="text"></param>
- <param name="image"></param>
- <param name="tooltip"></param>
- </member>
- <member name="M:UnityEngine.GUIContent.#ctor(UnityEngine.GUIContent)">
- <summary>
- <para>Build a GUIContent as a copy of another GUIContent.</para>
- </summary>
- <param name="src"></param>
- </member>
- <member name="T:UnityEngine.GUILayout">
- <summary>
- <para>The GUILayout class is the interface for Unity gui with automatic layout.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.GUILayout.AreaScope">
- <summary>
- <para>Disposable helper class for managing BeginArea / EndArea.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.GUILayout.AreaScope.#ctor(UnityEngine.Rect)">
- <summary>
- <para>Create a new AreaScope and begin the corresponding Area.</para>
- </summary>
- <param name="text">Optional text to display in the area.</param>
- <param name="image">Optional texture to display in the area.</param>
- <param name="content">Optional text, image and tooltip top display for this area.</param>
- <param name="style">The style to use. If left out, the empty GUIStyle (GUIStyle.none) is used, giving a transparent background.</param>
- <param name="screenRect"></param>
- </member>
- <member name="M:UnityEngine.GUILayout.AreaScope.#ctor(UnityEngine.Rect,System.String)">
- <summary>
- <para>Create a new AreaScope and begin the corresponding Area.</para>
- </summary>
- <param name="text">Optional text to display in the area.</param>
- <param name="image">Optional texture to display in the area.</param>
- <param name="content">Optional text, image and tooltip top display for this area.</param>
- <param name="style">The style to use. If left out, the empty GUIStyle (GUIStyle.none) is used, giving a transparent background.</param>
- <param name="screenRect"></param>
- </member>
- <member name="M:UnityEngine.GUILayout.AreaScope.#ctor(UnityEngine.Rect,UnityEngine.Texture)">
- <summary>
- <para>Create a new AreaScope and begin the corresponding Area.</para>
- </summary>
- <param name="text">Optional text to display in the area.</param>
- <param name="image">Optional texture to display in the area.</param>
- <param name="content">Optional text, image and tooltip top display for this area.</param>
- <param name="style">The style to use. If left out, the empty GUIStyle (GUIStyle.none) is used, giving a transparent background.</param>
- <param name="screenRect"></param>
- </member>
- <member name="M:UnityEngine.GUILayout.AreaScope.#ctor(UnityEngine.Rect,UnityEngine.GUIContent)">
- <summary>
- <para>Create a new AreaScope and begin the corresponding Area.</para>
- </summary>
- <param name="text">Optional text to display in the area.</param>
- <param name="image">Optional texture to display in the area.</param>
- <param name="content">Optional text, image and tooltip top display for this area.</param>
- <param name="style">The style to use. If left out, the empty GUIStyle (GUIStyle.none) is used, giving a transparent background.</param>
- <param name="screenRect"></param>
- </member>
- <member name="M:UnityEngine.GUILayout.AreaScope.#ctor(UnityEngine.Rect,System.String,UnityEngine.GUIStyle)">
- <summary>
- <para>Create a new AreaScope and begin the corresponding Area.</para>
- </summary>
- <param name="text">Optional text to display in the area.</param>
- <param name="image">Optional texture to display in the area.</param>
- <param name="content">Optional text, image and tooltip top display for this area.</param>
- <param name="style">The style to use. If left out, the empty GUIStyle (GUIStyle.none) is used, giving a transparent background.</param>
- <param name="screenRect"></param>
- </member>
- <member name="M:UnityEngine.GUILayout.AreaScope.#ctor(UnityEngine.Rect,UnityEngine.Texture,UnityEngine.GUIStyle)">
- <summary>
- <para>Create a new AreaScope and begin the corresponding Area.</para>
- </summary>
- <param name="text">Optional text to display in the area.</param>
- <param name="image">Optional texture to display in the area.</param>
- <param name="content">Optional text, image and tooltip top display for this area.</param>
- <param name="style">The style to use. If left out, the empty GUIStyle (GUIStyle.none) is used, giving a transparent background.</param>
- <param name="screenRect"></param>
- </member>
- <member name="M:UnityEngine.GUILayout.AreaScope.#ctor(UnityEngine.Rect,UnityEngine.GUIContent,UnityEngine.GUIStyle)">
- <summary>
- <para>Create a new AreaScope and begin the corresponding Area.</para>
- </summary>
- <param name="text">Optional text to display in the area.</param>
- <param name="image">Optional texture to display in the area.</param>
- <param name="content">Optional text, image and tooltip top display for this area.</param>
- <param name="style">The style to use. If left out, the empty GUIStyle (GUIStyle.none) is used, giving a transparent background.</param>
- <param name="screenRect"></param>
- </member>
- <member name="M:UnityEngine.GUILayout.BeginArea(UnityEngine.Rect)">
- <summary>
- <para>Begin a GUILayout block of GUI controls in a fixed screen area.</para>
- </summary>
- <param name="text">Optional text to display in the area.</param>
- <param name="image">Optional texture to display in the area.</param>
- <param name="content">Optional text, image and tooltip top display for this area.</param>
- <param name="style">The style to use. If left out, the empty GUIStyle (GUIStyle.none) is used, giving a transparent background.</param>
- <param name="screenRect"></param>
- </member>
- <member name="M:UnityEngine.GUILayout.BeginArea(UnityEngine.Rect,System.String)">
- <summary>
- <para>Begin a GUILayout block of GUI controls in a fixed screen area.</para>
- </summary>
- <param name="text">Optional text to display in the area.</param>
- <param name="image">Optional texture to display in the area.</param>
- <param name="content">Optional text, image and tooltip top display for this area.</param>
- <param name="style">The style to use. If left out, the empty GUIStyle (GUIStyle.none) is used, giving a transparent background.</param>
- <param name="screenRect"></param>
- </member>
- <member name="M:UnityEngine.GUILayout.BeginArea(UnityEngine.Rect,UnityEngine.Texture)">
- <summary>
- <para>Begin a GUILayout block of GUI controls in a fixed screen area.</para>
- </summary>
- <param name="text">Optional text to display in the area.</param>
- <param name="image">Optional texture to display in the area.</param>
- <param name="content">Optional text, image and tooltip top display for this area.</param>
- <param name="style">The style to use. If left out, the empty GUIStyle (GUIStyle.none) is used, giving a transparent background.</param>
- <param name="screenRect"></param>
- </member>
- <member name="M:UnityEngine.GUILayout.BeginArea(UnityEngine.Rect,UnityEngine.GUIContent)">
- <summary>
- <para>Begin a GUILayout block of GUI controls in a fixed screen area.</para>
- </summary>
- <param name="text">Optional text to display in the area.</param>
- <param name="image">Optional texture to display in the area.</param>
- <param name="content">Optional text, image and tooltip top display for this area.</param>
- <param name="style">The style to use. If left out, the empty GUIStyle (GUIStyle.none) is used, giving a transparent background.</param>
- <param name="screenRect"></param>
- </member>
- <member name="M:UnityEngine.GUILayout.BeginArea(UnityEngine.Rect,UnityEngine.GUIStyle)">
- <summary>
- <para>Begin a GUILayout block of GUI controls in a fixed screen area.</para>
- </summary>
- <param name="text">Optional text to display in the area.</param>
- <param name="image">Optional texture to display in the area.</param>
- <param name="content">Optional text, image and tooltip top display for this area.</param>
- <param name="style">The style to use. If left out, the empty GUIStyle (GUIStyle.none) is used, giving a transparent background.</param>
- <param name="screenRect"></param>
- </member>
- <member name="M:UnityEngine.GUILayout.BeginArea(UnityEngine.Rect,System.String,UnityEngine.GUIStyle)">
- <summary>
- <para>Begin a GUILayout block of GUI controls in a fixed screen area.</para>
- </summary>
- <param name="text">Optional text to display in the area.</param>
- <param name="image">Optional texture to display in the area.</param>
- <param name="content">Optional text, image and tooltip top display for this area.</param>
- <param name="style">The style to use. If left out, the empty GUIStyle (GUIStyle.none) is used, giving a transparent background.</param>
- <param name="screenRect"></param>
- </member>
- <member name="M:UnityEngine.GUILayout.BeginArea(UnityEngine.Rect,UnityEngine.Texture,UnityEngine.GUIStyle)">
- <summary>
- <para>Begin a GUILayout block of GUI controls in a fixed screen area.</para>
- </summary>
- <param name="text">Optional text to display in the area.</param>
- <param name="image">Optional texture to display in the area.</param>
- <param name="content">Optional text, image and tooltip top display for this area.</param>
- <param name="style">The style to use. If left out, the empty GUIStyle (GUIStyle.none) is used, giving a transparent background.</param>
- <param name="screenRect"></param>
- </member>
- <member name="M:UnityEngine.GUILayout.BeginArea(UnityEngine.Rect,UnityEngine.GUIContent,UnityEngine.GUIStyle)">
- <summary>
- <para>Begin a GUILayout block of GUI controls in a fixed screen area.</para>
- </summary>
- <param name="text">Optional text to display in the area.</param>
- <param name="image">Optional texture to display in the area.</param>
- <param name="content">Optional text, image and tooltip top display for this area.</param>
- <param name="style">The style to use. If left out, the empty GUIStyle (GUIStyle.none) is used, giving a transparent background.</param>
- <param name="screenRect"></param>
- </member>
- <member name="M:UnityEngine.GUILayout.BeginHorizontal(UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Begin a Horizontal control group.</para>
- </summary>
- <param name="text">Text to display on group.</param>
- <param name="image">Texture to display on group.</param>
- <param name="content">Text, image, and tooltip for this group.</param>
- <param name="style">The style to use for background image and padding values. If left out, the background is transparent.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- </member>
- <member name="M:UnityEngine.GUILayout.BeginHorizontal(UnityEngine.GUIStyle,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Begin a Horizontal control group.</para>
- </summary>
- <param name="text">Text to display on group.</param>
- <param name="image">Texture to display on group.</param>
- <param name="content">Text, image, and tooltip for this group.</param>
- <param name="style">The style to use for background image and padding values. If left out, the background is transparent.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- </member>
- <member name="M:UnityEngine.GUILayout.BeginHorizontal(System.String,UnityEngine.GUIStyle,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Begin a Horizontal control group.</para>
- </summary>
- <param name="text">Text to display on group.</param>
- <param name="image">Texture to display on group.</param>
- <param name="content">Text, image, and tooltip for this group.</param>
- <param name="style">The style to use for background image and padding values. If left out, the background is transparent.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- </member>
- <member name="M:UnityEngine.GUILayout.BeginHorizontal(UnityEngine.Texture,UnityEngine.GUIStyle,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Begin a Horizontal control group.</para>
- </summary>
- <param name="text">Text to display on group.</param>
- <param name="image">Texture to display on group.</param>
- <param name="content">Text, image, and tooltip for this group.</param>
- <param name="style">The style to use for background image and padding values. If left out, the background is transparent.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- </member>
- <member name="M:UnityEngine.GUILayout.BeginHorizontal(UnityEngine.GUIContent,UnityEngine.GUIStyle,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Begin a Horizontal control group.</para>
- </summary>
- <param name="text">Text to display on group.</param>
- <param name="image">Texture to display on group.</param>
- <param name="content">Text, image, and tooltip for this group.</param>
- <param name="style">The style to use for background image and padding values. If left out, the background is transparent.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- </member>
- <member name="M:UnityEngine.GUILayout.BeginScrollView(UnityEngine.Vector2,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Begin an automatically laid out scrollview.</para>
- </summary>
- <param name="scrollPosition">The position to use display.</param>
- <param name="alwayShowHorizontal">Optional parameter to always show the horizontal scrollbar. If false or left out, it is only shown when the content inside the ScrollView is wider than the scrollview itself.</param>
- <param name="alwayShowVertical">Optional parameter to always show the vertical scrollbar. If false or left out, it is only shown when content inside the ScrollView is taller than the scrollview itself.</param>
- <param name="horizontalScrollbar">Optional GUIStyle to use for the horizontal scrollbar. If left out, the horizontalScrollbar style from the current GUISkin is used.</param>
- <param name="verticalScrollbar">Optional GUIStyle to use for the vertical scrollbar. If left out, the verticalScrollbar style from the current GUISkin is used.</param>
- <param name="options"></param>
- <param name="alwaysShowHorizontal"></param>
- <param name="alwaysShowVertical"></param>
- <param name="style"></param>
- <param name="background"></param>
- <returns>
- <para>The modified scrollPosition. Feed this back into the variable you pass in, as shown in the example.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayout.BeginScrollView(UnityEngine.Vector2,System.Boolean,System.Boolean,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Begin an automatically laid out scrollview.</para>
- </summary>
- <param name="scrollPosition">The position to use display.</param>
- <param name="alwayShowHorizontal">Optional parameter to always show the horizontal scrollbar. If false or left out, it is only shown when the content inside the ScrollView is wider than the scrollview itself.</param>
- <param name="alwayShowVertical">Optional parameter to always show the vertical scrollbar. If false or left out, it is only shown when content inside the ScrollView is taller than the scrollview itself.</param>
- <param name="horizontalScrollbar">Optional GUIStyle to use for the horizontal scrollbar. If left out, the horizontalScrollbar style from the current GUISkin is used.</param>
- <param name="verticalScrollbar">Optional GUIStyle to use for the vertical scrollbar. If left out, the verticalScrollbar style from the current GUISkin is used.</param>
- <param name="options"></param>
- <param name="alwaysShowHorizontal"></param>
- <param name="alwaysShowVertical"></param>
- <param name="style"></param>
- <param name="background"></param>
- <returns>
- <para>The modified scrollPosition. Feed this back into the variable you pass in, as shown in the example.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayout.BeginScrollView(UnityEngine.Vector2,UnityEngine.GUIStyle,UnityEngine.GUIStyle,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Begin an automatically laid out scrollview.</para>
- </summary>
- <param name="scrollPosition">The position to use display.</param>
- <param name="alwayShowHorizontal">Optional parameter to always show the horizontal scrollbar. If false or left out, it is only shown when the content inside the ScrollView is wider than the scrollview itself.</param>
- <param name="alwayShowVertical">Optional parameter to always show the vertical scrollbar. If false or left out, it is only shown when content inside the ScrollView is taller than the scrollview itself.</param>
- <param name="horizontalScrollbar">Optional GUIStyle to use for the horizontal scrollbar. If left out, the horizontalScrollbar style from the current GUISkin is used.</param>
- <param name="verticalScrollbar">Optional GUIStyle to use for the vertical scrollbar. If left out, the verticalScrollbar style from the current GUISkin is used.</param>
- <param name="options"></param>
- <param name="alwaysShowHorizontal"></param>
- <param name="alwaysShowVertical"></param>
- <param name="style"></param>
- <param name="background"></param>
- <returns>
- <para>The modified scrollPosition. Feed this back into the variable you pass in, as shown in the example.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayout.BeginScrollView(UnityEngine.Vector2,UnityEngine.GUIStyle)">
- <summary>
- <para>Begin an automatically laid out scrollview.</para>
- </summary>
- <param name="scrollPosition">The position to use display.</param>
- <param name="alwayShowHorizontal">Optional parameter to always show the horizontal scrollbar. If false or left out, it is only shown when the content inside the ScrollView is wider than the scrollview itself.</param>
- <param name="alwayShowVertical">Optional parameter to always show the vertical scrollbar. If false or left out, it is only shown when content inside the ScrollView is taller than the scrollview itself.</param>
- <param name="horizontalScrollbar">Optional GUIStyle to use for the horizontal scrollbar. If left out, the horizontalScrollbar style from the current GUISkin is used.</param>
- <param name="verticalScrollbar">Optional GUIStyle to use for the vertical scrollbar. If left out, the verticalScrollbar style from the current GUISkin is used.</param>
- <param name="options"></param>
- <param name="alwaysShowHorizontal"></param>
- <param name="alwaysShowVertical"></param>
- <param name="style"></param>
- <param name="background"></param>
- <returns>
- <para>The modified scrollPosition. Feed this back into the variable you pass in, as shown in the example.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayout.BeginScrollView(UnityEngine.Vector2,UnityEngine.GUIStyle,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Begin an automatically laid out scrollview.</para>
- </summary>
- <param name="scrollPosition">The position to use display.</param>
- <param name="alwayShowHorizontal">Optional parameter to always show the horizontal scrollbar. If false or left out, it is only shown when the content inside the ScrollView is wider than the scrollview itself.</param>
- <param name="alwayShowVertical">Optional parameter to always show the vertical scrollbar. If false or left out, it is only shown when content inside the ScrollView is taller than the scrollview itself.</param>
- <param name="horizontalScrollbar">Optional GUIStyle to use for the horizontal scrollbar. If left out, the horizontalScrollbar style from the current GUISkin is used.</param>
- <param name="verticalScrollbar">Optional GUIStyle to use for the vertical scrollbar. If left out, the verticalScrollbar style from the current GUISkin is used.</param>
- <param name="options"></param>
- <param name="alwaysShowHorizontal"></param>
- <param name="alwaysShowVertical"></param>
- <param name="style"></param>
- <param name="background"></param>
- <returns>
- <para>The modified scrollPosition. Feed this back into the variable you pass in, as shown in the example.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayout.BeginScrollView(UnityEngine.Vector2,System.Boolean,System.Boolean,UnityEngine.GUIStyle,UnityEngine.GUIStyle,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Begin an automatically laid out scrollview.</para>
- </summary>
- <param name="scrollPosition">The position to use display.</param>
- <param name="alwayShowHorizontal">Optional parameter to always show the horizontal scrollbar. If false or left out, it is only shown when the content inside the ScrollView is wider than the scrollview itself.</param>
- <param name="alwayShowVertical">Optional parameter to always show the vertical scrollbar. If false or left out, it is only shown when content inside the ScrollView is taller than the scrollview itself.</param>
- <param name="horizontalScrollbar">Optional GUIStyle to use for the horizontal scrollbar. If left out, the horizontalScrollbar style from the current GUISkin is used.</param>
- <param name="verticalScrollbar">Optional GUIStyle to use for the vertical scrollbar. If left out, the verticalScrollbar style from the current GUISkin is used.</param>
- <param name="options"></param>
- <param name="alwaysShowHorizontal"></param>
- <param name="alwaysShowVertical"></param>
- <param name="style"></param>
- <param name="background"></param>
- <returns>
- <para>The modified scrollPosition. Feed this back into the variable you pass in, as shown in the example.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayout.BeginScrollView(UnityEngine.Vector2,System.Boolean,System.Boolean,UnityEngine.GUIStyle,UnityEngine.GUIStyle,UnityEngine.GUIStyle,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Begin an automatically laid out scrollview.</para>
- </summary>
- <param name="scrollPosition">The position to use display.</param>
- <param name="alwayShowHorizontal">Optional parameter to always show the horizontal scrollbar. If false or left out, it is only shown when the content inside the ScrollView is wider than the scrollview itself.</param>
- <param name="alwayShowVertical">Optional parameter to always show the vertical scrollbar. If false or left out, it is only shown when content inside the ScrollView is taller than the scrollview itself.</param>
- <param name="horizontalScrollbar">Optional GUIStyle to use for the horizontal scrollbar. If left out, the horizontalScrollbar style from the current GUISkin is used.</param>
- <param name="verticalScrollbar">Optional GUIStyle to use for the vertical scrollbar. If left out, the verticalScrollbar style from the current GUISkin is used.</param>
- <param name="options"></param>
- <param name="alwaysShowHorizontal"></param>
- <param name="alwaysShowVertical"></param>
- <param name="style"></param>
- <param name="background"></param>
- <returns>
- <para>The modified scrollPosition. Feed this back into the variable you pass in, as shown in the example.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayout.BeginVertical(UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Begin a vertical control group.</para>
- </summary>
- <param name="text">Text to display on group.</param>
- <param name="image">Texture to display on group.</param>
- <param name="content">Text, image, and tooltip for this group.</param>
- <param name="style">The style to use for background image and padding values. If left out, the background is transparent.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- </member>
- <member name="M:UnityEngine.GUILayout.BeginVertical(UnityEngine.GUIStyle,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Begin a vertical control group.</para>
- </summary>
- <param name="text">Text to display on group.</param>
- <param name="image">Texture to display on group.</param>
- <param name="content">Text, image, and tooltip for this group.</param>
- <param name="style">The style to use for background image and padding values. If left out, the background is transparent.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- </member>
- <member name="M:UnityEngine.GUILayout.BeginVertical(System.String,UnityEngine.GUIStyle,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Begin a vertical control group.</para>
- </summary>
- <param name="text">Text to display on group.</param>
- <param name="image">Texture to display on group.</param>
- <param name="content">Text, image, and tooltip for this group.</param>
- <param name="style">The style to use for background image and padding values. If left out, the background is transparent.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- </member>
- <member name="M:UnityEngine.GUILayout.BeginVertical(UnityEngine.Texture,UnityEngine.GUIStyle,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Begin a vertical control group.</para>
- </summary>
- <param name="text">Text to display on group.</param>
- <param name="image">Texture to display on group.</param>
- <param name="content">Text, image, and tooltip for this group.</param>
- <param name="style">The style to use for background image and padding values. If left out, the background is transparent.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- </member>
- <member name="M:UnityEngine.GUILayout.BeginVertical(UnityEngine.GUIContent,UnityEngine.GUIStyle,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Begin a vertical control group.</para>
- </summary>
- <param name="text">Text to display on group.</param>
- <param name="image">Texture to display on group.</param>
- <param name="content">Text, image, and tooltip for this group.</param>
- <param name="style">The style to use for background image and padding values. If left out, the background is transparent.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- </member>
- <member name="M:UnityEngine.GUILayout.Box(UnityEngine.Texture,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Make an auto-layout box.</para>
- </summary>
- <param name="text">Text to display on the box.</param>
- <param name="image">Texture to display on the box.</param>
- <param name="content">Text, image and tooltip for this box.</param>
- <param name="style">The style to use. If left out, the box style from the current GUISkin is used.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- </member>
- <member name="M:UnityEngine.GUILayout.Box(System.String,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Make an auto-layout box.</para>
- </summary>
- <param name="text">Text to display on the box.</param>
- <param name="image">Texture to display on the box.</param>
- <param name="content">Text, image and tooltip for this box.</param>
- <param name="style">The style to use. If left out, the box style from the current GUISkin is used.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- </member>
- <member name="M:UnityEngine.GUILayout.Box(UnityEngine.GUIContent,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Make an auto-layout box.</para>
- </summary>
- <param name="text">Text to display on the box.</param>
- <param name="image">Texture to display on the box.</param>
- <param name="content">Text, image and tooltip for this box.</param>
- <param name="style">The style to use. If left out, the box style from the current GUISkin is used.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- </member>
- <member name="M:UnityEngine.GUILayout.Box(UnityEngine.Texture,UnityEngine.GUIStyle,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Make an auto-layout box.</para>
- </summary>
- <param name="text">Text to display on the box.</param>
- <param name="image">Texture to display on the box.</param>
- <param name="content">Text, image and tooltip for this box.</param>
- <param name="style">The style to use. If left out, the box style from the current GUISkin is used.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- </member>
- <member name="M:UnityEngine.GUILayout.Box(System.String,UnityEngine.GUIStyle,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Make an auto-layout box.</para>
- </summary>
- <param name="text">Text to display on the box.</param>
- <param name="image">Texture to display on the box.</param>
- <param name="content">Text, image and tooltip for this box.</param>
- <param name="style">The style to use. If left out, the box style from the current GUISkin is used.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- </member>
- <member name="M:UnityEngine.GUILayout.Box(UnityEngine.GUIContent,UnityEngine.GUIStyle,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Make an auto-layout box.</para>
- </summary>
- <param name="text">Text to display on the box.</param>
- <param name="image">Texture to display on the box.</param>
- <param name="content">Text, image and tooltip for this box.</param>
- <param name="style">The style to use. If left out, the box style from the current GUISkin is used.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- </member>
- <member name="M:UnityEngine.GUILayout.Button(UnityEngine.Texture,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Make a single press button.</para>
- </summary>
- <param name="text">Text to display on the button.</param>
- <param name="image">Texture to display on the button.</param>
- <param name="content">Text, image and tooltip for this button.</param>
- <param name="style">The style to use. If left out, the button style from the current GUISkin is used.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- <returns>
- <para>true when the users clicks the button.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayout.Button(System.String,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Make a single press button.</para>
- </summary>
- <param name="text">Text to display on the button.</param>
- <param name="image">Texture to display on the button.</param>
- <param name="content">Text, image and tooltip for this button.</param>
- <param name="style">The style to use. If left out, the button style from the current GUISkin is used.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- <returns>
- <para>true when the users clicks the button.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayout.Button(UnityEngine.GUIContent,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Make a single press button.</para>
- </summary>
- <param name="text">Text to display on the button.</param>
- <param name="image">Texture to display on the button.</param>
- <param name="content">Text, image and tooltip for this button.</param>
- <param name="style">The style to use. If left out, the button style from the current GUISkin is used.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- <returns>
- <para>true when the users clicks the button.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayout.Button(UnityEngine.Texture,UnityEngine.GUIStyle,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Make a single press button.</para>
- </summary>
- <param name="text">Text to display on the button.</param>
- <param name="image">Texture to display on the button.</param>
- <param name="content">Text, image and tooltip for this button.</param>
- <param name="style">The style to use. If left out, the button style from the current GUISkin is used.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- <returns>
- <para>true when the users clicks the button.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayout.Button(System.String,UnityEngine.GUIStyle,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Make a single press button.</para>
- </summary>
- <param name="text">Text to display on the button.</param>
- <param name="image">Texture to display on the button.</param>
- <param name="content">Text, image and tooltip for this button.</param>
- <param name="style">The style to use. If left out, the button style from the current GUISkin is used.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- <returns>
- <para>true when the users clicks the button.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayout.Button(UnityEngine.GUIContent,UnityEngine.GUIStyle,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Make a single press button.</para>
- </summary>
- <param name="text">Text to display on the button.</param>
- <param name="image">Texture to display on the button.</param>
- <param name="content">Text, image and tooltip for this button.</param>
- <param name="style">The style to use. If left out, the button style from the current GUISkin is used.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- <returns>
- <para>true when the users clicks the button.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayout.EndArea">
- <summary>
- <para>Close a GUILayout block started with BeginArea.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.GUILayout.EndHorizontal">
- <summary>
- <para>Close a group started with BeginHorizontal.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.GUILayout.EndScrollView">
- <summary>
- <para>End a scroll view begun with a call to BeginScrollView.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.GUILayout.EndVertical">
- <summary>
- <para>Close a group started with BeginVertical.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.GUILayout.ExpandHeight(System.Boolean)">
- <summary>
- <para>Option passed to a control to allow or disallow vertical expansion.</para>
- </summary>
- <param name="expand"></param>
- </member>
- <member name="M:UnityEngine.GUILayout.ExpandWidth(System.Boolean)">
- <summary>
- <para>Option passed to a control to allow or disallow horizontal expansion.</para>
- </summary>
- <param name="expand"></param>
- </member>
- <member name="M:UnityEngine.GUILayout.FlexibleSpace">
- <summary>
- <para>Insert a flexible space element.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.GUILayout.Height(System.Single)">
- <summary>
- <para>Option passed to a control to give it an absolute height.</para>
- </summary>
- <param name="height"></param>
- </member>
- <member name="T:UnityEngine.GUILayout.HorizontalScope">
- <summary>
- <para>Disposable helper class for managing BeginHorizontal / EndHorizontal.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.GUILayout.HorizontalScope.#ctor(UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Create a new HorizontalScope and begin the corresponding horizontal group.</para>
- </summary>
- <param name="text">Text to display on group.</param>
- <param name="image">Texture to display on group.</param>
- <param name="content">Text, image, and tooltip for this group.</param>
- <param name="style">The style to use for background image and padding values. If left out, the background is transparent.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- </member>
- <member name="M:UnityEngine.GUILayout.HorizontalScope.#ctor(UnityEngine.GUIStyle,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Create a new HorizontalScope and begin the corresponding horizontal group.</para>
- </summary>
- <param name="text">Text to display on group.</param>
- <param name="image">Texture to display on group.</param>
- <param name="content">Text, image, and tooltip for this group.</param>
- <param name="style">The style to use for background image and padding values. If left out, the background is transparent.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- </member>
- <member name="M:UnityEngine.GUILayout.HorizontalScope.#ctor(System.String,UnityEngine.GUIStyle,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Create a new HorizontalScope and begin the corresponding horizontal group.</para>
- </summary>
- <param name="text">Text to display on group.</param>
- <param name="image">Texture to display on group.</param>
- <param name="content">Text, image, and tooltip for this group.</param>
- <param name="style">The style to use for background image and padding values. If left out, the background is transparent.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- </member>
- <member name="M:UnityEngine.GUILayout.HorizontalScope.#ctor(UnityEngine.Texture,UnityEngine.GUIStyle,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Create a new HorizontalScope and begin the corresponding horizontal group.</para>
- </summary>
- <param name="text">Text to display on group.</param>
- <param name="image">Texture to display on group.</param>
- <param name="content">Text, image, and tooltip for this group.</param>
- <param name="style">The style to use for background image and padding values. If left out, the background is transparent.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- </member>
- <member name="M:UnityEngine.GUILayout.HorizontalScope.#ctor(UnityEngine.GUIContent,UnityEngine.GUIStyle,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Create a new HorizontalScope and begin the corresponding horizontal group.</para>
- </summary>
- <param name="text">Text to display on group.</param>
- <param name="image">Texture to display on group.</param>
- <param name="content">Text, image, and tooltip for this group.</param>
- <param name="style">The style to use for background image and padding values. If left out, the background is transparent.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- </member>
- <member name="M:UnityEngine.GUILayout.HorizontalScrollbar(System.Single,System.Single,System.Single,System.Single,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Make a horizontal scrollbar.</para>
- </summary>
- <param name="value">The position between min and max.</param>
- <param name="size">How much can we see?</param>
- <param name="leftValue">The value at the left end of the scrollbar.</param>
- <param name="rightValue">The value at the right end of the scrollbar.</param>
- <param name="style">The style to use for the scrollbar background. If left out, the horizontalScrollbar style from the current GUISkin is used.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.</param>
- <returns>
- <para>The modified value. This can be changed by the user by dragging the scrollbar, or clicking the arrows at the end.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayout.HorizontalScrollbar(System.Single,System.Single,System.Single,System.Single,UnityEngine.GUIStyle,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Make a horizontal scrollbar.</para>
- </summary>
- <param name="value">The position between min and max.</param>
- <param name="size">How much can we see?</param>
- <param name="leftValue">The value at the left end of the scrollbar.</param>
- <param name="rightValue">The value at the right end of the scrollbar.</param>
- <param name="style">The style to use for the scrollbar background. If left out, the horizontalScrollbar style from the current GUISkin is used.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.</param>
- <returns>
- <para>The modified value. This can be changed by the user by dragging the scrollbar, or clicking the arrows at the end.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayout.HorizontalSlider(System.Single,System.Single,System.Single,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>A horizontal slider the user can drag to change a value between a min and a max.</para>
- </summary>
- <param name="value">The value the slider shows. This determines the position of the draggable thumb.</param>
- <param name="leftValue">The value at the left end of the slider.</param>
- <param name="rightValue">The value at the right end of the slider.</param>
- <param name="slider">The GUIStyle to use for displaying the dragging area. If left out, the horizontalSlider style from the current GUISkin is used.</param>
- <param name="thumb">The GUIStyle to use for displaying draggable thumb. If left out, the horizontalSliderThumb style from the current GUISkin is used.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.</param>
- <returns>
- <para>The value that has been set by the user.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayout.HorizontalSlider(System.Single,System.Single,System.Single,UnityEngine.GUIStyle,UnityEngine.GUIStyle,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>A horizontal slider the user can drag to change a value between a min and a max.</para>
- </summary>
- <param name="value">The value the slider shows. This determines the position of the draggable thumb.</param>
- <param name="leftValue">The value at the left end of the slider.</param>
- <param name="rightValue">The value at the right end of the slider.</param>
- <param name="slider">The GUIStyle to use for displaying the dragging area. If left out, the horizontalSlider style from the current GUISkin is used.</param>
- <param name="thumb">The GUIStyle to use for displaying draggable thumb. If left out, the horizontalSliderThumb style from the current GUISkin is used.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.</param>
- <returns>
- <para>The value that has been set by the user.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayout.Label(UnityEngine.Texture,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Make an auto-layout label.</para>
- </summary>
- <param name="text">Text to display on the label.</param>
- <param name="image">Texture to display on the label.</param>
- <param name="content">Text, image and tooltip for this label.</param>
- <param name="style">The style to use. If left out, the label style from the current GUISkin is used.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- </member>
- <member name="M:UnityEngine.GUILayout.Label(System.String,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Make an auto-layout label.</para>
- </summary>
- <param name="text">Text to display on the label.</param>
- <param name="image">Texture to display on the label.</param>
- <param name="content">Text, image and tooltip for this label.</param>
- <param name="style">The style to use. If left out, the label style from the current GUISkin is used.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- </member>
- <member name="M:UnityEngine.GUILayout.Label(UnityEngine.GUIContent,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Make an auto-layout label.</para>
- </summary>
- <param name="text">Text to display on the label.</param>
- <param name="image">Texture to display on the label.</param>
- <param name="content">Text, image and tooltip for this label.</param>
- <param name="style">The style to use. If left out, the label style from the current GUISkin is used.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- </member>
- <member name="M:UnityEngine.GUILayout.Label(UnityEngine.Texture,UnityEngine.GUIStyle,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Make an auto-layout label.</para>
- </summary>
- <param name="text">Text to display on the label.</param>
- <param name="image">Texture to display on the label.</param>
- <param name="content">Text, image and tooltip for this label.</param>
- <param name="style">The style to use. If left out, the label style from the current GUISkin is used.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- </member>
- <member name="M:UnityEngine.GUILayout.Label(System.String,UnityEngine.GUIStyle,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Make an auto-layout label.</para>
- </summary>
- <param name="text">Text to display on the label.</param>
- <param name="image">Texture to display on the label.</param>
- <param name="content">Text, image and tooltip for this label.</param>
- <param name="style">The style to use. If left out, the label style from the current GUISkin is used.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- </member>
- <member name="M:UnityEngine.GUILayout.Label(UnityEngine.GUIContent,UnityEngine.GUIStyle,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Make an auto-layout label.</para>
- </summary>
- <param name="text">Text to display on the label.</param>
- <param name="image">Texture to display on the label.</param>
- <param name="content">Text, image and tooltip for this label.</param>
- <param name="style">The style to use. If left out, the label style from the current GUISkin is used.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- </member>
- <member name="M:UnityEngine.GUILayout.MaxHeight(System.Single)">
- <summary>
- <para>Option passed to a control to specify a maximum height.</para>
- </summary>
- <param name="maxHeight"></param>
- </member>
- <member name="M:UnityEngine.GUILayout.MaxWidth(System.Single)">
- <summary>
- <para>Option passed to a control to specify a maximum width.</para>
- </summary>
- <param name="maxWidth"></param>
- </member>
- <member name="M:UnityEngine.GUILayout.MinHeight(System.Single)">
- <summary>
- <para>Option passed to a control to specify a minimum height.</para>
- </summary>
- <param name="minHeight"></param>
- </member>
- <member name="M:UnityEngine.GUILayout.MinWidth(System.Single)">
- <summary>
- <para>Option passed to a control to specify a minimum width.
-</para>
- </summary>
- <param name="minWidth"></param>
- </member>
- <member name="M:UnityEngine.GUILayout.PasswordField(System.String,System.Char,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Make a text field where the user can enter a password.</para>
- </summary>
- <param name="password">Password to edit. The return value of this function should be assigned back to the string as shown in the example.</param>
- <param name="maskChar">Character to mask the password with.</param>
- <param name="maxLength">The maximum length of the string. If left out, the user can type for ever and ever.</param>
- <param name="style">The style to use. If left out, the textField style from the current GUISkin is used.</param>
- <param name="options"></param>
- <returns>
- <para>The edited password.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayout.PasswordField(System.String,System.Char,System.Int32,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Make a text field where the user can enter a password.</para>
- </summary>
- <param name="password">Password to edit. The return value of this function should be assigned back to the string as shown in the example.</param>
- <param name="maskChar">Character to mask the password with.</param>
- <param name="maxLength">The maximum length of the string. If left out, the user can type for ever and ever.</param>
- <param name="style">The style to use. If left out, the textField style from the current GUISkin is used.</param>
- <param name="options"></param>
- <returns>
- <para>The edited password.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayout.PasswordField(System.String,System.Char,UnityEngine.GUIStyle,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Make a text field where the user can enter a password.</para>
- </summary>
- <param name="password">Password to edit. The return value of this function should be assigned back to the string as shown in the example.</param>
- <param name="maskChar">Character to mask the password with.</param>
- <param name="maxLength">The maximum length of the string. If left out, the user can type for ever and ever.</param>
- <param name="style">The style to use. If left out, the textField style from the current GUISkin is used.</param>
- <param name="options"></param>
- <returns>
- <para>The edited password.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayout.PasswordField(System.String,System.Char,System.Int32,UnityEngine.GUIStyle,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Make a text field where the user can enter a password.</para>
- </summary>
- <param name="password">Password to edit. The return value of this function should be assigned back to the string as shown in the example.</param>
- <param name="maskChar">Character to mask the password with.</param>
- <param name="maxLength">The maximum length of the string. If left out, the user can type for ever and ever.</param>
- <param name="style">The style to use. If left out, the textField style from the current GUISkin is used.</param>
- <param name="options"></param>
- <returns>
- <para>The edited password.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayout.RepeatButton(UnityEngine.Texture,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Make a repeating button. The button returns true as long as the user holds down the mouse.</para>
- </summary>
- <param name="text">Text to display on the button.</param>
- <param name="image">Texture to display on the button.</param>
- <param name="content">Text, image and tooltip for this button.</param>
- <param name="style">The style to use. If left out, the button style from the current GUISkin is used.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- <returns>
- <para>true when the holds down the mouse.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayout.RepeatButton(System.String,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Make a repeating button. The button returns true as long as the user holds down the mouse.</para>
- </summary>
- <param name="text">Text to display on the button.</param>
- <param name="image">Texture to display on the button.</param>
- <param name="content">Text, image and tooltip for this button.</param>
- <param name="style">The style to use. If left out, the button style from the current GUISkin is used.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- <returns>
- <para>true when the holds down the mouse.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayout.RepeatButton(UnityEngine.GUIContent,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Make a repeating button. The button returns true as long as the user holds down the mouse.</para>
- </summary>
- <param name="text">Text to display on the button.</param>
- <param name="image">Texture to display on the button.</param>
- <param name="content">Text, image and tooltip for this button.</param>
- <param name="style">The style to use. If left out, the button style from the current GUISkin is used.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- <returns>
- <para>true when the holds down the mouse.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayout.RepeatButton(UnityEngine.Texture,UnityEngine.GUIStyle,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Make a repeating button. The button returns true as long as the user holds down the mouse.</para>
- </summary>
- <param name="text">Text to display on the button.</param>
- <param name="image">Texture to display on the button.</param>
- <param name="content">Text, image and tooltip for this button.</param>
- <param name="style">The style to use. If left out, the button style from the current GUISkin is used.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- <returns>
- <para>true when the holds down the mouse.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayout.RepeatButton(System.String,UnityEngine.GUIStyle,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Make a repeating button. The button returns true as long as the user holds down the mouse.</para>
- </summary>
- <param name="text">Text to display on the button.</param>
- <param name="image">Texture to display on the button.</param>
- <param name="content">Text, image and tooltip for this button.</param>
- <param name="style">The style to use. If left out, the button style from the current GUISkin is used.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- <returns>
- <para>true when the holds down the mouse.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayout.RepeatButton(UnityEngine.GUIContent,UnityEngine.GUIStyle,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Make a repeating button. The button returns true as long as the user holds down the mouse.</para>
- </summary>
- <param name="text">Text to display on the button.</param>
- <param name="image">Texture to display on the button.</param>
- <param name="content">Text, image and tooltip for this button.</param>
- <param name="style">The style to use. If left out, the button style from the current GUISkin is used.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- <returns>
- <para>true when the holds down the mouse.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.GUILayout.ScrollViewScope">
- <summary>
- <para>Disposable helper class for managing BeginScrollView / EndScrollView.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUILayout.ScrollViewScope.handleScrollWheel">
- <summary>
- <para>Whether this ScrollView should handle scroll wheel events. (default: true).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUILayout.ScrollViewScope.scrollPosition">
- <summary>
- <para>The modified scrollPosition. Feed this back into the variable you pass in, as shown in the example.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.GUILayout.ScrollViewScope.#ctor(UnityEngine.Vector2,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Create a new ScrollViewScope and begin the corresponding ScrollView.</para>
- </summary>
- <param name="scrollPosition">The position to use display.</param>
- <param name="alwaysShowHorizontal">Optional parameter to always show the horizontal scrollbar. If false or left out, it is only shown when the content inside the ScrollView is wider than the scrollview itself.</param>
- <param name="alwaysShowVertical">Optional parameter to always show the vertical scrollbar. If false or left out, it is only shown when content inside the ScrollView is taller than the scrollview itself.</param>
- <param name="horizontalScrollbar">Optional GUIStyle to use for the horizontal scrollbar. If left out, the horizontalScrollbar style from the current GUISkin is used.</param>
- <param name="verticalScrollbar">Optional GUIStyle to use for the vertical scrollbar. If left out, the verticalScrollbar style from the current GUISkin is used.</param>
- <param name="options"></param>
- <param name="style"></param>
- <param name="background"></param>
- </member>
- <member name="M:UnityEngine.GUILayout.ScrollViewScope.#ctor(UnityEngine.Vector2,System.Boolean,System.Boolean,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Create a new ScrollViewScope and begin the corresponding ScrollView.</para>
- </summary>
- <param name="scrollPosition">The position to use display.</param>
- <param name="alwaysShowHorizontal">Optional parameter to always show the horizontal scrollbar. If false or left out, it is only shown when the content inside the ScrollView is wider than the scrollview itself.</param>
- <param name="alwaysShowVertical">Optional parameter to always show the vertical scrollbar. If false or left out, it is only shown when content inside the ScrollView is taller than the scrollview itself.</param>
- <param name="horizontalScrollbar">Optional GUIStyle to use for the horizontal scrollbar. If left out, the horizontalScrollbar style from the current GUISkin is used.</param>
- <param name="verticalScrollbar">Optional GUIStyle to use for the vertical scrollbar. If left out, the verticalScrollbar style from the current GUISkin is used.</param>
- <param name="options"></param>
- <param name="style"></param>
- <param name="background"></param>
- </member>
- <member name="M:UnityEngine.GUILayout.ScrollViewScope.#ctor(UnityEngine.Vector2,UnityEngine.GUIStyle,UnityEngine.GUIStyle,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Create a new ScrollViewScope and begin the corresponding ScrollView.</para>
- </summary>
- <param name="scrollPosition">The position to use display.</param>
- <param name="alwaysShowHorizontal">Optional parameter to always show the horizontal scrollbar. If false or left out, it is only shown when the content inside the ScrollView is wider than the scrollview itself.</param>
- <param name="alwaysShowVertical">Optional parameter to always show the vertical scrollbar. If false or left out, it is only shown when content inside the ScrollView is taller than the scrollview itself.</param>
- <param name="horizontalScrollbar">Optional GUIStyle to use for the horizontal scrollbar. If left out, the horizontalScrollbar style from the current GUISkin is used.</param>
- <param name="verticalScrollbar">Optional GUIStyle to use for the vertical scrollbar. If left out, the verticalScrollbar style from the current GUISkin is used.</param>
- <param name="options"></param>
- <param name="style"></param>
- <param name="background"></param>
- </member>
- <member name="M:UnityEngine.GUILayout.ScrollViewScope.#ctor(UnityEngine.Vector2,UnityEngine.GUIStyle,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Create a new ScrollViewScope and begin the corresponding ScrollView.</para>
- </summary>
- <param name="scrollPosition">The position to use display.</param>
- <param name="alwaysShowHorizontal">Optional parameter to always show the horizontal scrollbar. If false or left out, it is only shown when the content inside the ScrollView is wider than the scrollview itself.</param>
- <param name="alwaysShowVertical">Optional parameter to always show the vertical scrollbar. If false or left out, it is only shown when content inside the ScrollView is taller than the scrollview itself.</param>
- <param name="horizontalScrollbar">Optional GUIStyle to use for the horizontal scrollbar. If left out, the horizontalScrollbar style from the current GUISkin is used.</param>
- <param name="verticalScrollbar">Optional GUIStyle to use for the vertical scrollbar. If left out, the verticalScrollbar style from the current GUISkin is used.</param>
- <param name="options"></param>
- <param name="style"></param>
- <param name="background"></param>
- </member>
- <member name="M:UnityEngine.GUILayout.ScrollViewScope.#ctor(UnityEngine.Vector2,System.Boolean,System.Boolean,UnityEngine.GUIStyle,UnityEngine.GUIStyle,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Create a new ScrollViewScope and begin the corresponding ScrollView.</para>
- </summary>
- <param name="scrollPosition">The position to use display.</param>
- <param name="alwaysShowHorizontal">Optional parameter to always show the horizontal scrollbar. If false or left out, it is only shown when the content inside the ScrollView is wider than the scrollview itself.</param>
- <param name="alwaysShowVertical">Optional parameter to always show the vertical scrollbar. If false or left out, it is only shown when content inside the ScrollView is taller than the scrollview itself.</param>
- <param name="horizontalScrollbar">Optional GUIStyle to use for the horizontal scrollbar. If left out, the horizontalScrollbar style from the current GUISkin is used.</param>
- <param name="verticalScrollbar">Optional GUIStyle to use for the vertical scrollbar. If left out, the verticalScrollbar style from the current GUISkin is used.</param>
- <param name="options"></param>
- <param name="style"></param>
- <param name="background"></param>
- </member>
- <member name="M:UnityEngine.GUILayout.ScrollViewScope.#ctor(UnityEngine.Vector2,System.Boolean,System.Boolean,UnityEngine.GUIStyle,UnityEngine.GUIStyle,UnityEngine.GUIStyle,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Create a new ScrollViewScope and begin the corresponding ScrollView.</para>
- </summary>
- <param name="scrollPosition">The position to use display.</param>
- <param name="alwaysShowHorizontal">Optional parameter to always show the horizontal scrollbar. If false or left out, it is only shown when the content inside the ScrollView is wider than the scrollview itself.</param>
- <param name="alwaysShowVertical">Optional parameter to always show the vertical scrollbar. If false or left out, it is only shown when content inside the ScrollView is taller than the scrollview itself.</param>
- <param name="horizontalScrollbar">Optional GUIStyle to use for the horizontal scrollbar. If left out, the horizontalScrollbar style from the current GUISkin is used.</param>
- <param name="verticalScrollbar">Optional GUIStyle to use for the vertical scrollbar. If left out, the verticalScrollbar style from the current GUISkin is used.</param>
- <param name="options"></param>
- <param name="style"></param>
- <param name="background"></param>
- </member>
- <member name="M:UnityEngine.GUILayout.SelectionGrid(System.Int32,System.String[],System.Int32,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Make a Selection Grid.</para>
- </summary>
- <param name="selected">The index of the selected button.</param>
- <param name="texts">An array of strings to show on the buttons.</param>
- <param name="images">An array of textures on the buttons.</param>
- <param name="contents">An array of text, image and tooltips for the button.</param>
- <param name="xCount">How many elements to fit in the horizontal direction. The elements will be scaled to fit unless the style defines a fixedWidth to use. The height of the control will be determined from the number of elements.</param>
- <param name="style">The style to use. If left out, the button style from the current GUISkin is used.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- <param name="content"></param>
- <returns>
- <para>The index of the selected button.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayout.SelectionGrid(System.Int32,UnityEngine.Texture[],System.Int32,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Make a Selection Grid.</para>
- </summary>
- <param name="selected">The index of the selected button.</param>
- <param name="texts">An array of strings to show on the buttons.</param>
- <param name="images">An array of textures on the buttons.</param>
- <param name="contents">An array of text, image and tooltips for the button.</param>
- <param name="xCount">How many elements to fit in the horizontal direction. The elements will be scaled to fit unless the style defines a fixedWidth to use. The height of the control will be determined from the number of elements.</param>
- <param name="style">The style to use. If left out, the button style from the current GUISkin is used.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- <param name="content"></param>
- <returns>
- <para>The index of the selected button.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayout.SelectionGrid(System.Int32,UnityEngine.GUIContent[],System.Int32,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Make a Selection Grid.</para>
- </summary>
- <param name="selected">The index of the selected button.</param>
- <param name="texts">An array of strings to show on the buttons.</param>
- <param name="images">An array of textures on the buttons.</param>
- <param name="contents">An array of text, image and tooltips for the button.</param>
- <param name="xCount">How many elements to fit in the horizontal direction. The elements will be scaled to fit unless the style defines a fixedWidth to use. The height of the control will be determined from the number of elements.</param>
- <param name="style">The style to use. If left out, the button style from the current GUISkin is used.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- <param name="content"></param>
- <returns>
- <para>The index of the selected button.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayout.SelectionGrid(System.Int32,System.String[],System.Int32,UnityEngine.GUIStyle,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Make a Selection Grid.</para>
- </summary>
- <param name="selected">The index of the selected button.</param>
- <param name="texts">An array of strings to show on the buttons.</param>
- <param name="images">An array of textures on the buttons.</param>
- <param name="contents">An array of text, image and tooltips for the button.</param>
- <param name="xCount">How many elements to fit in the horizontal direction. The elements will be scaled to fit unless the style defines a fixedWidth to use. The height of the control will be determined from the number of elements.</param>
- <param name="style">The style to use. If left out, the button style from the current GUISkin is used.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- <param name="content"></param>
- <returns>
- <para>The index of the selected button.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayout.SelectionGrid(System.Int32,UnityEngine.Texture[],System.Int32,UnityEngine.GUIStyle,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Make a Selection Grid.</para>
- </summary>
- <param name="selected">The index of the selected button.</param>
- <param name="texts">An array of strings to show on the buttons.</param>
- <param name="images">An array of textures on the buttons.</param>
- <param name="contents">An array of text, image and tooltips for the button.</param>
- <param name="xCount">How many elements to fit in the horizontal direction. The elements will be scaled to fit unless the style defines a fixedWidth to use. The height of the control will be determined from the number of elements.</param>
- <param name="style">The style to use. If left out, the button style from the current GUISkin is used.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- <param name="content"></param>
- <returns>
- <para>The index of the selected button.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayout.SelectionGrid(System.Int32,UnityEngine.GUIContent[],System.Int32,UnityEngine.GUIStyle,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Make a Selection Grid.</para>
- </summary>
- <param name="selected">The index of the selected button.</param>
- <param name="texts">An array of strings to show on the buttons.</param>
- <param name="images">An array of textures on the buttons.</param>
- <param name="contents">An array of text, image and tooltips for the button.</param>
- <param name="xCount">How many elements to fit in the horizontal direction. The elements will be scaled to fit unless the style defines a fixedWidth to use. The height of the control will be determined from the number of elements.</param>
- <param name="style">The style to use. If left out, the button style from the current GUISkin is used.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- <param name="content"></param>
- <returns>
- <para>The index of the selected button.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayout.Space(System.Single)">
- <summary>
- <para>Insert a space in the current layout group.</para>
- </summary>
- <param name="pixels"></param>
- </member>
- <member name="M:UnityEngine.GUILayout.TextArea(System.String,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Make a multi-line text field where the user can edit a string.</para>
- </summary>
- <param name="text">Text to edit. The return value of this function should be assigned back to the string as shown in the example.</param>
- <param name="maxLength">The maximum length of the string. If left out, the user can type for ever and ever.</param>
- <param name="style">The style to use. If left out, the textField style from the current GUISkin is used.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&amp;amp;lt;br&amp;amp;gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- <returns>
- <para>The edited string.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayout.TextArea(System.String,System.Int32,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Make a multi-line text field where the user can edit a string.</para>
- </summary>
- <param name="text">Text to edit. The return value of this function should be assigned back to the string as shown in the example.</param>
- <param name="maxLength">The maximum length of the string. If left out, the user can type for ever and ever.</param>
- <param name="style">The style to use. If left out, the textField style from the current GUISkin is used.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&amp;amp;lt;br&amp;amp;gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- <returns>
- <para>The edited string.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayout.TextArea(System.String,UnityEngine.GUIStyle,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Make a multi-line text field where the user can edit a string.</para>
- </summary>
- <param name="text">Text to edit. The return value of this function should be assigned back to the string as shown in the example.</param>
- <param name="maxLength">The maximum length of the string. If left out, the user can type for ever and ever.</param>
- <param name="style">The style to use. If left out, the textField style from the current GUISkin is used.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&amp;amp;lt;br&amp;amp;gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- <returns>
- <para>The edited string.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayout.TextArea(System.String,System.Int32,UnityEngine.GUIStyle,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Make a multi-line text field where the user can edit a string.</para>
- </summary>
- <param name="text">Text to edit. The return value of this function should be assigned back to the string as shown in the example.</param>
- <param name="maxLength">The maximum length of the string. If left out, the user can type for ever and ever.</param>
- <param name="style">The style to use. If left out, the textField style from the current GUISkin is used.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&amp;amp;lt;br&amp;amp;gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- <returns>
- <para>The edited string.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayout.TextField(System.String,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Make a single-line text field where the user can edit a string.</para>
- </summary>
- <param name="text">Text to edit. The return value of this function should be assigned back to the string as shown in the example.</param>
- <param name="maxLength">The maximum length of the string. If left out, the user can type for ever and ever.</param>
- <param name="style">The style to use. If left out, the textArea style from the current GUISkin is used.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- <returns>
- <para>The edited string.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayout.TextField(System.String,System.Int32,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Make a single-line text field where the user can edit a string.</para>
- </summary>
- <param name="text">Text to edit. The return value of this function should be assigned back to the string as shown in the example.</param>
- <param name="maxLength">The maximum length of the string. If left out, the user can type for ever and ever.</param>
- <param name="style">The style to use. If left out, the textArea style from the current GUISkin is used.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- <returns>
- <para>The edited string.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayout.TextField(System.String,UnityEngine.GUIStyle,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Make a single-line text field where the user can edit a string.</para>
- </summary>
- <param name="text">Text to edit. The return value of this function should be assigned back to the string as shown in the example.</param>
- <param name="maxLength">The maximum length of the string. If left out, the user can type for ever and ever.</param>
- <param name="style">The style to use. If left out, the textArea style from the current GUISkin is used.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- <returns>
- <para>The edited string.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayout.TextField(System.String,System.Int32,UnityEngine.GUIStyle,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Make a single-line text field where the user can edit a string.</para>
- </summary>
- <param name="text">Text to edit. The return value of this function should be assigned back to the string as shown in the example.</param>
- <param name="maxLength">The maximum length of the string. If left out, the user can type for ever and ever.</param>
- <param name="style">The style to use. If left out, the textArea style from the current GUISkin is used.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- <returns>
- <para>The edited string.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayout.Toggle(System.Boolean,UnityEngine.Texture,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Make an on/off toggle button.</para>
- </summary>
- <param name="value">Is the button on or off?</param>
- <param name="text">Text to display on the button.</param>
- <param name="image">Texture to display on the button.</param>
- <param name="content">Text, image and tooltip for this button.</param>
- <param name="style">The style to use. If left out, the button style from the current GUISkin is used.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- <returns>
- <para>The new value of the button.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayout.Toggle(System.Boolean,System.String,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Make an on/off toggle button.</para>
- </summary>
- <param name="value">Is the button on or off?</param>
- <param name="text">Text to display on the button.</param>
- <param name="image">Texture to display on the button.</param>
- <param name="content">Text, image and tooltip for this button.</param>
- <param name="style">The style to use. If left out, the button style from the current GUISkin is used.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- <returns>
- <para>The new value of the button.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayout.Toggle(System.Boolean,UnityEngine.GUIContent,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Make an on/off toggle button.</para>
- </summary>
- <param name="value">Is the button on or off?</param>
- <param name="text">Text to display on the button.</param>
- <param name="image">Texture to display on the button.</param>
- <param name="content">Text, image and tooltip for this button.</param>
- <param name="style">The style to use. If left out, the button style from the current GUISkin is used.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- <returns>
- <para>The new value of the button.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayout.Toggle(System.Boolean,UnityEngine.Texture,UnityEngine.GUIStyle,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Make an on/off toggle button.</para>
- </summary>
- <param name="value">Is the button on or off?</param>
- <param name="text">Text to display on the button.</param>
- <param name="image">Texture to display on the button.</param>
- <param name="content">Text, image and tooltip for this button.</param>
- <param name="style">The style to use. If left out, the button style from the current GUISkin is used.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- <returns>
- <para>The new value of the button.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayout.Toggle(System.Boolean,System.String,UnityEngine.GUIStyle,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Make an on/off toggle button.</para>
- </summary>
- <param name="value">Is the button on or off?</param>
- <param name="text">Text to display on the button.</param>
- <param name="image">Texture to display on the button.</param>
- <param name="content">Text, image and tooltip for this button.</param>
- <param name="style">The style to use. If left out, the button style from the current GUISkin is used.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- <returns>
- <para>The new value of the button.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayout.Toggle(System.Boolean,UnityEngine.GUIContent,UnityEngine.GUIStyle,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Make an on/off toggle button.</para>
- </summary>
- <param name="value">Is the button on or off?</param>
- <param name="text">Text to display on the button.</param>
- <param name="image">Texture to display on the button.</param>
- <param name="content">Text, image and tooltip for this button.</param>
- <param name="style">The style to use. If left out, the button style from the current GUISkin is used.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- <returns>
- <para>The new value of the button.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayout.Toolbar(System.Int32,System.String[],UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Make a toolbar.</para>
- </summary>
- <param name="selected">The index of the selected button.</param>
- <param name="texts">An array of strings to show on the buttons.</param>
- <param name="images">An array of textures on the buttons.</param>
- <param name="contents">An array of text, image and tooltips for the button.</param>
- <param name="style">The style to use. If left out, the button style from the current GUISkin is used.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- <param name="buttonSize">Determines how toolbar button size is calculated.</param>
- <returns>
- <para>The index of the selected button.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayout.Toolbar(System.Int32,UnityEngine.Texture[],UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Make a toolbar.</para>
- </summary>
- <param name="selected">The index of the selected button.</param>
- <param name="texts">An array of strings to show on the buttons.</param>
- <param name="images">An array of textures on the buttons.</param>
- <param name="contents">An array of text, image and tooltips for the button.</param>
- <param name="style">The style to use. If left out, the button style from the current GUISkin is used.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- <param name="buttonSize">Determines how toolbar button size is calculated.</param>
- <returns>
- <para>The index of the selected button.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayout.Toolbar(System.Int32,UnityEngine.GUIContent[],UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Make a toolbar.</para>
- </summary>
- <param name="selected">The index of the selected button.</param>
- <param name="texts">An array of strings to show on the buttons.</param>
- <param name="images">An array of textures on the buttons.</param>
- <param name="contents">An array of text, image and tooltips for the button.</param>
- <param name="style">The style to use. If left out, the button style from the current GUISkin is used.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- <param name="buttonSize">Determines how toolbar button size is calculated.</param>
- <returns>
- <para>The index of the selected button.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayout.Toolbar(System.Int32,System.String[],UnityEngine.GUIStyle,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Make a toolbar.</para>
- </summary>
- <param name="selected">The index of the selected button.</param>
- <param name="texts">An array of strings to show on the buttons.</param>
- <param name="images">An array of textures on the buttons.</param>
- <param name="contents">An array of text, image and tooltips for the button.</param>
- <param name="style">The style to use. If left out, the button style from the current GUISkin is used.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- <param name="buttonSize">Determines how toolbar button size is calculated.</param>
- <returns>
- <para>The index of the selected button.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayout.Toolbar(System.Int32,UnityEngine.Texture[],UnityEngine.GUIStyle,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Make a toolbar.</para>
- </summary>
- <param name="selected">The index of the selected button.</param>
- <param name="texts">An array of strings to show on the buttons.</param>
- <param name="images">An array of textures on the buttons.</param>
- <param name="contents">An array of text, image and tooltips for the button.</param>
- <param name="style">The style to use. If left out, the button style from the current GUISkin is used.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- <param name="buttonSize">Determines how toolbar button size is calculated.</param>
- <returns>
- <para>The index of the selected button.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayout.Toolbar(System.Int32,UnityEngine.GUIContent[],UnityEngine.GUIStyle,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Make a toolbar.</para>
- </summary>
- <param name="selected">The index of the selected button.</param>
- <param name="texts">An array of strings to show on the buttons.</param>
- <param name="images">An array of textures on the buttons.</param>
- <param name="contents">An array of text, image and tooltips for the button.</param>
- <param name="style">The style to use. If left out, the button style from the current GUISkin is used.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- <param name="buttonSize">Determines how toolbar button size is calculated.</param>
- <returns>
- <para>The index of the selected button.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayout.Toolbar(System.Int32,System.String[],UnityEngine.GUIStyle,UnityEngine.GUI/ToolbarButtonSize,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Make a toolbar.</para>
- </summary>
- <param name="selected">The index of the selected button.</param>
- <param name="texts">An array of strings to show on the buttons.</param>
- <param name="images">An array of textures on the buttons.</param>
- <param name="contents">An array of text, image and tooltips for the button.</param>
- <param name="style">The style to use. If left out, the button style from the current GUISkin is used.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- <param name="buttonSize">Determines how toolbar button size is calculated.</param>
- <returns>
- <para>The index of the selected button.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayout.Toolbar(System.Int32,UnityEngine.Texture[],UnityEngine.GUIStyle,UnityEngine.GUI/ToolbarButtonSize,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Make a toolbar.</para>
- </summary>
- <param name="selected">The index of the selected button.</param>
- <param name="texts">An array of strings to show on the buttons.</param>
- <param name="images">An array of textures on the buttons.</param>
- <param name="contents">An array of text, image and tooltips for the button.</param>
- <param name="style">The style to use. If left out, the button style from the current GUISkin is used.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- <param name="buttonSize">Determines how toolbar button size is calculated.</param>
- <returns>
- <para>The index of the selected button.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayout.Toolbar(System.Int32,UnityEngine.GUIContent[],UnityEngine.GUIStyle,UnityEngine.GUI/ToolbarButtonSize,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Make a toolbar.</para>
- </summary>
- <param name="selected">The index of the selected button.</param>
- <param name="texts">An array of strings to show on the buttons.</param>
- <param name="images">An array of textures on the buttons.</param>
- <param name="contents">An array of text, image and tooltips for the button.</param>
- <param name="style">The style to use. If left out, the button style from the current GUISkin is used.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- <param name="buttonSize">Determines how toolbar button size is calculated.</param>
- <returns>
- <para>The index of the selected button.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.GUILayout.VerticalScope">
- <summary>
- <para>Disposable helper class for managing BeginVertical / EndVertical.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.GUILayout.VerticalScope.#ctor(UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Create a new VerticalScope and begin the corresponding vertical group.</para>
- </summary>
- <param name="text">Text to display on group.</param>
- <param name="image">Texture to display on group.</param>
- <param name="content">Text, image, and tooltip for this group.</param>
- <param name="style">The style to use for background image and padding values. If left out, the background is transparent.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- </member>
- <member name="M:UnityEngine.GUILayout.VerticalScope.#ctor(UnityEngine.GUIStyle,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Create a new VerticalScope and begin the corresponding vertical group.</para>
- </summary>
- <param name="text">Text to display on group.</param>
- <param name="image">Texture to display on group.</param>
- <param name="content">Text, image, and tooltip for this group.</param>
- <param name="style">The style to use for background image and padding values. If left out, the background is transparent.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- </member>
- <member name="M:UnityEngine.GUILayout.VerticalScope.#ctor(System.String,UnityEngine.GUIStyle,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Create a new VerticalScope and begin the corresponding vertical group.</para>
- </summary>
- <param name="text">Text to display on group.</param>
- <param name="image">Texture to display on group.</param>
- <param name="content">Text, image, and tooltip for this group.</param>
- <param name="style">The style to use for background image and padding values. If left out, the background is transparent.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- </member>
- <member name="M:UnityEngine.GUILayout.VerticalScope.#ctor(UnityEngine.Texture,UnityEngine.GUIStyle,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Create a new VerticalScope and begin the corresponding vertical group.</para>
- </summary>
- <param name="text">Text to display on group.</param>
- <param name="image">Texture to display on group.</param>
- <param name="content">Text, image, and tooltip for this group.</param>
- <param name="style">The style to use for background image and padding values. If left out, the background is transparent.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- </member>
- <member name="M:UnityEngine.GUILayout.VerticalScope.#ctor(UnityEngine.GUIContent,UnityEngine.GUIStyle,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Create a new VerticalScope and begin the corresponding vertical group.</para>
- </summary>
- <param name="text">Text to display on group.</param>
- <param name="image">Texture to display on group.</param>
- <param name="content">Text, image, and tooltip for this group.</param>
- <param name="style">The style to use for background image and padding values. If left out, the background is transparent.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- </member>
- <member name="M:UnityEngine.GUILayout.VerticalScrollbar(System.Single,System.Single,System.Single,System.Single,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Make a vertical scrollbar.</para>
- </summary>
- <param name="value">The position between min and max.</param>
- <param name="size">How much can we see?</param>
- <param name="topValue">The value at the top end of the scrollbar.</param>
- <param name="bottomValue">The value at the bottom end of the scrollbar.</param>
- <param name="style">The style to use for the scrollbar background. If left out, the horizontalScrollbar style from the current GUISkin is used.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.</param>
- <returns>
- <para>The modified value. This can be changed by the user by dragging the scrollbar, or clicking the arrows at the end.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayout.VerticalScrollbar(System.Single,System.Single,System.Single,System.Single,UnityEngine.GUIStyle,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Make a vertical scrollbar.</para>
- </summary>
- <param name="value">The position between min and max.</param>
- <param name="size">How much can we see?</param>
- <param name="topValue">The value at the top end of the scrollbar.</param>
- <param name="bottomValue">The value at the bottom end of the scrollbar.</param>
- <param name="style">The style to use for the scrollbar background. If left out, the horizontalScrollbar style from the current GUISkin is used.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.</param>
- <returns>
- <para>The modified value. This can be changed by the user by dragging the scrollbar, or clicking the arrows at the end.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayout.VerticalSlider(System.Single,System.Single,System.Single,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>A vertical slider the user can drag to change a value between a min and a max.</para>
- </summary>
- <param name="value">The value the slider shows. This determines the position of the draggable thumb.</param>
- <param name="topValue">The value at the top end of the slider.</param>
- <param name="bottomValue">The value at the bottom end of the slider.</param>
- <param name="slider">The GUIStyle to use for displaying the dragging area. If left out, the horizontalSlider style from the current GUISkin is used.</param>
- <param name="thumb">The GUIStyle to use for displaying draggable thumb. If left out, the horizontalSliderThumb style from the current GUISkin is used.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.</param>
- <param name="leftValue"></param>
- <param name="rightValue"></param>
- <returns>
- <para>The value that has been set by the user.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayout.VerticalSlider(System.Single,System.Single,System.Single,UnityEngine.GUIStyle,UnityEngine.GUIStyle,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>A vertical slider the user can drag to change a value between a min and a max.</para>
- </summary>
- <param name="value">The value the slider shows. This determines the position of the draggable thumb.</param>
- <param name="topValue">The value at the top end of the slider.</param>
- <param name="bottomValue">The value at the bottom end of the slider.</param>
- <param name="slider">The GUIStyle to use for displaying the dragging area. If left out, the horizontalSlider style from the current GUISkin is used.</param>
- <param name="thumb">The GUIStyle to use for displaying draggable thumb. If left out, the horizontalSliderThumb style from the current GUISkin is used.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.</param>
- <param name="leftValue"></param>
- <param name="rightValue"></param>
- <returns>
- <para>The value that has been set by the user.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayout.Width(System.Single)">
- <summary>
- <para>Option passed to a control to give it an absolute width.</para>
- </summary>
- <param name="width"></param>
- </member>
- <member name="M:UnityEngine.GUILayout.Window(System.Int32,UnityEngine.Rect,UnityEngine.GUI/WindowFunction,System.String,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Make a popup window that layouts its contents automatically.</para>
- </summary>
- <param name="id">A unique ID to use for each window. This is the ID you'll use to interface to it.</param>
- <param name="screenRect">Rectangle on the screen to use for the window. The layouting system will attempt to fit the window inside it - if that cannot be done, it will adjust the rectangle to fit.</param>
- <param name="func">The function that creates the GUI inside the window. This function must take one parameter - the id of the window it's currently making GUI for.</param>
- <param name="text">Text to display as a title for the window.</param>
- <param name="image">Texture to display an image in the titlebar.</param>
- <param name="content">Text, image and tooltip for this window.</param>
- <param name="style">An optional style to use for the window. If left out, the window style from the current GUISkin is used.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style or the screenRect you pass in.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- <returns>
- <para>The rectangle the window is at. This can be in a different position and have a different size than the one you passed in.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayout.Window(System.Int32,UnityEngine.Rect,UnityEngine.GUI/WindowFunction,UnityEngine.Texture,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Make a popup window that layouts its contents automatically.</para>
- </summary>
- <param name="id">A unique ID to use for each window. This is the ID you'll use to interface to it.</param>
- <param name="screenRect">Rectangle on the screen to use for the window. The layouting system will attempt to fit the window inside it - if that cannot be done, it will adjust the rectangle to fit.</param>
- <param name="func">The function that creates the GUI inside the window. This function must take one parameter - the id of the window it's currently making GUI for.</param>
- <param name="text">Text to display as a title for the window.</param>
- <param name="image">Texture to display an image in the titlebar.</param>
- <param name="content">Text, image and tooltip for this window.</param>
- <param name="style">An optional style to use for the window. If left out, the window style from the current GUISkin is used.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style or the screenRect you pass in.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- <returns>
- <para>The rectangle the window is at. This can be in a different position and have a different size than the one you passed in.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayout.Window(System.Int32,UnityEngine.Rect,UnityEngine.GUI/WindowFunction,UnityEngine.GUIContent,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Make a popup window that layouts its contents automatically.</para>
- </summary>
- <param name="id">A unique ID to use for each window. This is the ID you'll use to interface to it.</param>
- <param name="screenRect">Rectangle on the screen to use for the window. The layouting system will attempt to fit the window inside it - if that cannot be done, it will adjust the rectangle to fit.</param>
- <param name="func">The function that creates the GUI inside the window. This function must take one parameter - the id of the window it's currently making GUI for.</param>
- <param name="text">Text to display as a title for the window.</param>
- <param name="image">Texture to display an image in the titlebar.</param>
- <param name="content">Text, image and tooltip for this window.</param>
- <param name="style">An optional style to use for the window. If left out, the window style from the current GUISkin is used.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style or the screenRect you pass in.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- <returns>
- <para>The rectangle the window is at. This can be in a different position and have a different size than the one you passed in.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayout.Window(System.Int32,UnityEngine.Rect,UnityEngine.GUI/WindowFunction,System.String,UnityEngine.GUIStyle,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Make a popup window that layouts its contents automatically.</para>
- </summary>
- <param name="id">A unique ID to use for each window. This is the ID you'll use to interface to it.</param>
- <param name="screenRect">Rectangle on the screen to use for the window. The layouting system will attempt to fit the window inside it - if that cannot be done, it will adjust the rectangle to fit.</param>
- <param name="func">The function that creates the GUI inside the window. This function must take one parameter - the id of the window it's currently making GUI for.</param>
- <param name="text">Text to display as a title for the window.</param>
- <param name="image">Texture to display an image in the titlebar.</param>
- <param name="content">Text, image and tooltip for this window.</param>
- <param name="style">An optional style to use for the window. If left out, the window style from the current GUISkin is used.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style or the screenRect you pass in.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- <returns>
- <para>The rectangle the window is at. This can be in a different position and have a different size than the one you passed in.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayout.Window(System.Int32,UnityEngine.Rect,UnityEngine.GUI/WindowFunction,UnityEngine.Texture,UnityEngine.GUIStyle,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Make a popup window that layouts its contents automatically.</para>
- </summary>
- <param name="id">A unique ID to use for each window. This is the ID you'll use to interface to it.</param>
- <param name="screenRect">Rectangle on the screen to use for the window. The layouting system will attempt to fit the window inside it - if that cannot be done, it will adjust the rectangle to fit.</param>
- <param name="func">The function that creates the GUI inside the window. This function must take one parameter - the id of the window it's currently making GUI for.</param>
- <param name="text">Text to display as a title for the window.</param>
- <param name="image">Texture to display an image in the titlebar.</param>
- <param name="content">Text, image and tooltip for this window.</param>
- <param name="style">An optional style to use for the window. If left out, the window style from the current GUISkin is used.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style or the screenRect you pass in.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- <returns>
- <para>The rectangle the window is at. This can be in a different position and have a different size than the one you passed in.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayout.Window(System.Int32,UnityEngine.Rect,UnityEngine.GUI/WindowFunction,UnityEngine.GUIContent,UnityEngine.GUIStyle,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Make a popup window that layouts its contents automatically.</para>
- </summary>
- <param name="id">A unique ID to use for each window. This is the ID you'll use to interface to it.</param>
- <param name="screenRect">Rectangle on the screen to use for the window. The layouting system will attempt to fit the window inside it - if that cannot be done, it will adjust the rectangle to fit.</param>
- <param name="func">The function that creates the GUI inside the window. This function must take one parameter - the id of the window it's currently making GUI for.</param>
- <param name="text">Text to display as a title for the window.</param>
- <param name="image">Texture to display an image in the titlebar.</param>
- <param name="content">Text, image and tooltip for this window.</param>
- <param name="style">An optional style to use for the window. If left out, the window style from the current GUISkin is used.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style or the screenRect you pass in.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- <returns>
- <para>The rectangle the window is at. This can be in a different position and have a different size than the one you passed in.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.GUILayoutOption">
- <summary>
- <para>Class internally used to pass layout options into GUILayout functions. You don't use these directly, but construct them with the layouting functions in the GUILayout class.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.GUILayoutUtility">
- <summary>
- <para>Utility functions for implementing and extending the GUILayout class.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.GUILayoutUtility.GetAspectRect(System.Single)">
- <summary>
- <para>Reserve layout space for a rectangle with a specific aspect ratio.</para>
- </summary>
- <param name="aspect">The aspect ratio of the element (width / height).</param>
- <param name="style">An optional style. If specified, the style's padding value will be added to the sizes of the returned rectangle &amp; the style's margin values will be used for spacing.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- <returns>
- <para>The rect for the control.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayoutUtility.GetAspectRect(System.Single,UnityEngine.GUIStyle)">
- <summary>
- <para>Reserve layout space for a rectangle with a specific aspect ratio.</para>
- </summary>
- <param name="aspect">The aspect ratio of the element (width / height).</param>
- <param name="style">An optional style. If specified, the style's padding value will be added to the sizes of the returned rectangle &amp; the style's margin values will be used for spacing.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- <returns>
- <para>The rect for the control.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayoutUtility.GetAspectRect(System.Single,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Reserve layout space for a rectangle with a specific aspect ratio.</para>
- </summary>
- <param name="aspect">The aspect ratio of the element (width / height).</param>
- <param name="style">An optional style. If specified, the style's padding value will be added to the sizes of the returned rectangle &amp; the style's margin values will be used for spacing.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- <returns>
- <para>The rect for the control.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayoutUtility.GetAspectRect(System.Single,UnityEngine.GUIStyle,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Reserve layout space for a rectangle with a specific aspect ratio.</para>
- </summary>
- <param name="aspect">The aspect ratio of the element (width / height).</param>
- <param name="style">An optional style. If specified, the style's padding value will be added to the sizes of the returned rectangle &amp; the style's margin values will be used for spacing.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- <returns>
- <para>The rect for the control.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayoutUtility.GetLastRect">
- <summary>
- <para>Get the rectangle last used by GUILayout for a control.</para>
- </summary>
- <returns>
- <para>The last used rectangle.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayoutUtility.GetRect(UnityEngine.GUIContent,UnityEngine.GUIStyle)">
- <summary>
- <para>Reserve layout space for a rectangle for displaying some contents with a specific style.</para>
- </summary>
- <param name="content">The content to make room for displaying.</param>
- <param name="style">The GUIStyle to layout for.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- <returns>
- <para>A rectangle that is large enough to contain content when rendered in style.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayoutUtility.GetRect(UnityEngine.GUIContent,UnityEngine.GUIStyle,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Reserve layout space for a rectangle for displaying some contents with a specific style.</para>
- </summary>
- <param name="content">The content to make room for displaying.</param>
- <param name="style">The GUIStyle to layout for.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- <returns>
- <para>A rectangle that is large enough to contain content when rendered in style.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayoutUtility.GetRect(System.Single,System.Single)">
- <summary>
- <para>Reserve layout space for a rectangle with a fixed content area.</para>
- </summary>
- <param name="width">The width of the area you want.</param>
- <param name="height">The height of the area you want.</param>
- <param name="style">An optional GUIStyle to layout for. If specified, the style's padding value will be added to your sizes &amp; its margin value will be used for spacing.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- <returns>
- <para>The rectanlge to put your control in.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayoutUtility.GetRect(System.Single,System.Single,UnityEngine.GUIStyle)">
- <summary>
- <para>Reserve layout space for a rectangle with a fixed content area.</para>
- </summary>
- <param name="width">The width of the area you want.</param>
- <param name="height">The height of the area you want.</param>
- <param name="style">An optional GUIStyle to layout for. If specified, the style's padding value will be added to your sizes &amp; its margin value will be used for spacing.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- <returns>
- <para>The rectanlge to put your control in.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayoutUtility.GetRect(System.Single,System.Single,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Reserve layout space for a rectangle with a fixed content area.</para>
- </summary>
- <param name="width">The width of the area you want.</param>
- <param name="height">The height of the area you want.</param>
- <param name="style">An optional GUIStyle to layout for. If specified, the style's padding value will be added to your sizes &amp; its margin value will be used for spacing.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- <returns>
- <para>The rectanlge to put your control in.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayoutUtility.GetRect(System.Single,System.Single,UnityEngine.GUIStyle,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Reserve layout space for a rectangle with a fixed content area.</para>
- </summary>
- <param name="width">The width of the area you want.</param>
- <param name="height">The height of the area you want.</param>
- <param name="style">An optional GUIStyle to layout for. If specified, the style's padding value will be added to your sizes &amp; its margin value will be used for spacing.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- <returns>
- <para>The rectanlge to put your control in.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayoutUtility.GetRect(System.Single,System.Single,System.Single,System.Single)">
- <summary>
- <para>Reserve layout space for a flexible rect.</para>
- </summary>
- <param name="minWidth">The minimum width of the area passed back.</param>
- <param name="maxWidth">The maximum width of the area passed back.</param>
- <param name="minHeight">The minimum width of the area passed back.</param>
- <param name="maxHeight">The maximum width of the area passed back.</param>
- <param name="style">An optional style. If specified, the style's padding value will be added to the sizes requested &amp; the style's margin values will be used for spacing.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- <returns>
- <para>A rectangle with size between minWidth &amp; maxWidth on both axes.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayoutUtility.GetRect(System.Single,System.Single,System.Single,System.Single,UnityEngine.GUIStyle)">
- <summary>
- <para>Reserve layout space for a flexible rect.</para>
- </summary>
- <param name="minWidth">The minimum width of the area passed back.</param>
- <param name="maxWidth">The maximum width of the area passed back.</param>
- <param name="minHeight">The minimum width of the area passed back.</param>
- <param name="maxHeight">The maximum width of the area passed back.</param>
- <param name="style">An optional style. If specified, the style's padding value will be added to the sizes requested &amp; the style's margin values will be used for spacing.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- <returns>
- <para>A rectangle with size between minWidth &amp; maxWidth on both axes.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayoutUtility.GetRect(System.Single,System.Single,System.Single,System.Single,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Reserve layout space for a flexible rect.</para>
- </summary>
- <param name="minWidth">The minimum width of the area passed back.</param>
- <param name="maxWidth">The maximum width of the area passed back.</param>
- <param name="minHeight">The minimum width of the area passed back.</param>
- <param name="maxHeight">The maximum width of the area passed back.</param>
- <param name="style">An optional style. If specified, the style's padding value will be added to the sizes requested &amp; the style's margin values will be used for spacing.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- <returns>
- <para>A rectangle with size between minWidth &amp; maxWidth on both axes.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUILayoutUtility.GetRect(System.Single,System.Single,System.Single,System.Single,UnityEngine.GUIStyle,UnityEngine.GUILayoutOption[])">
- <summary>
- <para>Reserve layout space for a flexible rect.</para>
- </summary>
- <param name="minWidth">The minimum width of the area passed back.</param>
- <param name="maxWidth">The maximum width of the area passed back.</param>
- <param name="minHeight">The minimum width of the area passed back.</param>
- <param name="maxHeight">The maximum width of the area passed back.</param>
- <param name="style">An optional style. If specified, the style's padding value will be added to the sizes requested &amp; the style's margin values will be used for spacing.</param>
- <param name="options">An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.&lt;br&gt;
-See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight,
-GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.</param>
- <returns>
- <para>A rectangle with size between minWidth &amp; maxWidth on both axes.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.GUISettings">
- <summary>
- <para>General settings for how the GUI behaves.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUISettings.cursorColor">
- <summary>
- <para>The color of the cursor in text fields.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUISettings.cursorFlashSpeed">
- <summary>
- <para>The speed of text field cursor flashes.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUISettings.doubleClickSelectsWord">
- <summary>
- <para>Should double-clicking select words in text fields.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUISettings.selectionColor">
- <summary>
- <para>The color of the selection rect in text fields.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUISettings.tripleClickSelectsLine">
- <summary>
- <para>Should triple-clicking select whole text in text fields.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.GUISkin">
- <summary>
- <para>Defines how GUI looks and behaves.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUISkin.box">
- <summary>
- <para>Style used by default for GUI.Box controls.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUISkin.button">
- <summary>
- <para>Style used by default for GUI.Button controls.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUISkin.customStyles">
- <summary>
- <para>Array of GUI styles for specific needs.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUISkin.font">
- <summary>
- <para>The default font to use for all styles.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUISkin.horizontalScrollbar">
- <summary>
- <para>Style used by default for the background part of GUI.HorizontalScrollbar controls.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUISkin.horizontalScrollbarLeftButton">
- <summary>
- <para>Style used by default for the left button on GUI.HorizontalScrollbar controls.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUISkin.horizontalScrollbarRightButton">
- <summary>
- <para>Style used by default for the right button on GUI.HorizontalScrollbar controls.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUISkin.horizontalScrollbarThumb">
- <summary>
- <para>Style used by default for the thumb that is dragged in GUI.HorizontalScrollbar controls.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUISkin.horizontalSlider">
- <summary>
- <para>Style used by default for the background part of GUI.HorizontalSlider controls.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUISkin.horizontalSliderThumb">
- <summary>
- <para>Style used by default for the thumb that is dragged in GUI.HorizontalSlider controls.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUISkin.label">
- <summary>
- <para>Style used by default for GUI.Label controls.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUISkin.scrollView">
- <summary>
- <para>Style used by default for the background of ScrollView controls (see GUI.BeginScrollView).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUISkin.settings">
- <summary>
- <para>Generic settings for how controls should behave with this skin.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUISkin.textArea">
- <summary>
- <para>Style used by default for GUI.TextArea controls.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUISkin.textField">
- <summary>
- <para>Style used by default for GUI.TextField controls.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUISkin.toggle">
- <summary>
- <para>Style used by default for GUI.Toggle controls.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUISkin.verticalScrollbar">
- <summary>
- <para>Style used by default for the background part of GUI.VerticalScrollbar controls.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUISkin.verticalScrollbarDownButton">
- <summary>
- <para>Style used by default for the down button on GUI.VerticalScrollbar controls.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUISkin.verticalScrollbarThumb">
- <summary>
- <para>Style used by default for the thumb that is dragged in GUI.VerticalScrollbar controls.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUISkin.verticalScrollbarUpButton">
- <summary>
- <para>Style used by default for the up button on GUI.VerticalScrollbar controls.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUISkin.verticalSlider">
- <summary>
- <para>Style used by default for the background part of GUI.VerticalSlider controls.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUISkin.verticalSliderThumb">
- <summary>
- <para>Style used by default for the thumb that is dragged in GUI.VerticalSlider controls.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUISkin.window">
- <summary>
- <para>Style used by default for Window controls (SA GUI.Window).</para>
- </summary>
- </member>
- <member name="M:UnityEngine.GUISkin.FindStyle(System.String)">
- <summary>
- <para>Try to search for a GUIStyle. This functions returns NULL and does not give an error.</para>
- </summary>
- <param name="styleName"></param>
- </member>
- <member name="M:UnityEngine.GUISkin.GetStyle(System.String)">
- <summary>
- <para>Get a named GUIStyle.</para>
- </summary>
- <param name="styleName"></param>
- </member>
- <member name="T:UnityEngine.GUIStyle">
- <summary>
- <para>Styling information for GUI elements.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUIStyle.active">
- <summary>
- <para>Rendering settings for when the control is pressed down.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUIStyle.alignment">
- <summary>
- <para>Text alignment.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUIStyle.border">
- <summary>
- <para>The borders of all background images.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUIStyle.clipping">
- <summary>
- <para>What to do when the contents to be rendered is too large to fit within the area given.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUIStyle.contentOffset">
- <summary>
- <para>Pixel offset to apply to the content of this GUIstyle.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUIStyle.fixedHeight">
- <summary>
- <para>If non-0, any GUI elements rendered with this style will have the height specified here.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUIStyle.fixedWidth">
- <summary>
- <para>If non-0, any GUI elements rendered with this style will have the width specified here.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUIStyle.focused">
- <summary>
- <para>Rendering settings for when the element has keyboard focus.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUIStyle.font">
- <summary>
- <para>The font to use for rendering. If null, the default font for the current GUISkin is used instead.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUIStyle.fontSize">
- <summary>
- <para>The font size to use (for dynamic fonts).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUIStyle.fontStyle">
- <summary>
- <para>The font style to use (for dynamic fonts).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUIStyle.hover">
- <summary>
- <para>Rendering settings for when the mouse is hovering over the control.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUIStyle.imagePosition">
- <summary>
- <para>How image and text of the GUIContent is combined.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUIStyle.lineHeight">
- <summary>
- <para>The height of one line of text with this style, measured in pixels. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUIStyle.margin">
- <summary>
- <para>The margins between elements rendered in this style and any other GUI elements.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUIStyle.name">
- <summary>
- <para>The name of this GUIStyle. Used for getting them based on name.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUIStyle.none">
- <summary>
- <para>Shortcut for an empty GUIStyle.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUIStyle.normal">
- <summary>
- <para>Rendering settings for when the component is displayed normally.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUIStyle.onActive">
- <summary>
- <para>Rendering settings for when the element is turned on and pressed down.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUIStyle.onFocused">
- <summary>
- <para>Rendering settings for when the element has keyboard and is turned on.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUIStyle.onHover">
- <summary>
- <para>Rendering settings for when the control is turned on and the mouse is hovering it.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUIStyle.onNormal">
- <summary>
- <para>Rendering settings for when the control is turned on.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUIStyle.overflow">
- <summary>
- <para>Extra space to be added to the background image.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUIStyle.padding">
- <summary>
- <para>Space from the edge of GUIStyle to the start of the contents.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUIStyle.richText">
- <summary>
- <para>Enable HTML-style tags for Text Formatting Markup.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUIStyle.stretchHeight">
- <summary>
- <para>Can GUI elements of this style be stretched vertically for better layout?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUIStyle.stretchWidth">
- <summary>
- <para>Can GUI elements of this style be stretched horizontally for better layouting?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUIStyle.wordWrap">
- <summary>
- <para>Should the text be wordwrapped?</para>
- </summary>
- </member>
- <member name="M:UnityEngine.GUIStyle.CalcHeight(UnityEngine.GUIContent,System.Single)">
- <summary>
- <para>How tall this element will be when rendered with content and a specific width.</para>
- </summary>
- <param name="content"></param>
- <param name="width"></param>
- </member>
- <member name="M:UnityEngine.GUIStyle.CalcMinMaxWidth(UnityEngine.GUIContent,System.Single&amp;,System.Single&amp;)">
- <summary>
- <para>Calculate the minimum and maximum widths for this style rendered with content.</para>
- </summary>
- <param name="content"></param>
- <param name="minWidth"></param>
- <param name="maxWidth"></param>
- </member>
- <member name="M:UnityEngine.GUIStyle.CalcScreenSize(UnityEngine.Vector2)">
- <summary>
- <para>Calculate the size of an element formatted with this style, and a given space to content.</para>
- </summary>
- <param name="contentSize"></param>
- </member>
- <member name="M:UnityEngine.GUIStyle.CalcSize(UnityEngine.GUIContent)">
- <summary>
- <para>Calculate the size of some content if it is rendered with this style.</para>
- </summary>
- <param name="content"></param>
- </member>
- <member name="M:UnityEngine.GUIStyle.#ctor">
- <summary>
- <para>Constructor for empty GUIStyle.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.GUIStyle.#ctor(UnityEngine.GUIStyle)">
- <summary>
- <para>Constructs GUIStyle identical to given other GUIStyle.</para>
- </summary>
- <param name="other"></param>
- </member>
- <member name="M:UnityEngine.GUIStyle.Draw(UnityEngine.Rect,System.Boolean,System.Boolean,System.Boolean,System.Boolean)">
- <summary>
- <para>Draw this GUIStyle on to the screen, internal version.</para>
- </summary>
- <param name="position"></param>
- <param name="isHover"></param>
- <param name="isActive"></param>
- <param name="on"></param>
- <param name="hasKeyboardFocus"></param>
- </member>
- <member name="M:UnityEngine.GUIStyle.Draw(UnityEngine.Rect,System.String,System.Boolean,System.Boolean,System.Boolean,System.Boolean)">
- <summary>
- <para>Draw the GUIStyle with a text string inside.</para>
- </summary>
- <param name="position"></param>
- <param name="text"></param>
- <param name="isHover"></param>
- <param name="isActive"></param>
- <param name="on"></param>
- <param name="hasKeyboardFocus"></param>
- </member>
- <member name="M:UnityEngine.GUIStyle.Draw(UnityEngine.Rect,UnityEngine.Texture,System.Boolean,System.Boolean,System.Boolean,System.Boolean)">
- <summary>
- <para>Draw the GUIStyle with an image inside. If the image is too large to fit within the content area of the style it is scaled down.</para>
- </summary>
- <param name="position"></param>
- <param name="image"></param>
- <param name="isHover"></param>
- <param name="isActive"></param>
- <param name="on"></param>
- <param name="hasKeyboardFocus"></param>
- </member>
- <member name="M:UnityEngine.GUIStyle.Draw(UnityEngine.Rect,UnityEngine.GUIContent,System.Int32)">
- <summary>
- <para>Draw the GUIStyle with text and an image inside. If the image is too large to fit within the content area of the style it is scaled down.</para>
- </summary>
- <param name="position"></param>
- <param name="content"></param>
- <param name="controlID"></param>
- <param name="on"></param>
- <param name="isHover"></param>
- <param name="isActive"></param>
- <param name="hasKeyboardFocus"></param>
- </member>
- <member name="M:UnityEngine.GUIStyle.Draw(UnityEngine.Rect,UnityEngine.GUIContent,System.Int32,System.Boolean)">
- <summary>
- <para>Draw the GUIStyle with text and an image inside. If the image is too large to fit within the content area of the style it is scaled down.</para>
- </summary>
- <param name="position"></param>
- <param name="content"></param>
- <param name="controlID"></param>
- <param name="on"></param>
- <param name="isHover"></param>
- <param name="isActive"></param>
- <param name="hasKeyboardFocus"></param>
- </member>
- <member name="M:UnityEngine.GUIStyle.Draw(UnityEngine.Rect,UnityEngine.GUIContent,System.Boolean,System.Boolean,System.Boolean,System.Boolean)">
- <summary>
- <para>Draw the GUIStyle with text and an image inside. If the image is too large to fit within the content area of the style it is scaled down.</para>
- </summary>
- <param name="position"></param>
- <param name="content"></param>
- <param name="controlID"></param>
- <param name="on"></param>
- <param name="isHover"></param>
- <param name="isActive"></param>
- <param name="hasKeyboardFocus"></param>
- </member>
- <member name="M:UnityEngine.GUIStyle.DrawCursor(UnityEngine.Rect,UnityEngine.GUIContent,System.Int32,System.Int32)">
- <summary>
- <para>Draw this GUIStyle with selected content.</para>
- </summary>
- <param name="position"></param>
- <param name="content"></param>
- <param name="controlID"></param>
- <param name="character"></param>
- </member>
- <member name="M:UnityEngine.GUIStyle.DrawWithTextSelection(UnityEngine.Rect,UnityEngine.GUIContent,System.Int32,System.Int32,System.Int32)">
- <summary>
- <para>Draw this GUIStyle with selected content.</para>
- </summary>
- <param name="position"></param>
- <param name="content"></param>
- <param name="controlID"></param>
- <param name="firstSelectedCharacter"></param>
- <param name="lastSelectedCharacter"></param>
- </member>
- <member name="M:UnityEngine.GUIStyle.GetCursorPixelPosition(UnityEngine.Rect,UnityEngine.GUIContent,System.Int32)">
- <summary>
- <para>Get the pixel position of a given string index.</para>
- </summary>
- <param name="position"></param>
- <param name="content"></param>
- <param name="cursorStringIndex"></param>
- </member>
- <member name="M:UnityEngine.GUIStyle.GetCursorStringIndex(UnityEngine.Rect,UnityEngine.GUIContent,UnityEngine.Vector2)">
- <summary>
- <para>Get the cursor position (indexing into contents.text) when the user clicked at cursorPixelPosition.</para>
- </summary>
- <param name="position"></param>
- <param name="content"></param>
- <param name="cursorPixelPosition"></param>
- </member>
- <member name="?:UnityEngine.GUIStyle.implop_GUIStyle(string)(System.String)">
- <summary>
- <para>Get a named GUI style from the current skin.</para>
- </summary>
- <param name="str"></param>
- </member>
- <member name="T:UnityEngine.GUIStyleState">
- <summary>
- <para>Specialized values for the given states used by GUIStyle objects.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUIStyleState.background">
- <summary>
- <para>The background image used by GUI elements in this given state.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUIStyleState.textColor">
- <summary>
- <para>The text color used by GUI elements in this state.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.GUITargetAttribute">
- <summary>
- <para>Allows to control for which display the OnGUI is called.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.GUITargetAttribute.#ctor">
- <summary>
- <para>Default constructor initializes the attribute for OnGUI to be called for all available displays.</para>
- </summary>
- <param name="displayIndex">Display index.</param>
- <param name="displayIndex1">Display index.</param>
- <param name="displayIndexList">Display index list.</param>
- </member>
- <member name="M:UnityEngine.GUITargetAttribute.#ctor(System.Int32)">
- <summary>
- <para>Default constructor initializes the attribute for OnGUI to be called for all available displays.</para>
- </summary>
- <param name="displayIndex">Display index.</param>
- <param name="displayIndex1">Display index.</param>
- <param name="displayIndexList">Display index list.</param>
- </member>
- <member name="M:UnityEngine.GUITargetAttribute.#ctor(System.Int32,System.Int32)">
- <summary>
- <para>Default constructor initializes the attribute for OnGUI to be called for all available displays.</para>
- </summary>
- <param name="displayIndex">Display index.</param>
- <param name="displayIndex1">Display index.</param>
- <param name="displayIndexList">Display index list.</param>
- </member>
- <member name="M:UnityEngine.GUITargetAttribute.#ctor(System.Int32,System.Int32,System.Int32[])">
- <summary>
- <para>Default constructor initializes the attribute for OnGUI to be called for all available displays.</para>
- </summary>
- <param name="displayIndex">Display index.</param>
- <param name="displayIndex1">Display index.</param>
- <param name="displayIndexList">Display index list.</param>
- </member>
- <member name="T:UnityEngine.GUIUtility">
- <summary>
- <para>Utility class for making new GUI controls.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUIUtility.hasModalWindow">
- <summary>
- <para>A global property, which is true if a ModalWindow is being displayed, false otherwise.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUIUtility.hotControl">
- <summary>
- <para>The controlID of the current hot control.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUIUtility.keyboardControl">
- <summary>
- <para>The controlID of the control that has keyboard focus.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUIUtility.systemCopyBuffer">
- <summary>
- <para>Get access to the system-wide clipboard.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.GUIUtility.AlignRectToDevice(UnityEngine.Rect)">
- <summary>
- <para>Align a local space rectangle to the pixel grid.</para>
- </summary>
- <param name="local">The local space rectangle that needs to be processed.</param>
- <param name="widthInPixels">Width, in pixel units, of the axis-aligned bounding box that encompasses the aligned points.</param>
- <param name="heightInPixels">Height, in pixel units, of the axis-aligned bounding box that encompasses the aligned points.</param>
- <param name="rect"></param>
- <returns>
- <para>The aligned rectangle in local space.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUIUtility.AlignRectToDevice(UnityEngine.Rect,System.Int32&amp;,System.Int32&amp;)">
- <summary>
- <para>Align a local space rectangle to the pixel grid.</para>
- </summary>
- <param name="local">The local space rectangle that needs to be processed.</param>
- <param name="widthInPixels">Width, in pixel units, of the axis-aligned bounding box that encompasses the aligned points.</param>
- <param name="heightInPixels">Height, in pixel units, of the axis-aligned bounding box that encompasses the aligned points.</param>
- <param name="rect"></param>
- <returns>
- <para>The aligned rectangle in local space.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.GUIUtility.ExitGUI">
- <summary>
- <para>Puts the GUI in a state that will prevent all subsequent immediate mode GUI functions from evaluating for the remainder of the GUI loop by throwing an ExitGUIException.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.GUIUtility.GetControlID(UnityEngine.FocusType)">
- <summary>
- <para>Get a unique ID for a control.</para>
- </summary>
- <param name="focus"></param>
- <param name="position"></param>
- </member>
- <member name="M:UnityEngine.GUIUtility.GetControlID(UnityEngine.FocusType,UnityEngine.Rect)">
- <summary>
- <para>Get a unique ID for a control.</para>
- </summary>
- <param name="focus"></param>
- <param name="position"></param>
- </member>
- <member name="M:UnityEngine.GUIUtility.GetControlID(System.Int32,UnityEngine.FocusType)">
- <summary>
- <para>Get a unique ID for a control, using an integer as a hint to help ensure correct matching of IDs to controls.</para>
- </summary>
- <param name="hint"></param>
- <param name="focus"></param>
- <param name="focusType"></param>
- <param name="rect"></param>
- </member>
- <member name="M:UnityEngine.GUIUtility.GetControlID(System.Int32,UnityEngine.FocusType,UnityEngine.Rect)">
- <summary>
- <para>Get a unique ID for a control, using an integer as a hint to help ensure correct matching of IDs to controls.</para>
- </summary>
- <param name="hint"></param>
- <param name="focus"></param>
- <param name="focusType"></param>
- <param name="rect"></param>
- </member>
- <member name="M:UnityEngine.GUIUtility.GetControlID(UnityEngine.GUIContent,UnityEngine.FocusType)">
- <summary>
- <para>Get a unique ID for a control, using a the label content as a hint to help ensure correct matching of IDs to controls.</para>
- </summary>
- <param name="contents"></param>
- <param name="focus"></param>
- <param name="position"></param>
- </member>
- <member name="M:UnityEngine.GUIUtility.GetControlID(UnityEngine.GUIContent,UnityEngine.FocusType,UnityEngine.Rect)">
- <summary>
- <para>Get a unique ID for a control, using a the label content as a hint to help ensure correct matching of IDs to controls.</para>
- </summary>
- <param name="contents"></param>
- <param name="focus"></param>
- <param name="position"></param>
- </member>
- <member name="M:UnityEngine.GUIUtility.GetStateObject(System.Type,System.Int32)">
- <summary>
- <para>Get a state object from a controlID.</para>
- </summary>
- <param name="t"></param>
- <param name="controlID"></param>
- </member>
- <member name="M:UnityEngine.GUIUtility.GUIToScreenPoint(UnityEngine.Vector2)">
- <summary>
- <para>Convert a point from GUI position to screen space.</para>
- </summary>
- <param name="guiPoint"></param>
- </member>
- <member name="M:UnityEngine.GUIUtility.QueryStateObject(System.Type,System.Int32)">
- <summary>
- <para>Get an existing state object from a controlID.</para>
- </summary>
- <param name="t"></param>
- <param name="controlID"></param>
- </member>
- <member name="M:UnityEngine.GUIUtility.RotateAroundPivot(System.Single,UnityEngine.Vector2)">
- <summary>
- <para>Helper function to rotate the GUI around a point.</para>
- </summary>
- <param name="angle"></param>
- <param name="pivotPoint"></param>
- </member>
- <member name="M:UnityEngine.GUIUtility.ScaleAroundPivot(UnityEngine.Vector2,UnityEngine.Vector2)">
- <summary>
- <para>Helper function to scale the GUI around a point.</para>
- </summary>
- <param name="scale"></param>
- <param name="pivotPoint"></param>
- </member>
- <member name="M:UnityEngine.GUIUtility.ScreenToGUIPoint(UnityEngine.Vector2)">
- <summary>
- <para>Convert a point from screen space to GUI position.</para>
- </summary>
- <param name="screenPoint"></param>
- </member>
- <member name="T:UnityEngine.ImagePosition">
- <summary>
- <para>How image and text is placed inside GUIStyle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ImagePosition.ImageAbove">
- <summary>
- <para>Image is above the text.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ImagePosition.ImageLeft">
- <summary>
- <para>Image is to the left of the text.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ImagePosition.ImageOnly">
- <summary>
- <para>Only the image is displayed.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ImagePosition.TextOnly">
- <summary>
- <para>Only the text is displayed.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ScaleMode">
- <summary>
- <para>Scaling mode to draw textures with.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ScaleMode.ScaleAndCrop">
- <summary>
- <para>Scales the texture, maintaining aspect ratio, so it completely covers the position rectangle passed to GUI.DrawTexture. If the texture is being draw to a rectangle with a different aspect ratio than the original, the image is cropped.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ScaleMode.ScaleToFit">
- <summary>
- <para>Scales the texture, maintaining aspect ratio, so it completely fits withing the position rectangle passed to GUI.DrawTexture.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ScaleMode.StretchToFill">
- <summary>
- <para>Stretches the texture to fill the complete rectangle passed in to GUI.DrawTexture.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.TextClipping">
- <summary>
- <para>Different methods for how the GUI system handles text being too large to fit the rectangle allocated.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextClipping.Clip">
- <summary>
- <para>Text gets clipped to be inside the element.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextClipping.Overflow">
- <summary>
- <para>Text flows freely outside the element.</para>
- </summary>
- </member>
- <member name="A:UnityEngine.IMGUIModule">
- <summary>
- <para>The IMGUI module provides Unity's immediate mode GUI solution for creating in-game and editor user interfaces.</para>
- </summary>
- </member>
- </members>
-</doc>
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.ImageConversionModule.dll b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.ImageConversionModule.dll
deleted file mode 100644
index 7d0da2d..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.ImageConversionModule.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.ImageConversionModule.xml b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.ImageConversionModule.xml
deleted file mode 100644
index 0cf738e..0000000
--- a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.ImageConversionModule.xml
+++ /dev/null
@@ -1,56 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
-<doc>
- <members>
- <assembly>
- <name>UnityEngine.ImageConversionModule</name>
- </assembly>
- <member name="T:UnityEngine.ImageConversion">
- <summary>
- <para>Class with utility methods and extension methods to deal with converting image data from or to PNG and JPEG formats.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.ImageConversion.EncodeToEXR(UnityEngine.Texture2D,UnityEngine.Texture2D/EXRFlags)">
- <summary>
- <para>Encodes this texture into the EXR format.</para>
- </summary>
- <param name="tex">The texture to convert.</param>
- <param name="flags">Flags used to control compression and the output format.</param>
- </member>
- <member name="M:UnityEngine.ImageConversion.EncodeToJPG(UnityEngine.Texture2D,System.Int32)">
- <summary>
- <para>Encodes this texture into JPG format.</para>
- </summary>
- <param name="tex">Text texture to convert.</param>
- <param name="quality">JPG quality to encode with, 1..100 (default 75).</param>
- </member>
- <member name="M:UnityEngine.ImageConversion.EncodeToJPG(UnityEngine.Texture2D)">
- <summary>
- <para>Encodes this texture into JPG format.</para>
- </summary>
- <param name="tex">Text texture to convert.</param>
- <param name="quality">JPG quality to encode with, 1..100 (default 75).</param>
- </member>
- <member name="M:UnityEngine.ImageConversion.EncodeToPNG(UnityEngine.Texture2D)">
- <summary>
- <para>Encodes this texture into PNG format.</para>
- </summary>
- <param name="tex">The texture to convert.</param>
- </member>
- <member name="M:UnityEngine.ImageConversion.LoadImage(UnityEngine.Texture2D,System.Byte[],System.Boolean)">
- <summary>
- <para>Loads PNG/JPG image byte array into a texture.</para>
- </summary>
- <param name="data">The byte array containing the image data to load.</param>
- <param name="markNonReadable">Set to false by default, pass true to optionally mark the texture as non-readable.</param>
- <param name="tex">The texture to load the image into.</param>
- <returns>
- <para>Returns true if the data can be loaded, false otherwise.</para>
- </returns>
- </member>
- <member name="A:UnityEngine.ImageConversionModule">
- <summary>
- <para>The ImageConversion module implements the ImageConversion class which provides helper methods to convert images from and to PNG, JPEG or EXR formats.</para>
- </summary>
- </member>
- </members>
-</doc>
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.InputModule.dll b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.InputModule.dll
deleted file mode 100644
index 9914733..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.InputModule.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.InputModule.xml b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.InputModule.xml
deleted file mode 100644
index 0eb8281..0000000
--- a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.InputModule.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
-<doc>
- <members>
- <assembly>
- <name>UnityEngine.InputModule</name>
- </assembly>
- </members>
-</doc>
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.JSONSerializeModule.dll b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.JSONSerializeModule.dll
deleted file mode 100644
index 82c8d0a..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.JSONSerializeModule.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.JSONSerializeModule.xml b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.JSONSerializeModule.xml
deleted file mode 100644
index 241b741..0000000
--- a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.JSONSerializeModule.xml
+++ /dev/null
@@ -1,64 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
-<doc>
- <members>
- <assembly>
- <name>UnityEngine.JSONSerializeModule</name>
- </assembly>
- <member name="T:UnityEngine.JsonUtility">
- <summary>
- <para>Utility functions for working with JSON data.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.JsonUtility.FromJson(System.String)">
- <summary>
- <para>Create an object from its JSON representation.</para>
- </summary>
- <param name="json">The JSON representation of the object.</param>
- <returns>
- <para>An instance of the object.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.JsonUtility.FromJson(System.String,System.Type)">
- <summary>
- <para>Create an object from its JSON representation.</para>
- </summary>
- <param name="json">The JSON representation of the object.</param>
- <param name="type">The type of object represented by the Json.</param>
- <returns>
- <para>An instance of the object.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.JsonUtility.FromJsonOverwrite(System.String,System.Object)">
- <summary>
- <para>Overwrite data in an object by reading from its JSON representation.</para>
- </summary>
- <param name="json">The JSON representation of the object.</param>
- <param name="objectToOverwrite">The object that should be overwritten.</param>
- </member>
- <member name="M:UnityEngine.JsonUtility.ToJson(System.Object)">
- <summary>
- <para>Generate a JSON representation of the public fields of an object.</para>
- </summary>
- <param name="obj">The object to convert to JSON form.</param>
- <param name="prettyPrint">If true, format the output for readability. If false, format the output for minimum size. Default is false.</param>
- <returns>
- <para>The object's data in JSON format.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.JsonUtility.ToJson(System.Object,System.Boolean)">
- <summary>
- <para>Generate a JSON representation of the public fields of an object.</para>
- </summary>
- <param name="obj">The object to convert to JSON form.</param>
- <param name="prettyPrint">If true, format the output for readability. If false, format the output for minimum size. Default is false.</param>
- <returns>
- <para>The object's data in JSON format.</para>
- </returns>
- </member>
- <member name="A:UnityEngine.JSONSerializeModule">
- <summary>
- <para>The JSONSerialize module provides the JsonUtility class which lets you serialize Unity Objects to JSON format.</para>
- </summary>
- </member>
- </members>
-</doc>
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.LocalizationModule.dll b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.LocalizationModule.dll
deleted file mode 100644
index 1f99d39..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.LocalizationModule.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.LocalizationModule.xml b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.LocalizationModule.xml
deleted file mode 100644
index d887958..0000000
--- a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.LocalizationModule.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
-<doc>
- <members>
- <assembly>
- <name>UnityEngine.LocalizationModule</name>
- </assembly>
- </members>
-</doc>
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.Networking.dll b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.Networking.dll
deleted file mode 100755
index 45f7f0b..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.Networking.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.ParticleSystemModule.dll b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.ParticleSystemModule.dll
deleted file mode 100644
index 3d54447..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.ParticleSystemModule.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.ParticleSystemModule.xml b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.ParticleSystemModule.xml
deleted file mode 100644
index 4678f63..0000000
--- a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.ParticleSystemModule.xml
+++ /dev/null
@@ -1,4154 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
-<doc>
- <members>
- <assembly>
- <name>UnityEngine.ParticleSystemModule</name>
- </assembly>
- <member name="T:UnityEngine.ParticleCollisionEvent">
- <summary>
- <para>Information about a particle collision.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleCollisionEvent.colliderComponent">
- <summary>
- <para>The Collider or Collider2D for the GameObject struck by the particles.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleCollisionEvent.intersection">
- <summary>
- <para>Intersection point of the collision in world coordinates.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleCollisionEvent.normal">
- <summary>
- <para>Geometry normal at the intersection point of the collision.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleCollisionEvent.velocity">
- <summary>
- <para>Incident velocity at the intersection point of the collision.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ParticlePhysicsExtensions">
- <summary>
- <para>Method extension for Physics in Particle System.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.ParticlePhysicsExtensions.GetCollisionEvents(UnityEngine.ParticleSystem,UnityEngine.GameObject,UnityEngine.ParticleCollisionEvent[])">
- <summary>
- <para>Get the particle collision events for a GameObject. Returns the number of events written to the array.</para>
- </summary>
- <param name="go">The GameObject for which to retrieve collision events.</param>
- <param name="collisionEvents">Array to write collision events to.</param>
- <param name="ps"></param>
- </member>
- <member name="M:UnityEngine.ParticlePhysicsExtensions.GetSafeCollisionEventSize(UnityEngine.ParticleSystem)">
- <summary>
- <para>Safe array size for use with ParticleSystem.GetCollisionEvents.</para>
- </summary>
- <param name="ps"></param>
- </member>
- <member name="M:UnityEngine.ParticlePhysicsExtensions.GetSafeTriggerParticlesSize(UnityEngine.ParticleSystem,UnityEngine.ParticleSystemTriggerEventType)">
- <summary>
- <para>Safe array size for use with ParticleSystem.GetTriggerParticles.</para>
- </summary>
- <param name="ps">Particle system.</param>
- <param name="type">Type of trigger to return size for.</param>
- <returns>
- <para>Number of particles with this trigger event type.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.ParticlePhysicsExtensions.GetTriggerParticles">
- <summary>
- <para>Get the particles that met the condition in the particle trigger module. Returns the number of particles written to the array.</para>
- </summary>
- <param name="ps">Particle system.</param>
- <param name="type">Type of trigger to return particles for.</param>
- <param name="particles">The array of particles matching the trigger event type.</param>
- <returns>
- <para>Number of particles with this trigger event type.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.ParticlePhysicsExtensions.SetTriggerParticles">
- <summary>
- <para>Write modified particles back to the particle system, during a call to OnParticleTrigger.</para>
- </summary>
- <param name="ps">Particle system.</param>
- <param name="type">Type of trigger to set particles for.</param>
- <param name="particles">Particle array.</param>
- <param name="offset">Offset into the array, if you only want to write back a subset of the returned particles.</param>
- <param name="count">Number of particles to write, if you only want to write back a subset of the returned particles.</param>
- </member>
- <member name="M:UnityEngine.ParticlePhysicsExtensions.SetTriggerParticles">
- <summary>
- <para>Write modified particles back to the particle system, during a call to OnParticleTrigger.</para>
- </summary>
- <param name="ps">Particle system.</param>
- <param name="type">Type of trigger to set particles for.</param>
- <param name="particles">Particle array.</param>
- <param name="offset">Offset into the array, if you only want to write back a subset of the returned particles.</param>
- <param name="count">Number of particles to write, if you only want to write back a subset of the returned particles.</param>
- </member>
- <member name="T:UnityEngine.ParticleSystem">
- <summary>
- <para>Script interface for particle systems (Shuriken).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.automaticCullingEnabled">
- <summary>
- <para>Does this system support Automatic Culling?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.collision">
- <summary>
- <para>Access the particle system collision module.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.colorBySpeed">
- <summary>
- <para>Access the particle system color by lifetime module.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.colorOverLifetime">
- <summary>
- <para>Access the particle system color over lifetime module.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.customData">
- <summary>
- <para>Access the particle system Custom Data module.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.duration">
- <summary>
- <para>The duration of the particle system in seconds (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.emission">
- <summary>
- <para>Access the particle system emission module.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.emissionRate">
- <summary>
- <para>The rate of emission.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.enableEmission">
- <summary>
- <para>When set to false, the particle system will not emit particles.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.externalForces">
- <summary>
- <para>Access the particle system external forces module.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.forceOverLifetime">
- <summary>
- <para>Access the particle system force over lifetime module.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.gravityModifier">
- <summary>
- <para>Scale being applied to the gravity defined by Physics.gravity.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.inheritVelocity">
- <summary>
- <para>Access the particle system velocity inheritance module.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.isEmitting">
- <summary>
- <para>Is the Particle System currently emitting particles? A Particle System may stop emitting when its emission module has finished, it has been paused or if the system has been stopped using ParticleSystem.Stop|Stop with the ParticleSystemStopBehavior.StopEmitting|StopEmitting flag. Resume emitting by calling ParticleSystem.Play|Play.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.isPaused">
- <summary>
- <para>Is the Particle System paused right now?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.isPlaying">
- <summary>
- <para>Is the Particle System playing right now?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.isStopped">
- <summary>
- <para>Is the Particle System stopped right now?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.lights">
- <summary>
- <para>Access the particle system lights module.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.limitVelocityOverLifetime">
- <summary>
- <para>Access the particle system limit velocity over lifetime module.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.loop">
- <summary>
- <para>Is the particle system looping?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.main">
- <summary>
- <para>Access the main particle system settings.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.maxParticles">
- <summary>
- <para>The maximum number of particles to emit.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.noise">
- <summary>
- <para>Access the particle system noise module.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.particleCount">
- <summary>
- <para>The current number of particles (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.playbackSpeed">
- <summary>
- <para>The playback speed of the particle system. 1 is normal playback speed.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.playOnAwake">
- <summary>
- <para>If set to true, the particle system will automatically start playing on startup.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.randomSeed">
- <summary>
- <para>Override the random seed used for the particle system emission.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.rotationBySpeed">
- <summary>
- <para>Access the particle system rotation by speed module.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.rotationOverLifetime">
- <summary>
- <para>Access the particle system rotation over lifetime module.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.scalingMode">
- <summary>
- <para>The scaling mode applied to particle sizes and positions.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.shape">
- <summary>
- <para>Access the particle system shape module.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.simulationSpace">
- <summary>
- <para>This selects the space in which to simulate particles. It can be either world or local space.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.sizeBySpeed">
- <summary>
- <para>Access the particle system size by speed module.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.sizeOverLifetime">
- <summary>
- <para>Access the particle system size over lifetime module.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.startColor">
- <summary>
- <para>The initial color of particles when emitted.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.startDelay">
- <summary>
- <para>Start delay in seconds.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.startLifetime">
- <summary>
- <para>The total lifetime in seconds that particles will have when emitted. When using curves, this values acts as a scale on the curve. This value is set in the particle when it is created by the particle system.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.startRotation">
- <summary>
- <para>The initial rotation of particles when emitted. When using curves, this values acts as a scale on the curve.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.startRotation3D">
- <summary>
- <para>The initial 3D rotation of particles when emitted. When using curves, this values acts as a scale on the curves.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.startSize">
- <summary>
- <para>The initial size of particles when emitted. When using curves, this values acts as a scale on the curve.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.startSpeed">
- <summary>
- <para>The initial speed of particles when emitted. When using curves, this values acts as a scale on the curve.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.subEmitters">
- <summary>
- <para>Access the particle system sub emitters module.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.textureSheetAnimation">
- <summary>
- <para>Access the particle system texture sheet animation module.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.time">
- <summary>
- <para>Playback position in seconds.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.trails">
- <summary>
- <para>Access the particle system trails module.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.trigger">
- <summary>
- <para>Access the particle system trigger module.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.useAutoRandomSeed">
- <summary>
- <para>Controls whether the Particle System uses an automatically-generated random number to seed the random number generator.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.velocityOverLifetime">
- <summary>
- <para>Access the particle system velocity over lifetime module.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ParticleSystem.Burst">
- <summary>
- <para>Script interface for a Burst.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.Burst.count">
- <summary>
- <para>Number of particles to be emitted.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.Burst.cycleCount">
- <summary>
- <para>How many times to play the burst. (0 means infinitely).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.Burst.maxCount">
- <summary>
- <para>Maximum number of particles to be emitted.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.Burst.minCount">
- <summary>
- <para>Minimum number of particles to be emitted.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.Burst.repeatInterval">
- <summary>
- <para>How often to repeat the burst, in seconds.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.Burst.time">
- <summary>
- <para>The time that each burst occurs.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.ParticleSystem.Burst.#ctor(System.Single,System.Int16)">
- <summary>
- <para>Construct a new Burst with a time and count.</para>
- </summary>
- <param name="_time">Time to emit the burst.</param>
- <param name="_minCount">Minimum number of particles to emit.</param>
- <param name="_maxCount">Maximum number of particles to emit.</param>
- <param name="_count">Number of particles to emit.</param>
- <param name="_cycleCount">Number of times to play the burst. (0 means indefinitely).</param>
- <param name="_repeatInterval">How often to repeat the burst, in seconds.</param>
- </member>
- <member name="M:UnityEngine.ParticleSystem.Burst.#ctor(System.Single,System.Int16,System.Int16)">
- <summary>
- <para>Construct a new Burst with a time and count.</para>
- </summary>
- <param name="_time">Time to emit the burst.</param>
- <param name="_minCount">Minimum number of particles to emit.</param>
- <param name="_maxCount">Maximum number of particles to emit.</param>
- <param name="_count">Number of particles to emit.</param>
- <param name="_cycleCount">Number of times to play the burst. (0 means indefinitely).</param>
- <param name="_repeatInterval">How often to repeat the burst, in seconds.</param>
- </member>
- <member name="M:UnityEngine.ParticleSystem.Burst.#ctor(System.Single,System.Int16,System.Int16,System.Int32,System.Single)">
- <summary>
- <para>Construct a new Burst with a time and count.</para>
- </summary>
- <param name="_time">Time to emit the burst.</param>
- <param name="_minCount">Minimum number of particles to emit.</param>
- <param name="_maxCount">Maximum number of particles to emit.</param>
- <param name="_count">Number of particles to emit.</param>
- <param name="_cycleCount">Number of times to play the burst. (0 means indefinitely).</param>
- <param name="_repeatInterval">How often to repeat the burst, in seconds.</param>
- </member>
- <member name="M:UnityEngine.ParticleSystem.Burst.#ctor(System.Single,UnityEngine.ParticleSystem/MinMaxCurve)">
- <summary>
- <para>Construct a new Burst with a time and count.</para>
- </summary>
- <param name="_time">Time to emit the burst.</param>
- <param name="_minCount">Minimum number of particles to emit.</param>
- <param name="_maxCount">Maximum number of particles to emit.</param>
- <param name="_count">Number of particles to emit.</param>
- <param name="_cycleCount">Number of times to play the burst. (0 means indefinitely).</param>
- <param name="_repeatInterval">How often to repeat the burst, in seconds.</param>
- </member>
- <member name="M:UnityEngine.ParticleSystem.Burst.#ctor(System.Single,UnityEngine.ParticleSystem/MinMaxCurve,System.Int32,System.Single)">
- <summary>
- <para>Construct a new Burst with a time and count.</para>
- </summary>
- <param name="_time">Time to emit the burst.</param>
- <param name="_minCount">Minimum number of particles to emit.</param>
- <param name="_maxCount">Maximum number of particles to emit.</param>
- <param name="_count">Number of particles to emit.</param>
- <param name="_cycleCount">Number of times to play the burst. (0 means indefinitely).</param>
- <param name="_repeatInterval">How often to repeat the burst, in seconds.</param>
- </member>
- <member name="M:UnityEngine.ParticleSystem.Clear(System.Boolean)">
- <summary>
- <para>Remove all particles in the particle system.</para>
- </summary>
- <param name="withChildren">Clear all child particle systems as well.</param>
- </member>
- <member name="T:UnityEngine.ParticleSystem.CollisionModule">
- <summary>
- <para>Script interface for the Collision module.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.CollisionModule.bounce">
- <summary>
- <para>How much force is applied to each particle after a collision.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.CollisionModule.bounceMultiplier">
- <summary>
- <para>Change the bounce multiplier.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.CollisionModule.colliderForce">
- <summary>
- <para>How much force is applied to a Collider when hit by particles from this Particle System.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.CollisionModule.collidesWith">
- <summary>
- <para>Control which layers this particle system collides with.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.CollisionModule.dampen">
- <summary>
- <para>How much speed is lost from each particle after a collision.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.CollisionModule.dampenMultiplier">
- <summary>
- <para>Change the dampen multiplier.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.CollisionModule.enabled">
- <summary>
- <para>Enable/disable the Collision module.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.CollisionModule.enableDynamicColliders">
- <summary>
- <para>Allow particles to collide with dynamic colliders when using world collision mode.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.CollisionModule.enableInteriorCollisions">
- <summary>
- <para>Allow particles to collide when inside colliders.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.CollisionModule.lifetimeLoss">
- <summary>
- <para>How much a particle's lifetime is reduced after a collision.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.CollisionModule.lifetimeLossMultiplier">
- <summary>
- <para>Change the lifetime loss multiplier.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.CollisionModule.maxCollisionShapes">
- <summary>
- <para>The maximum number of collision shapes that will be considered for particle collisions. Excess shapes will be ignored. Terrains take priority.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.CollisionModule.maxKillSpeed">
- <summary>
- <para>Kill particles whose speed goes above this threshold, after a collision.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.CollisionModule.maxPlaneCount">
- <summary>
- <para>The maximum number of planes it is possible to set as colliders.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.CollisionModule.minKillSpeed">
- <summary>
- <para>Kill particles whose speed falls below this threshold, after a collision.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.CollisionModule.mode">
- <summary>
- <para>Choose between 2D and 3D world collisions.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.CollisionModule.multiplyColliderForceByCollisionAngle">
- <summary>
- <para>If true, the collision angle is considered when applying forces from particles to Colliders.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.CollisionModule.multiplyColliderForceByParticleSize">
- <summary>
- <para>If true, particle sizes are considered when applying forces to Colliders.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.CollisionModule.multiplyColliderForceByParticleSpeed">
- <summary>
- <para>If true, particle speeds are considered when applying forces to Colliders.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.CollisionModule.quality">
- <summary>
- <para>Specifies the accuracy of particle collisions against colliders in the scene.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.CollisionModule.radiusScale">
- <summary>
- <para>A multiplier applied to the size of each particle before collisions are processed.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.CollisionModule.sendCollisionMessages">
- <summary>
- <para>Send collision callback messages.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.CollisionModule.type">
- <summary>
- <para>The type of particle collision to perform.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.CollisionModule.voxelSize">
- <summary>
- <para>Size of voxels in the collision cache.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.ParticleSystem.CollisionModule.GetPlane(System.Int32)">
- <summary>
- <para>Get a collision plane associated with this particle system.</para>
- </summary>
- <param name="index">Specifies which plane to access.</param>
- <returns>
- <para>The plane.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.ParticleSystem.CollisionModule.SetPlane(System.Int32,UnityEngine.Transform)">
- <summary>
- <para>Set a collision plane to be used with this particle system.</para>
- </summary>
- <param name="index">Specifies which plane to set.</param>
- <param name="transform">The plane to set.</param>
- </member>
- <member name="T:UnityEngine.ParticleSystem.ColorBySpeedModule">
- <summary>
- <para>Script interface for the Color By Speed module.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.ColorBySpeedModule.color">
- <summary>
- <para>The gradient controlling the particle colors.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.ColorBySpeedModule.enabled">
- <summary>
- <para>Enable/disable the Color By Speed module.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.ColorBySpeedModule.range">
- <summary>
- <para>Apply the color gradient between these minimum and maximum speeds.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ParticleSystem.ColorOverLifetimeModule">
- <summary>
- <para>Script interface for the Color Over Lifetime module.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.ColorOverLifetimeModule.color">
- <summary>
- <para>The gradient controlling the particle colors.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.ColorOverLifetimeModule.enabled">
- <summary>
- <para>Enable/disable the Color Over Lifetime module.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ParticleSystem.CustomDataModule">
- <summary>
- <para>Script interface for the Custom Data module.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.CustomDataModule.enabled">
- <summary>
- <para>Enable/disable the Custom Data module.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.ParticleSystem.CustomDataModule.GetColor(UnityEngine.ParticleSystemCustomData)">
- <summary>
- <para>Get a ParticleSystem.MinMaxGradient, that is being used to generate custom HDR color data.</para>
- </summary>
- <param name="stream">The name of the custom data stream to retrieve the gradient from.</param>
- <returns>
- <para>The color gradient being used to generate custom color data.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.ParticleSystem.CustomDataModule.GetMode(UnityEngine.ParticleSystemCustomData)">
- <summary>
- <para>Find out the type of custom data that is being generated for the chosen data stream.</para>
- </summary>
- <param name="stream">The name of the custom data stream to query.</param>
- <returns>
- <para>The type of data being generated for the requested stream.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.ParticleSystem.CustomDataModule.GetVector(UnityEngine.ParticleSystemCustomData,System.Int32)">
- <summary>
- <para>Get a ParticleSystem.MinMaxCurve, that is being used to generate custom data.</para>
- </summary>
- <param name="stream">The name of the custom data stream to retrieve the curve from.</param>
- <param name="component">The component index to retrieve the curve for (0-3, mapping to the xyzw components of a Vector4 or float4).</param>
- <returns>
- <para>The curve being used to generate custom data.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.ParticleSystem.CustomDataModule.GetVectorComponentCount(UnityEngine.ParticleSystemCustomData)">
- <summary>
- <para>Query how many ParticleSystem.MinMaxCurve elements are being used to generate this stream of custom data.</para>
- </summary>
- <param name="stream">The name of the custom data stream to retrieve the curve from.</param>
- <returns>
- <para>The number of curves.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.ParticleSystem.CustomDataModule.SetColor(UnityEngine.ParticleSystemCustomData,UnityEngine.ParticleSystem/MinMaxGradient)">
- <summary>
- <para>Set a ParticleSystem.MinMaxGradient, in order to generate custom HDR color data.</para>
- </summary>
- <param name="stream">The name of the custom data stream to apply the gradient to.</param>
- <param name="gradient">The gradient to be used for generating custom color data.</param>
- </member>
- <member name="M:UnityEngine.ParticleSystem.CustomDataModule.SetMode(UnityEngine.ParticleSystemCustomData,UnityEngine.ParticleSystemCustomDataMode)">
- <summary>
- <para>Choose the type of custom data to generate for the chosen data stream.</para>
- </summary>
- <param name="stream">The name of the custom data stream to enable data generation on.</param>
- <param name="mode">The type of data to generate.</param>
- </member>
- <member name="M:UnityEngine.ParticleSystem.CustomDataModule.SetVector(UnityEngine.ParticleSystemCustomData,System.Int32,UnityEngine.ParticleSystem/MinMaxCurve)">
- <summary>
- <para>Set a ParticleSystem.MinMaxCurve, in order to generate custom data.</para>
- </summary>
- <param name="stream">The name of the custom data stream to apply the curve to.</param>
- <param name="component">The component index to apply the curve to (0-3, mapping to the xyzw components of a Vector4 or float4).</param>
- <param name="curve">The curve to be used for generating custom data.</param>
- </member>
- <member name="M:UnityEngine.ParticleSystem.CustomDataModule.SetVectorComponentCount(UnityEngine.ParticleSystemCustomData,System.Int32)">
- <summary>
- <para>Specify how many curves are used to generate custom data for this stream.</para>
- </summary>
- <param name="stream">The name of the custom data stream to apply the curve to.</param>
- <param name="curveCount">The number of curves to generate data for.</param>
- <param name="count"></param>
- </member>
- <member name="T:UnityEngine.ParticleSystem.EmissionModule">
- <summary>
- <para>Script interface for the Emission module.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.EmissionModule.burstCount">
- <summary>
- <para>The current number of bursts.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.EmissionModule.enabled">
- <summary>
- <para>Enable/disable the Emission module.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.EmissionModule.rate">
- <summary>
- <para>The rate at which new particles are spawned.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.EmissionModule.rateMultiplier">
- <summary>
- <para>Change the rate multiplier.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.EmissionModule.rateOverDistance">
- <summary>
- <para>The rate at which new particles are spawned, over distance.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.EmissionModule.rateOverDistanceMultiplier">
- <summary>
- <para>Change the rate over distance multiplier.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.EmissionModule.rateOverTime">
- <summary>
- <para>The rate at which new particles are spawned, over time.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.EmissionModule.rateOverTimeMultiplier">
- <summary>
- <para>Change the rate over time multiplier.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.EmissionModule.type">
- <summary>
- <para>The emission type.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.ParticleSystem.EmissionModule.GetBurst(System.Int32)">
- <summary>
- <para>Get a single burst from the array of bursts.</para>
- </summary>
- <param name="index">The index of the burst to retrieve.</param>
- <returns>
- <para>The burst data at the given index.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.ParticleSystem.EmissionModule.GetBursts(UnityEngine.ParticleSystem/Burst[])">
- <summary>
- <para>Get the burst array.</para>
- </summary>
- <param name="bursts">Array of bursts to be filled in.</param>
- <returns>
- <para>The number of bursts in the array.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.ParticleSystem.EmissionModule.SetBurst(System.Int32,UnityEngine.ParticleSystem/Burst)">
- <summary>
- <para>Set a single burst in the array of bursts.</para>
- </summary>
- <param name="index">The index of the burst to retrieve.</param>
- <param name="burst">The new burst data to apply to the Particle System.</param>
- </member>
- <member name="M:UnityEngine.ParticleSystem.EmissionModule.SetBursts(UnityEngine.ParticleSystem/Burst[])">
- <summary>
- <para>Set the burst array.</para>
- </summary>
- <param name="bursts">Array of bursts.</param>
- <param name="size">Optional array size, if burst count is less than array size.</param>
- </member>
- <member name="M:UnityEngine.ParticleSystem.EmissionModule.SetBursts(UnityEngine.ParticleSystem/Burst[],System.Int32)">
- <summary>
- <para>Set the burst array.</para>
- </summary>
- <param name="bursts">Array of bursts.</param>
- <param name="size">Optional array size, if burst count is less than array size.</param>
- </member>
- <member name="M:UnityEngine.ParticleSystem.Emit(System.Int32)">
- <summary>
- <para>Emit count particles immediately.</para>
- </summary>
- <param name="count">Number of particles to emit.</param>
- </member>
- <member name="M:UnityEngine.ParticleSystem.Emit(UnityEngine.ParticleSystem/EmitParams,System.Int32)">
- <summary>
- <para>Emit a number of particles from script.</para>
- </summary>
- <param name="emitParams">Overidden particle properties.</param>
- <param name="count">Number of particles to emit.</param>
- </member>
- <member name="M:UnityEngine.ParticleSystem.Emit(UnityEngine.Vector3,UnityEngine.Vector3,System.Single,System.Single,UnityEngine.Color32)">
- <summary>
- <para></para>
- </summary>
- <param name="position"></param>
- <param name="velocity"></param>
- <param name="size"></param>
- <param name="lifetime"></param>
- <param name="color"></param>
- </member>
- <member name="M:UnityEngine.ParticleSystem.Emit(UnityEngine.ParticleSystem/Particle)">
- <summary>
- <para></para>
- </summary>
- <param name="particle"></param>
- </member>
- <member name="T:UnityEngine.ParticleSystem.EmitParams">
- <summary>
- <para>Script interface for particle emission parameters.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.EmitParams.angularVelocity">
- <summary>
- <para>Override the angular velocity of emitted particles.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.EmitParams.angularVelocity3D">
- <summary>
- <para>Override the 3D angular velocity of emitted particles.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.EmitParams.applyShapeToPosition">
- <summary>
- <para>When overriding the position of particles, setting this flag to true allows you to retain the influence of the shape module.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.EmitParams.axisOfRotation">
- <summary>
- <para>Override the axis of rotation of emitted particles.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.EmitParams.position">
- <summary>
- <para>Override the position of emitted particles.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.EmitParams.randomSeed">
- <summary>
- <para>Override the random seed of emitted particles.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.EmitParams.rotation">
- <summary>
- <para>Override the rotation of emitted particles.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.EmitParams.rotation3D">
- <summary>
- <para>Override the 3D rotation of emitted particles.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.EmitParams.startColor">
- <summary>
- <para>Override the initial color of emitted particles.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.EmitParams.startLifetime">
- <summary>
- <para>Override the lifetime of emitted particles.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.EmitParams.startSize">
- <summary>
- <para>Override the initial size of emitted particles.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.EmitParams.startSize3D">
- <summary>
- <para>Override the initial 3D size of emitted particles.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.EmitParams.velocity">
- <summary>
- <para>Override the velocity of emitted particles.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.ParticleSystem.EmitParams.ResetAngularVelocity">
- <summary>
- <para>Reverts angularVelocity and angularVelocity3D back to the values specified in the inspector.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.ParticleSystem.EmitParams.ResetAxisOfRotation">
- <summary>
- <para>Revert the axis of rotation back to the value specified in the inspector.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.ParticleSystem.EmitParams.ResetPosition">
- <summary>
- <para>Revert the position back to the value specified in the inspector.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.ParticleSystem.EmitParams.ResetRandomSeed">
- <summary>
- <para>Revert the random seed back to the value specified in the inspector.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.ParticleSystem.EmitParams.ResetRotation">
- <summary>
- <para>Reverts rotation and rotation3D back to the values specified in the inspector.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.ParticleSystem.EmitParams.ResetStartColor">
- <summary>
- <para>Revert the initial color back to the value specified in the inspector.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.ParticleSystem.EmitParams.ResetStartLifetime">
- <summary>
- <para>Revert the lifetime back to the value specified in the inspector.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.ParticleSystem.EmitParams.ResetStartSize">
- <summary>
- <para>Revert the initial size back to the value specified in the inspector.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.ParticleSystem.EmitParams.ResetVelocity">
- <summary>
- <para>Revert the velocity back to the value specified in the inspector.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ParticleSystem.ExternalForcesModule">
- <summary>
- <para>Script interface for the External Forces module.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.ExternalForcesModule.enabled">
- <summary>
- <para>Enable/disable the External Forces module.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.ExternalForcesModule.multiplier">
- <summary>
- <para>Multiplies the magnitude of applied external forces.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ParticleSystem.ForceOverLifetimeModule">
- <summary>
- <para>Script interface for the Force Over Lifetime module.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.ForceOverLifetimeModule.enabled">
- <summary>
- <para>Enable/disable the Force Over Lifetime module.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.ForceOverLifetimeModule.randomized">
- <summary>
- <para>When randomly selecting values between two curves or constants, this flag will cause a new random force to be chosen on each frame.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.ForceOverLifetimeModule.space">
- <summary>
- <para>Are the forces being applied in local or world space?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.ForceOverLifetimeModule.x">
- <summary>
- <para>The curve defining particle forces in the X axis.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.ForceOverLifetimeModule.xMultiplier">
- <summary>
- <para>Change the X axis mulutiplier.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.ForceOverLifetimeModule.y">
- <summary>
- <para>The curve defining particle forces in the Y axis.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.ForceOverLifetimeModule.yMultiplier">
- <summary>
- <para>Change the Y axis multiplier.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.ForceOverLifetimeModule.z">
- <summary>
- <para>The curve defining particle forces in the Z axis.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.ForceOverLifetimeModule.zMultiplier">
- <summary>
- <para>Change the Z axis multiplier.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.ParticleSystem.GetCustomParticleData(System.Collections.Generic.List`1&lt;UnityEngine.Vector4&gt;,UnityEngine.ParticleSystemCustomData)">
- <summary>
- <para>Get a stream of custom per-particle data.</para>
- </summary>
- <param name="customData">The array of per-particle data.</param>
- <param name="streamIndex">Which stream to retrieve the data from.</param>
- <returns>
- <para>The amount of valid per-particle data.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.ParticleSystem.GetParticles(UnityEngine.ParticleSystem/Particle[])">
- <summary>
- <para>Gets the particles of this particle system.</para>
- </summary>
- <param name="particles">Output particle buffer, containing the current particle state.</param>
- <returns>
- <para>The number of particles written to the input particle array (the number of particles currently alive).</para>
- </returns>
- </member>
- <member name="T:UnityEngine.ParticleSystem.InheritVelocityModule">
- <summary>
- <para>The Inherit Velocity Module controls how the velocity of the emitter is transferred to the particles as they are emitted.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.InheritVelocityModule.curve">
- <summary>
- <para>Curve to define how much emitter velocity is applied during the lifetime of a particle.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.InheritVelocityModule.curveMultiplier">
- <summary>
- <para>Change the curve multiplier.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.InheritVelocityModule.enabled">
- <summary>
- <para>Enable/disable the InheritVelocity module.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.InheritVelocityModule.mode">
- <summary>
- <para>How to apply emitter velocity to particles.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.ParticleSystem.IsAlive(System.Boolean)">
- <summary>
- <para>Does the system contain any live particles, or will it produce more?</para>
- </summary>
- <param name="withChildren">Check all child particle systems as well.</param>
- <returns>
- <para>True if the Particle System is still "alive". False if the Particle System has stopped emitting particles and all particles are dead.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.ParticleSystem.LightsModule">
- <summary>
- <para>Access the ParticleSystem Lights Module.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.LightsModule.alphaAffectsIntensity">
- <summary>
- <para>Toggle whether the particle alpha gets multiplied by the light intensity, when computing the final light intensity.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.LightsModule.enabled">
- <summary>
- <para>Enable/disable the Lights module.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.LightsModule.intensity">
- <summary>
- <para>Define a curve to apply custom intensity scaling to particle lights.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.LightsModule.intensityMultiplier">
- <summary>
- <para>Intensity multiplier.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.LightsModule.light">
- <summary>
- <para>Select what Light prefab you want to base your particle lights on.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.LightsModule.maxLights">
- <summary>
- <para>Set a limit on how many lights this Module can create.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.LightsModule.range">
- <summary>
- <para>Define a curve to apply custom range scaling to particle lights.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.LightsModule.rangeMultiplier">
- <summary>
- <para>Range multiplier.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.LightsModule.ratio">
- <summary>
- <para>Choose what proportion of particles will receive a dynamic light.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.LightsModule.sizeAffectsRange">
- <summary>
- <para>Toggle where the particle size will be multiplied by the light range, to determine the final light range.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.LightsModule.useParticleColor">
- <summary>
- <para>Toggle whether the particle lights will have their color multiplied by the particle color.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.LightsModule.useRandomDistribution">
- <summary>
- <para>Randomly assign lights to new particles based on ParticleSystem.LightsModule.ratio.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ParticleSystem.LimitVelocityOverLifetimeModule">
- <summary>
- <para>Script interface for the Limit Velocity Over Lifetime module.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.LimitVelocityOverLifetimeModule.dampen">
- <summary>
- <para>Controls how much the velocity that exceeds the velocity limit should be dampened.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.LimitVelocityOverLifetimeModule.drag">
- <summary>
- <para>Controls the amount of drag applied to the particle velocities.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.LimitVelocityOverLifetimeModule.dragMultiplier">
- <summary>
- <para>Change the drag multiplier.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.LimitVelocityOverLifetimeModule.enabled">
- <summary>
- <para>Enable/disable the Limit Force Over Lifetime module.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.LimitVelocityOverLifetimeModule.limit">
- <summary>
- <para>Maximum velocity curve, when not using one curve per axis.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.LimitVelocityOverLifetimeModule.limitMultiplier">
- <summary>
- <para>Change the limit multiplier.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.LimitVelocityOverLifetimeModule.limitX">
- <summary>
- <para>Maximum velocity curve for the X axis.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.LimitVelocityOverLifetimeModule.limitXMultiplier">
- <summary>
- <para>Change the limit multiplier on the X axis.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.LimitVelocityOverLifetimeModule.limitY">
- <summary>
- <para>Maximum velocity curve for the Y axis.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.LimitVelocityOverLifetimeModule.limitYMultiplier">
- <summary>
- <para>Change the limit multiplier on the Y axis.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.LimitVelocityOverLifetimeModule.limitZ">
- <summary>
- <para>Maximum velocity curve for the Z axis.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.LimitVelocityOverLifetimeModule.limitZMultiplier">
- <summary>
- <para>Change the limit multiplier on the Z axis.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.LimitVelocityOverLifetimeModule.multiplyDragByParticleSize">
- <summary>
- <para>Adjust the amount of drag applied to particles, based on their sizes.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.LimitVelocityOverLifetimeModule.multiplyDragByParticleVelocity">
- <summary>
- <para>Adjust the amount of drag applied to particles, based on their speeds.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.LimitVelocityOverLifetimeModule.separateAxes">
- <summary>
- <para>Set the velocity limit on each axis separately.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.LimitVelocityOverLifetimeModule.space">
- <summary>
- <para>Specifies if the velocity limits are in local space (rotated with the transform) or world space.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ParticleSystem.MainModule">
- <summary>
- <para>Script interface for the main module.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.MainModule.customSimulationSpace">
- <summary>
- <para>Simulate particles relative to a custom transform component.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.MainModule.duration">
- <summary>
- <para>The duration of the particle system in seconds.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.MainModule.emitterVelocityMode">
- <summary>
- <para>Control how the Particle System calculates its velocity, when moving in the world.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.MainModule.flipRotation">
- <summary>
- <para>Makes some particles spin in the opposite direction.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.MainModule.gravityModifier">
- <summary>
- <para>Scale applied to the gravity, defined by Physics.gravity.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.MainModule.gravityModifierMultiplier">
- <summary>
- <para>Change the gravity mulutiplier.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.MainModule.loop">
- <summary>
- <para>Is the particle system looping?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.MainModule.maxParticles">
- <summary>
- <para>The maximum number of particles to emit.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.MainModule.playOnAwake">
- <summary>
- <para>If set to true, the particle system will automatically start playing on startup.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.MainModule.prewarm">
- <summary>
- <para>When looping is enabled, this controls whether this particle system will look like it has already simulated for one loop when first becoming visible.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.MainModule.randomizeRotationDirection">
- <summary>
- <para>Cause some particles to spin in the opposite direction.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.MainModule.scalingMode">
- <summary>
- <para>Control how the particle system's Transform Component is applied to the particle system.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.MainModule.simulationSpace">
- <summary>
- <para>This selects the space in which to simulate particles. It can be either world or local space.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.MainModule.simulationSpeed">
- <summary>
- <para>Override the default playback speed of the Particle System.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.MainModule.startColor">
- <summary>
- <para>The initial color of particles when emitted.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.MainModule.startDelay">
- <summary>
- <para>Start delay in seconds.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.MainModule.startDelayMultiplier">
- <summary>
- <para>Start delay multiplier in seconds.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.MainModule.startLifetime">
- <summary>
- <para>The total lifetime in seconds that each new particle will have.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.MainModule.startLifetimeMultiplier">
- <summary>
- <para>Start lifetime multiplier.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.MainModule.startRotation">
- <summary>
- <para>The initial rotation of particles when emitted.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.MainModule.startRotation3D">
- <summary>
- <para>A flag to enable 3D particle rotation.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.MainModule.startRotationMultiplier">
- <summary>
- <para>Start rotation multiplier.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.MainModule.startRotationX">
- <summary>
- <para>The initial rotation of particles around the X axis when emitted.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.MainModule.startRotationXMultiplier">
- <summary>
- <para>Start rotation multiplier around the X axis.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.MainModule.startRotationY">
- <summary>
- <para>The initial rotation of particles around the Y axis when emitted.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.MainModule.startRotationYMultiplier">
- <summary>
- <para>Start rotation multiplier around the Y axis.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.MainModule.startRotationZ">
- <summary>
- <para>The initial rotation of particles around the Z axis when emitted.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.MainModule.startRotationZMultiplier">
- <summary>
- <para>Start rotation multiplier around the Z axis.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.MainModule.startSize">
- <summary>
- <para>The initial size of particles when emitted.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.MainModule.startSize3D">
- <summary>
- <para>A flag to enable specifying particle size individually for each axis.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.MainModule.startSizeMultiplier">
- <summary>
- <para>Start size multiplier.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.MainModule.startSizeX">
- <summary>
- <para>The initial size of particles along the X axis when emitted.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.MainModule.startSizeXMultiplier">
- <summary>
- <para>Start rotation multiplier along the X axis.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.MainModule.startSizeY">
- <summary>
- <para>The initial size of particles along the Y axis when emitted.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.MainModule.startSizeYMultiplier">
- <summary>
- <para>Start rotation multiplier along the Y axis.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.MainModule.startSizeZ">
- <summary>
- <para>The initial size of particles along the Z axis when emitted.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.MainModule.startSizeZMultiplier">
- <summary>
- <para>Start rotation multiplier along the Z axis.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.MainModule.startSpeed">
- <summary>
- <para>The initial speed of particles when emitted.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.MainModule.startSpeedMultiplier">
- <summary>
- <para>A multiplier of the initial speed of particles when emitted.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.MainModule.stopAction">
- <summary>
- <para>Configure whether the GameObject will automatically disable or destroy itself, when the Particle System is stopped and all particles have died.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.MainModule.useUnscaledTime">
- <summary>
- <para>When true, use the unscaled delta time to simulate the Particle System. Otherwise, use the scaled delta time.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ParticleSystem.MinMaxCurve">
- <summary>
- <para>Script interface for a Min-Max Curve.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.MinMaxCurve.constant">
- <summary>
- <para>Set the constant value.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.MinMaxCurve.constantMax">
- <summary>
- <para>Set a constant for the upper bound.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.MinMaxCurve.constantMin">
- <summary>
- <para>Set a constant for the lower bound.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.MinMaxCurve.curve">
- <summary>
- <para>Set the curve.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.MinMaxCurve.curveMax">
- <summary>
- <para>Set a curve for the upper bound.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.MinMaxCurve.curveMin">
- <summary>
- <para>Set a curve for the lower bound.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.MinMaxCurve.curveMultiplier">
- <summary>
- <para>Set a multiplier to be applied to the curves.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.MinMaxCurve.mode">
- <summary>
- <para>Set the mode that the min-max curve will use to evaluate values.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.ParticleSystem.MinMaxCurve.#ctor(System.Single)">
- <summary>
- <para>A single constant value for the entire curve.</para>
- </summary>
- <param name="constant">Constant value.</param>
- </member>
- <member name="M:UnityEngine.ParticleSystem.MinMaxCurve.#ctor(System.Single,UnityEngine.AnimationCurve)">
- <summary>
- <para>Use one curve when evaluating numbers along this Min-Max curve.</para>
- </summary>
- <param name="scalar">A multiplier to be applied to the curve.</param>
- <param name="curve">A single curve for evaluating against.</param>
- <param name="multiplier"></param>
- </member>
- <member name="M:UnityEngine.ParticleSystem.MinMaxCurve.#ctor(System.Single,UnityEngine.AnimationCurve,UnityEngine.AnimationCurve)">
- <summary>
- <para>Randomly select values based on the interval between the minimum and maximum curves.</para>
- </summary>
- <param name="scalar">A multiplier to be applied to the curves.</param>
- <param name="min">The curve describing the minimum values to be evaluated.</param>
- <param name="max">The curve describing the maximum values to be evaluated.</param>
- <param name="multiplier"></param>
- </member>
- <member name="M:UnityEngine.ParticleSystem.MinMaxCurve.#ctor(System.Single,System.Single)">
- <summary>
- <para>Randomly select values based on the interval between the minimum and maximum constants.</para>
- </summary>
- <param name="min">The constant describing the minimum values to be evaluated.</param>
- <param name="max">The constant describing the maximum values to be evaluated.</param>
- </member>
- <member name="M:UnityEngine.ParticleSystem.MinMaxCurve.Evaluate(System.Single)">
- <summary>
- <para>Manually query the curve to calculate values based on what mode it is in.</para>
- </summary>
- <param name="time">Normalized time (in the range 0 - 1, where 1 represents 100%) at which to evaluate the curve. This is valid when ParticleSystem.MinMaxCurve.mode is set to ParticleSystemCurveMode.Curve or ParticleSystemCurveMode.TwoCurves.</param>
- <param name="lerpFactor">Blend between the 2 curves/constants (Valid when ParticleSystem.MinMaxCurve.mode is set to ParticleSystemCurveMode.TwoConstants or ParticleSystemCurveMode.TwoCurves).</param>
- <returns>
- <para>Calculated curve/constant value.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.ParticleSystem.MinMaxCurve.Evaluate(System.Single,System.Single)">
- <summary>
- <para>Manually query the curve to calculate values based on what mode it is in.</para>
- </summary>
- <param name="time">Normalized time (in the range 0 - 1, where 1 represents 100%) at which to evaluate the curve. This is valid when ParticleSystem.MinMaxCurve.mode is set to ParticleSystemCurveMode.Curve or ParticleSystemCurveMode.TwoCurves.</param>
- <param name="lerpFactor">Blend between the 2 curves/constants (Valid when ParticleSystem.MinMaxCurve.mode is set to ParticleSystemCurveMode.TwoConstants or ParticleSystemCurveMode.TwoCurves).</param>
- <returns>
- <para>Calculated curve/constant value.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.ParticleSystem.MinMaxGradient">
- <summary>
- <para>MinMaxGradient contains two Gradients, and returns a Color based on ParticleSystem.MinMaxGradient.mode. Depending on the mode, the Color returned may be randomized.
-Gradients are edited via the ParticleSystem Inspector once a ParticleSystemGradientMode requiring them has been selected. Some modes do not require gradients, only colors.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.MinMaxGradient.color">
- <summary>
- <para>Set a constant color.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.MinMaxGradient.colorMax">
- <summary>
- <para>Set a constant color for the upper bound.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.MinMaxGradient.colorMin">
- <summary>
- <para>Set a constant color for the lower bound.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.MinMaxGradient.gradient">
- <summary>
- <para>Set the gradient.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.MinMaxGradient.gradientMax">
- <summary>
- <para>Set a gradient for the upper bound.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.MinMaxGradient.gradientMin">
- <summary>
- <para>Set a gradient for the lower bound.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.MinMaxGradient.mode">
- <summary>
- <para>Set the mode that the min-max gradient will use to evaluate colors.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.ParticleSystem.MinMaxGradient.#ctor(UnityEngine.Color)">
- <summary>
- <para>A single constant color for the entire gradient.</para>
- </summary>
- <param name="color">Constant color.</param>
- </member>
- <member name="M:UnityEngine.ParticleSystem.MinMaxGradient.#ctor(UnityEngine.Gradient)">
- <summary>
- <para>Use one gradient when evaluating numbers along this Min-Max gradient.</para>
- </summary>
- <param name="gradient">A single gradient for evaluating against.</param>
- </member>
- <member name="M:UnityEngine.ParticleSystem.MinMaxGradient.#ctor(UnityEngine.Color,UnityEngine.Color)">
- <summary>
- <para>Randomly select colors based on the interval between the minimum and maximum constants.</para>
- </summary>
- <param name="min">The constant color describing the minimum colors to be evaluated.</param>
- <param name="max">The constant color describing the maximum colors to be evaluated.</param>
- </member>
- <member name="M:UnityEngine.ParticleSystem.MinMaxGradient.#ctor(UnityEngine.Gradient,UnityEngine.Gradient)">
- <summary>
- <para>Randomly select colors based on the interval between the minimum and maximum gradients.</para>
- </summary>
- <param name="min">The gradient describing the minimum colors to be evaluated.</param>
- <param name="max">The gradient describing the maximum colors to be evaluated.</param>
- </member>
- <member name="M:UnityEngine.ParticleSystem.MinMaxGradient.Evaluate(System.Single)">
- <summary>
- <para>Manually query the gradient to calculate colors based on what mode it is in.</para>
- </summary>
- <param name="time">Normalized time (in the range 0 - 1, where 1 represents 100%) at which to evaluate the gradient. This is valid when ParticleSystem.MinMaxGradient.mode is set to ParticleSystemGradientMode.Gradient or ParticleSystemGradientMode.TwoGradients.</param>
- <param name="lerpFactor">Blend between the 2 gradients/colors (Valid when ParticleSystem.MinMaxGradient.mode is set to ParticleSystemGradientMode.TwoColors or ParticleSystemGradientMode.TwoGradients).</param>
- <returns>
- <para>Calculated gradient/color value.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.ParticleSystem.MinMaxGradient.Evaluate(System.Single,System.Single)">
- <summary>
- <para>Manually query the gradient to calculate colors based on what mode it is in.</para>
- </summary>
- <param name="time">Normalized time (in the range 0 - 1, where 1 represents 100%) at which to evaluate the gradient. This is valid when ParticleSystem.MinMaxGradient.mode is set to ParticleSystemGradientMode.Gradient or ParticleSystemGradientMode.TwoGradients.</param>
- <param name="lerpFactor">Blend between the 2 gradients/colors (Valid when ParticleSystem.MinMaxGradient.mode is set to ParticleSystemGradientMode.TwoColors or ParticleSystemGradientMode.TwoGradients).</param>
- <returns>
- <para>Calculated gradient/color value.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.ParticleSystem.NoiseModule">
- <summary>
- <para>Script interface for the Noise Module.
-
-The Noise Module allows you to apply turbulence to the movement of your particles. Use the low quality settings to create computationally efficient Noise, or simulate smoother, richer Noise with the higher quality settings. You can also choose to define the behavior of the Noise individually for each axis.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.NoiseModule.damping">
- <summary>
- <para>Higher frequency noise will reduce the strength by a proportional amount, if enabled.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.NoiseModule.enabled">
- <summary>
- <para>Enable/disable the Noise module.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.NoiseModule.frequency">
- <summary>
- <para>Low values create soft, smooth noise, and high values create rapidly changing noise.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.NoiseModule.octaveCount">
- <summary>
- <para>Layers of noise that combine to produce final noise.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.NoiseModule.octaveMultiplier">
- <summary>
- <para>When combining each octave, scale the intensity by this amount.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.NoiseModule.octaveScale">
- <summary>
- <para>When combining each octave, zoom in by this amount.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.NoiseModule.positionAmount">
- <summary>
- <para>How much the noise affects the particle positions.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.NoiseModule.quality">
- <summary>
- <para>Generate 1D, 2D or 3D noise.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.NoiseModule.remap">
- <summary>
- <para>Define how the noise values are remapped.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.NoiseModule.remapEnabled">
- <summary>
- <para>Enable remapping of the final noise values, allowing for noise values to be translated into different values.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.NoiseModule.remapMultiplier">
- <summary>
- <para>Remap multiplier.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.NoiseModule.remapX">
- <summary>
- <para>Define how the noise values are remapped on the X axis, when using the ParticleSystem.NoiseModule.separateAxes option.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.NoiseModule.remapXMultiplier">
- <summary>
- <para>X axis remap multiplier.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.NoiseModule.remapY">
- <summary>
- <para>Define how the noise values are remapped on the Y axis, when using the ParticleSystem.NoiseModule.separateAxes option.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.NoiseModule.remapYMultiplier">
- <summary>
- <para>Y axis remap multiplier.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.NoiseModule.remapZ">
- <summary>
- <para>Define how the noise values are remapped on the Z axis, when using the ParticleSystem.NoiseModule.separateAxes option.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.NoiseModule.remapZMultiplier">
- <summary>
- <para>Z axis remap multiplier.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.NoiseModule.rotationAmount">
- <summary>
- <para>How much the noise affects the particle rotation, in degrees per second.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.NoiseModule.scrollSpeed">
- <summary>
- <para>Scroll the noise map over the particle system.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.NoiseModule.scrollSpeedMultiplier">
- <summary>
- <para>Scroll speed multiplier.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.NoiseModule.separateAxes">
- <summary>
- <para>Control the noise separately for each axis.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.NoiseModule.sizeAmount">
- <summary>
- <para>How much the noise affects the particle sizes, applied as a multiplier on the size of each particle.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.NoiseModule.strength">
- <summary>
- <para>How strong the overall noise effect is.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.NoiseModule.strengthMultiplier">
- <summary>
- <para>Strength multiplier.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.NoiseModule.strengthX">
- <summary>
- <para>Define the strength of the effect on the X axis, when using the ParticleSystem.NoiseModule.separateAxes option.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.NoiseModule.strengthXMultiplier">
- <summary>
- <para>X axis strength multiplier.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.NoiseModule.strengthY">
- <summary>
- <para>Define the strength of the effect on the Y axis, when using the ParticleSystem.NoiseModule.separateAxes option.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.NoiseModule.strengthYMultiplier">
- <summary>
- <para>Y axis strength multiplier.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.NoiseModule.strengthZ">
- <summary>
- <para>Define the strength of the effect on the Z axis, when using the ParticleSystem.NoiseModule.separateAxes option.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.NoiseModule.strengthZMultiplier">
- <summary>
- <para>Z axis strength multiplier.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ParticleSystem.Particle">
- <summary>
- <para>Script interface for a Particle.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.Particle.angularVelocity">
- <summary>
- <para>The angular velocity of the particle.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.Particle.angularVelocity3D">
- <summary>
- <para>The 3D angular velocity of the particle.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.Particle.animatedVelocity">
- <summary>
- <para>The animated velocity of the particle.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.Particle.lifetime">
- <summary>
- <para>The lifetime of the particle.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.Particle.position">
- <summary>
- <para>The position of the particle.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.Particle.randomSeed">
- <summary>
- <para>The random seed of the particle.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.Particle.randomValue">
- <summary>
- <para>The random value of the particle.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.Particle.remainingLifetime">
- <summary>
- <para>The remaining lifetime of the particle.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.Particle.rotation">
- <summary>
- <para>The rotation of the particle.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.Particle.rotation3D">
- <summary>
- <para>The 3D rotation of the particle.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.Particle.startColor">
- <summary>
- <para>The initial color of the particle. The current color of the particle is calculated procedurally based on this value and the active color modules.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.Particle.startLifetime">
- <summary>
- <para>The starting lifetime of the particle.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.Particle.startSize">
- <summary>
- <para>The initial size of the particle. The current size of the particle is calculated procedurally based on this value and the active size modules.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.Particle.startSize3D">
- <summary>
- <para>The initial 3D size of the particle. The current size of the particle is calculated procedurally based on this value and the active size modules.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.Particle.totalVelocity">
- <summary>
- <para>The total velocity of the particle.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.Particle.velocity">
- <summary>
- <para>The velocity of the particle.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.ParticleSystem.Particle.GetCurrentColor(UnityEngine.ParticleSystem)">
- <summary>
- <para>Calculate the current color of the particle by applying the relevant curves to its startColor property.</para>
- </summary>
- <param name="system">The particle system from which this particle was emitted.</param>
- <returns>
- <para>Current color.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.ParticleSystem.Particle.GetCurrentSize(UnityEngine.ParticleSystem)">
- <summary>
- <para>Calculate the current size of the particle by applying the relevant curves to its startSize property.</para>
- </summary>
- <param name="system">The particle system from which this particle was emitted.</param>
- <returns>
- <para>Current size.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.ParticleSystem.Particle.GetCurrentSize3D(UnityEngine.ParticleSystem)">
- <summary>
- <para>Calculate the current 3D size of the particle by applying the relevant curves to its startSize3D property.</para>
- </summary>
- <param name="system">The particle system from which this particle was emitted.</param>
- <returns>
- <para>Current size.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.ParticleSystem.Pause(System.Boolean)">
- <summary>
- <para>Pauses the system so no new particles are emitted and the existing particles are not updated.</para>
- </summary>
- <param name="withChildren">Pause all child Particle Systems as well.</param>
- </member>
- <member name="M:UnityEngine.ParticleSystem.Play(System.Boolean)">
- <summary>
- <para>Starts the particle system.</para>
- </summary>
- <param name="withChildren">Play all child particle systems as well.</param>
- </member>
- <member name="T:UnityEngine.ParticleSystem.RotationBySpeedModule">
- <summary>
- <para>Script interface for the Rotation By Speed module.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.RotationBySpeedModule.enabled">
- <summary>
- <para>Enable/disable the Rotation By Speed module.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.RotationBySpeedModule.range">
- <summary>
- <para>Apply the rotation curve between these minimum and maximum speeds.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.RotationBySpeedModule.separateAxes">
- <summary>
- <para>Set the rotation by speed on each axis separately.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.RotationBySpeedModule.x">
- <summary>
- <para>Rotation by speed curve for the X axis.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.RotationBySpeedModule.xMultiplier">
- <summary>
- <para>Speed multiplier along the X axis.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.RotationBySpeedModule.y">
- <summary>
- <para>Rotation by speed curve for the Y axis.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.RotationBySpeedModule.yMultiplier">
- <summary>
- <para>Speed multiplier along the Y axis.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.RotationBySpeedModule.z">
- <summary>
- <para>Rotation by speed curve for the Z axis.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.RotationBySpeedModule.zMultiplier">
- <summary>
- <para>Speed multiplier along the Z axis.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ParticleSystem.RotationOverLifetimeModule">
- <summary>
- <para>Script interface for the Rotation Over Lifetime module.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.RotationOverLifetimeModule.enabled">
- <summary>
- <para>Enable/disable the Rotation Over Lifetime module.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.RotationOverLifetimeModule.separateAxes">
- <summary>
- <para>Set the rotation over lifetime on each axis separately.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.RotationOverLifetimeModule.x">
- <summary>
- <para>Rotation over lifetime curve for the X axis.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.RotationOverLifetimeModule.xMultiplier">
- <summary>
- <para>Rotation multiplier around the X axis.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.RotationOverLifetimeModule.y">
- <summary>
- <para>Rotation over lifetime curve for the Y axis.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.RotationOverLifetimeModule.yMultiplier">
- <summary>
- <para>Rotation multiplier around the Y axis.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.RotationOverLifetimeModule.z">
- <summary>
- <para>Rotation over lifetime curve for the Z axis.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.RotationOverLifetimeModule.zMultiplier">
- <summary>
- <para>Rotation multiplier around the Z axis.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.ParticleSystem.SetCustomParticleData(System.Collections.Generic.List`1&lt;UnityEngine.Vector4&gt;,UnityEngine.ParticleSystemCustomData)">
- <summary>
- <para>Set a stream of custom per-particle data.</para>
- </summary>
- <param name="customData">The array of per-particle data.</param>
- <param name="streamIndex">Which stream to assign the data to.</param>
- </member>
- <member name="M:UnityEngine.ParticleSystem.SetParticles(UnityEngine.ParticleSystem/Particle[],System.Int32)">
- <summary>
- <para>Sets the particles of this particle system.</para>
- </summary>
- <param name="particles">Input particle buffer, containing the desired particle state.</param>
- <param name="size">The number of elements in the particles array that is written to the Particle System.</param>
- </member>
- <member name="T:UnityEngine.ParticleSystem.ShapeModule">
- <summary>
- <para>Script interface for the Shape module.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.ShapeModule.alignToDirection">
- <summary>
- <para>Align particles based on their initial direction of travel.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.ShapeModule.angle">
- <summary>
- <para>Angle of the cone.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.ShapeModule.arc">
- <summary>
- <para>Circle arc angle.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.ShapeModule.arcMode">
- <summary>
- <para>The mode used for generating particles around the arc.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.ShapeModule.arcSpeed">
- <summary>
- <para>When using one of the animated modes, how quickly to move the emission position around the arc.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.ShapeModule.arcSpeedMultiplier">
- <summary>
- <para>A multiplier of the arc speed of the emission shape.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.ShapeModule.arcSpread">
- <summary>
- <para>Control the gap between emission points around the arc.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.ShapeModule.box">
- <summary>
- <para>Scale of the box.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.ShapeModule.boxThickness">
- <summary>
- <para>Thickness of the box.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.ShapeModule.donutRadius">
- <summary>
- <para>The radius of the Donut shape.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.ShapeModule.enabled">
- <summary>
- <para>Enable/disable the Shape module.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.ShapeModule.length">
- <summary>
- <para>Length of the cone.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.ShapeModule.mesh">
- <summary>
- <para>Mesh to emit particles from.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.ShapeModule.meshMaterialIndex">
- <summary>
- <para>Emit particles from a single material of a mesh.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.ShapeModule.meshRenderer">
- <summary>
- <para>MeshRenderer to emit particles from.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.ShapeModule.meshScale">
- <summary>
- <para>Apply a scaling factor to the mesh used for generating source positions.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.ShapeModule.meshShapeType">
- <summary>
- <para>Where on the mesh to emit particles from.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.ShapeModule.normalOffset">
- <summary>
- <para>Move particles away from the surface of the source mesh.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.ShapeModule.position">
- <summary>
- <para>Apply an offset to the position from which particles are emitted.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.ShapeModule.radius">
- <summary>
- <para>Radius of the shape.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.ShapeModule.radiusMode">
- <summary>
- <para>The mode used for generating particles along the radius.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.ShapeModule.radiusSpeed">
- <summary>
- <para>When using one of the animated modes, how quickly to move the emission position along the radius.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.ShapeModule.radiusSpeedMultiplier">
- <summary>
- <para>A multiplier of the radius speed of the emission shape.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.ShapeModule.radiusSpread">
- <summary>
- <para>Control the gap between emission points along the radius.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.ShapeModule.radiusThickness">
- <summary>
- <para>Thickness of the radius.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.ShapeModule.randomDirection">
- <summary>
- <para>Randomizes the starting direction of particles.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.ShapeModule.randomDirectionAmount">
- <summary>
- <para>Randomizes the starting direction of particles.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.ShapeModule.randomPositionAmount">
- <summary>
- <para>Randomizes the starting position of particles.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.ShapeModule.rotation">
- <summary>
- <para>Apply a rotation to the shape from which particles are emitted.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.ShapeModule.scale">
- <summary>
- <para>Apply scale to the shape from which particles are emitted.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.ShapeModule.shapeType">
- <summary>
- <para>Type of shape to emit particles from.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.ShapeModule.skinnedMeshRenderer">
- <summary>
- <para>SkinnedMeshRenderer to emit particles from.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.ShapeModule.sphericalDirectionAmount">
- <summary>
- <para>Spherizes the starting direction of particles.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.ShapeModule.sprite">
- <summary>
- <para>Sprite to emit particles from.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.ShapeModule.spriteRenderer">
- <summary>
- <para>SpriteRenderer to emit particles from.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.ShapeModule.texture">
- <summary>
- <para>Selects a texture to be used for tinting particle start colors.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.ShapeModule.textureAlphaAffectsParticles">
- <summary>
- <para>When enabled, the alpha channel of the texture is applied to the particle alpha when spawned.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.ShapeModule.textureBilinearFiltering">
- <summary>
- <para>When enabled, 4 neighboring samples are taken from the texture, and combined to give the final particle value.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.ShapeModule.textureClipChannel">
- <summary>
- <para>Selects which channel of the texture is used for discarding particles.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.ShapeModule.textureClipThreshold">
- <summary>
- <para>Discards particles when they are spawned on an area of the texture with a value lower than this threshold.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.ShapeModule.textureColorAffectsParticles">
- <summary>
- <para>When enabled, the RGB channels of the texture are applied to the particle color when spawned.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.ShapeModule.textureUVChannel">
- <summary>
- <para>When using a Mesh as a source shape type, this option controls which UV channel on the Mesh is used for reading the source texture.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.ShapeModule.useMeshColors">
- <summary>
- <para>Modulate the particle colors with the vertex colors, or the material color if no vertex colors exist.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.ShapeModule.useMeshMaterialIndex">
- <summary>
- <para>Emit from a single material, or the whole mesh.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.ParticleSystem.Simulate(System.Single,System.Boolean,System.Boolean,System.Boolean)">
- <summary>
- <para>Fastforwards the particle system by simulating particles over given period of time, then pauses it.</para>
- </summary>
- <param name="t">Time period in seconds to advance the ParticleSystem simulation by. If restart is true, the ParticleSystem will be reset to 0 time, and then advanced by this value. If restart is false, the ParticleSystem simulation will be advanced in time from its current state by this value.</param>
- <param name="withChildren">Fastforward all child particle systems as well.</param>
- <param name="restart">Restart and start from the beginning.</param>
- <param name="fixedTimeStep">Only update the system at fixed intervals, based on the value in "Fixed Time" in the Time options.</param>
- </member>
- <member name="T:UnityEngine.ParticleSystem.SizeBySpeedModule">
- <summary>
- <para>Script interface for the Size By Speed module.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.SizeBySpeedModule.enabled">
- <summary>
- <para>Enable/disable the Size By Speed module.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.SizeBySpeedModule.range">
- <summary>
- <para>Apply the size curve between these minimum and maximum speeds.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.SizeBySpeedModule.separateAxes">
- <summary>
- <para>Set the size by speed on each axis separately.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.SizeBySpeedModule.size">
- <summary>
- <para>Curve to control particle size based on speed.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.SizeBySpeedModule.sizeMultiplier">
- <summary>
- <para>Size multiplier.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.SizeBySpeedModule.x">
- <summary>
- <para>Size by speed curve for the X axis.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.SizeBySpeedModule.xMultiplier">
- <summary>
- <para>X axis size multiplier.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.SizeBySpeedModule.y">
- <summary>
- <para>Size by speed curve for the Y axis.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.SizeBySpeedModule.yMultiplier">
- <summary>
- <para>Y axis size multiplier.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.SizeBySpeedModule.z">
- <summary>
- <para>Size by speed curve for the Z axis.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.SizeBySpeedModule.zMultiplier">
- <summary>
- <para>Z axis size multiplier.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ParticleSystem.SizeOverLifetimeModule">
- <summary>
- <para>Script interface for the Size Over Lifetime module.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.SizeOverLifetimeModule.enabled">
- <summary>
- <para>Enable/disable the Size Over Lifetime module.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.SizeOverLifetimeModule.separateAxes">
- <summary>
- <para>Set the size over lifetime on each axis separately.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.SizeOverLifetimeModule.size">
- <summary>
- <para>Curve to control particle size based on lifetime.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.SizeOverLifetimeModule.sizeMultiplier">
- <summary>
- <para>Size multiplier.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.SizeOverLifetimeModule.x">
- <summary>
- <para>Size over lifetime curve for the X axis.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.SizeOverLifetimeModule.xMultiplier">
- <summary>
- <para>X axis size multiplier.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.SizeOverLifetimeModule.y">
- <summary>
- <para>Size over lifetime curve for the Y axis.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.SizeOverLifetimeModule.yMultiplier">
- <summary>
- <para>Y axis size multiplier.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.SizeOverLifetimeModule.z">
- <summary>
- <para>Size over lifetime curve for the Z axis.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.SizeOverLifetimeModule.zMultiplier">
- <summary>
- <para>Z axis size multiplier.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.ParticleSystem.Stop(System.Boolean,UnityEngine.ParticleSystemStopBehavior)">
- <summary>
- <para>Stops playing the particle system using the supplied stop behaviour.</para>
- </summary>
- <param name="withChildren">Stop all child particle systems as well.</param>
- <param name="stopBehavior">Stop emitting or stop emitting and clear the system.</param>
- </member>
- <member name="M:UnityEngine.ParticleSystem.Stop(System.Boolean)">
- <summary>
- <para>Stops playing the particle system using the supplied stop behaviour.</para>
- </summary>
- <param name="withChildren">Stop all child particle systems as well.</param>
- <param name="stopBehavior">Stop emitting or stop emitting and clear the system.</param>
- </member>
- <member name="T:UnityEngine.ParticleSystem.SubEmittersModule">
- <summary>
- <para>Script interface for the Sub Emitters module.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.SubEmittersModule.birth0">
- <summary>
- <para>Sub particle system which spawns at the locations of the birth of the particles from the parent system.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.SubEmittersModule.birth1">
- <summary>
- <para>Sub particle system which spawns at the locations of the birth of the particles from the parent system.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.SubEmittersModule.collision0">
- <summary>
- <para>Sub particle system which spawns at the locations of the collision of the particles from the parent system.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.SubEmittersModule.collision1">
- <summary>
- <para>Sub particle system which spawns at the locations of the collision of the particles from the parent system.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.SubEmittersModule.death0">
- <summary>
- <para>Sub particle system which spawns at the locations of the death of the particles from the parent system.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.SubEmittersModule.death1">
- <summary>
- <para>Sub particle system to spawn on death of the parent system's particles.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.SubEmittersModule.enabled">
- <summary>
- <para>Enable/disable the Sub Emitters module.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.SubEmittersModule.subEmittersCount">
- <summary>
- <para>The total number of sub-emitters.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.ParticleSystem.SubEmittersModule.AddSubEmitter(UnityEngine.ParticleSystem,UnityEngine.ParticleSystemSubEmitterType,UnityEngine.ParticleSystemSubEmitterProperties)">
- <summary>
- <para>Add a new sub-emitter.</para>
- </summary>
- <param name="subEmitter">The sub-emitter to be added.</param>
- <param name="type">The event that creates new particles.</param>
- <param name="properties">The properties of the new particles.</param>
- </member>
- <member name="M:UnityEngine.ParticleSystem.SubEmittersModule.GetSubEmitterProperties(System.Int32)">
- <summary>
- <para>Get the properties of the sub-emitter at the given index.</para>
- </summary>
- <param name="index">The index of the desired sub-emitter.</param>
- <returns>
- <para>The properties of the requested sub-emitter.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.ParticleSystem.SubEmittersModule.GetSubEmitterSystem(System.Int32)">
- <summary>
- <para>Get the sub-emitter Particle System at the given index.</para>
- </summary>
- <param name="index">The index of the desired sub-emitter.</param>
- <returns>
- <para>The sub-emitter being requested.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.ParticleSystem.SubEmittersModule.GetSubEmitterType(System.Int32)">
- <summary>
- <para>Get the type of the sub-emitter at the given index.</para>
- </summary>
- <param name="index">The index of the desired sub-emitter.</param>
- <returns>
- <para>The type of the requested sub-emitter.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.ParticleSystem.SubEmittersModule.RemoveSubEmitter(System.Int32)">
- <summary>
- <para>Remove a sub-emitter from the given index in the array.</para>
- </summary>
- <param name="index">The index from which to remove a sub-emitter.</param>
- </member>
- <member name="M:UnityEngine.ParticleSystem.SubEmittersModule.SetSubEmitterProperties(System.Int32,UnityEngine.ParticleSystemSubEmitterProperties)">
- <summary>
- <para>Set the properties of the sub-emitter at the given index.</para>
- </summary>
- <param name="index">The index of the sub-emitter being modified.</param>
- <param name="properties">The new properties to assign to this sub-emitter.</param>
- </member>
- <member name="M:UnityEngine.ParticleSystem.SubEmittersModule.SetSubEmitterSystem(System.Int32,UnityEngine.ParticleSystem)">
- <summary>
- <para>Set the Particle System to use as the sub-emitter at the given index.</para>
- </summary>
- <param name="index">The index of the sub-emitter being modified.</param>
- <param name="subEmitter">The Particle System being used as this sub-emitter.</param>
- </member>
- <member name="M:UnityEngine.ParticleSystem.SubEmittersModule.SetSubEmitterType(System.Int32,UnityEngine.ParticleSystemSubEmitterType)">
- <summary>
- <para>Set the type of the sub-emitter at the given index.</para>
- </summary>
- <param name="index">The index of the sub-emitter being modified.</param>
- <param name="type">The new spawning type to assign to this sub-emitter.</param>
- </member>
- <member name="T:UnityEngine.ParticleSystem.TextureSheetAnimationModule">
- <summary>
- <para>Script interface for the Texture Sheet Animation module.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.TextureSheetAnimationModule.animation">
- <summary>
- <para>Specifies the animation type.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.TextureSheetAnimationModule.cycleCount">
- <summary>
- <para>Specifies how many times the animation will loop during the lifetime of the particle.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.TextureSheetAnimationModule.enabled">
- <summary>
- <para>Enable/disable the Texture Sheet Animation module.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.TextureSheetAnimationModule.flipU">
- <summary>
- <para>Flip the U coordinate on particles, causing them to appear mirrored horizontally.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.TextureSheetAnimationModule.flipV">
- <summary>
- <para>Flip the V coordinate on particles, causing them to appear mirrored vertically.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.TextureSheetAnimationModule.frameOverTime">
- <summary>
- <para>Curve to control which frame of the texture sheet animation to play.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.TextureSheetAnimationModule.frameOverTimeMultiplier">
- <summary>
- <para>Frame over time mutiplier.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.TextureSheetAnimationModule.mode">
- <summary>
- <para>Select whether the animated texture information comes from a grid of frames on a single texture, or from a list of Sprite objects.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.TextureSheetAnimationModule.numTilesX">
- <summary>
- <para>Defines the tiling of the texture in the X axis.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.TextureSheetAnimationModule.numTilesY">
- <summary>
- <para>Defines the tiling of the texture in the Y axis.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.TextureSheetAnimationModule.rowIndex">
- <summary>
- <para>Explicitly select which row of the texture sheet is used, when ParticleSystem.TextureSheetAnimationModule.useRandomRow is set to false.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.TextureSheetAnimationModule.spriteCount">
- <summary>
- <para>The total number of sprites.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.TextureSheetAnimationModule.startFrame">
- <summary>
- <para>Define a random starting frame for the texture sheet animation.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.TextureSheetAnimationModule.startFrameMultiplier">
- <summary>
- <para>Starting frame multiplier.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.TextureSheetAnimationModule.useRandomRow">
- <summary>
- <para>Use a random row of the texture sheet for each particle emitted.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.TextureSheetAnimationModule.uvChannelMask">
- <summary>
- <para>Choose which UV channels will receive texture animation.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.ParticleSystem.TextureSheetAnimationModule.AddSprite(UnityEngine.Sprite)">
- <summary>
- <para>Add a new Sprite.</para>
- </summary>
- <param name="sprite">The Sprite to be added.</param>
- </member>
- <member name="M:UnityEngine.ParticleSystem.TextureSheetAnimationModule.GetSprite(System.Int32)">
- <summary>
- <para>Get the Sprite at the given index.</para>
- </summary>
- <param name="index">The index of the desired Sprite.</param>
- <returns>
- <para>The Sprite being requested.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.ParticleSystem.TextureSheetAnimationModule.RemoveSprite(System.Int32)">
- <summary>
- <para>Remove a Sprite from the given index in the array.</para>
- </summary>
- <param name="index">The index from which to remove a Sprite.</param>
- </member>
- <member name="M:UnityEngine.ParticleSystem.TextureSheetAnimationModule.SetSprite(System.Int32,UnityEngine.Sprite)">
- <summary>
- <para>Set the Sprite at the given index.</para>
- </summary>
- <param name="index">The index of the Sprite being modified.</param>
- <param name="sprite">The Sprite being assigned.</param>
- </member>
- <member name="T:UnityEngine.ParticleSystem.TrailModule">
- <summary>
- <para>Access the particle system trails module.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.TrailModule.colorOverLifetime">
- <summary>
- <para>The gradient controlling the trail colors during the lifetime of the attached particle.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.TrailModule.colorOverTrail">
- <summary>
- <para>The gradient controlling the trail colors over the length of the trail.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.TrailModule.dieWithParticles">
- <summary>
- <para>If enabled, Trails will disappear immediately when their owning particle dies. Otherwise, the trail will persist until all its points have naturally expired, based on its lifetime.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.TrailModule.enabled">
- <summary>
- <para>Enable/disable the Trail module.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.TrailModule.generateLightingData">
- <summary>
- <para>Configures the trails to generate Normals and Tangents. With this data, Scene lighting can affect the trails via Normal Maps and the Unity Standard Shader, or your own custom-built Shaders.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.TrailModule.inheritParticleColor">
- <summary>
- <para>Toggle whether the trail will inherit the particle color as its starting color.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.TrailModule.lifetime">
- <summary>
- <para>The curve describing the trail lifetime, throughout the lifetime of the particle.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.TrailModule.lifetimeMultiplier">
- <summary>
- <para>Change the lifetime multiplier.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.TrailModule.minVertexDistance">
- <summary>
- <para>Set the minimum distance each trail can travel before a new vertex is added to it.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.TrailModule.mode">
- <summary>
- <para>Choose how particle trails are generated.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.TrailModule.ratio">
- <summary>
- <para>Choose what proportion of particles will receive a trail.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.TrailModule.ribbonCount">
- <summary>
- <para>Select how many lines to create through the Particle System.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.TrailModule.sizeAffectsLifetime">
- <summary>
- <para>Set whether the particle size will act as a multiplier on top of the trail lifetime.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.TrailModule.sizeAffectsWidth">
- <summary>
- <para>Set whether the particle size will act as a multiplier on top of the trail width.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.TrailModule.textureMode">
- <summary>
- <para>Choose whether the U coordinate of the trail texture is tiled or stretched.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.TrailModule.widthOverTrail">
- <summary>
- <para>The curve describing the width, of each trail point.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.TrailModule.widthOverTrailMultiplier">
- <summary>
- <para>Change the width multiplier.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.TrailModule.worldSpace">
- <summary>
- <para>Drop new trail points in world space, regardless of Particle System Simulation Space.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ParticleSystem.TriggerModule">
- <summary>
- <para>Script interface for the Trigger module.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.TriggerModule.enabled">
- <summary>
- <para>Enable/disable the Trigger module.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.TriggerModule.enter">
- <summary>
- <para>Choose what action to perform when particles enter the trigger volume.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.TriggerModule.exit">
- <summary>
- <para>Choose what action to perform when particles leave the trigger volume.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.TriggerModule.inside">
- <summary>
- <para>Choose what action to perform when particles are inside the trigger volume.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.TriggerModule.maxColliderCount">
- <summary>
- <para>The maximum number of collision shapes that can be attached to this particle system trigger.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.TriggerModule.outside">
- <summary>
- <para>Choose what action to perform when particles are outside the trigger volume.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.TriggerModule.radiusScale">
- <summary>
- <para>A multiplier applied to the size of each particle before overlaps are processed.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.ParticleSystem.TriggerModule.GetCollider(System.Int32)">
- <summary>
- <para>Get a collision shape associated with this particle system trigger.</para>
- </summary>
- <param name="index">Which collider to return.</param>
- <returns>
- <para>The collider at the given index.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.ParticleSystem.TriggerModule.SetCollider(System.Int32,UnityEngine.Component)">
- <summary>
- <para>Set a collision shape associated with this particle system trigger.</para>
- </summary>
- <param name="index">Which collider to set.</param>
- <param name="collider">The collider to associate with this trigger.</param>
- </member>
- <member name="M:UnityEngine.ParticleSystem.TriggerSubEmitter(System.Int32)">
- <summary>
- <para>Triggers the specified sub emitter on all particles of the Particle System.</para>
- </summary>
- <param name="subEmitterIndex">Index of the sub emitter to trigger.</param>
- </member>
- <member name="M:UnityEngine.ParticleSystem.TriggerSubEmitter(System.Int32,UnityEngine.ParticleSystem/Particle&amp;)">
- <summary>
- <para>Triggers the specified sub emitter on the specified particle(s) of the Particle System.</para>
- </summary>
- <param name="subEmitterIndex">Index of the sub emitter to trigger.</param>
- <param name="particle">Triggers the sub emtter on a single particle.</param>
- <param name="particles">Triggers the sub emtter on a list of particles.</param>
- </member>
- <member name="M:UnityEngine.ParticleSystem.TriggerSubEmitter(System.Int32,System.Collections.Generic.List`1&lt;UnityEngine.ParticleSystem/Particle&gt;)">
- <summary>
- <para>Triggers the specified sub emitter on the specified particle(s) of the Particle System.</para>
- </summary>
- <param name="subEmitterIndex">Index of the sub emitter to trigger.</param>
- <param name="particle">Triggers the sub emtter on a single particle.</param>
- <param name="particles">Triggers the sub emtter on a list of particles.</param>
- </member>
- <member name="T:UnityEngine.ParticleSystem.VelocityOverLifetimeModule">
- <summary>
- <para>Script interface for the Velocity Over Lifetime module.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.VelocityOverLifetimeModule.enabled">
- <summary>
- <para>Enable/disable the Velocity Over Lifetime module.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.VelocityOverLifetimeModule.orbitalOffsetX">
- <summary>
- <para>Specify a custom center of rotation for the orbital and radial velocities.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.VelocityOverLifetimeModule.orbitalOffsetXMultiplier">
- <summary>
- <para>This method is more efficient than accessing the whole curve, if you only want to change the overall offset multiplier.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.VelocityOverLifetimeModule.orbitalOffsetY">
- <summary>
- <para>Specify a custom center of rotation for the orbital and radial velocities.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.VelocityOverLifetimeModule.orbitalOffsetYMultiplier">
- <summary>
- <para>This method is more efficient than accessing the whole curve, if you only want to change the overall offset multiplier.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.VelocityOverLifetimeModule.orbitalOffsetZ">
- <summary>
- <para>Specify a custom center of rotation for the orbital and radial velocities.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.VelocityOverLifetimeModule.orbitalOffsetZMultiplier">
- <summary>
- <para>This method is more efficient than accessing the whole curve, if you only want to change the overall offset multiplier.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.VelocityOverLifetimeModule.orbitalX">
- <summary>
- <para>Curve to control particle speed based on lifetime, around the X axis.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.VelocityOverLifetimeModule.orbitalXMultiplier">
- <summary>
- <para>X axis speed multiplier.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.VelocityOverLifetimeModule.orbitalY">
- <summary>
- <para>Curve to control particle speed based on lifetime, around the Y axis.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.VelocityOverLifetimeModule.orbitalYMultiplier">
- <summary>
- <para>Y axis speed multiplier.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.VelocityOverLifetimeModule.orbitalZ">
- <summary>
- <para>Curve to control particle speed based on lifetime, around the Z axis.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.VelocityOverLifetimeModule.orbitalZMultiplier">
- <summary>
- <para>Z axis speed multiplier.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.VelocityOverLifetimeModule.radial">
- <summary>
- <para>Curve to control particle speed based on lifetime, away from a center position.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.VelocityOverLifetimeModule.radialMultiplier">
- <summary>
- <para>Radial speed multiplier.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.VelocityOverLifetimeModule.space">
- <summary>
- <para>Specifies if the velocities are in local space (rotated with the transform) or world space.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.VelocityOverLifetimeModule.speedModifier">
- <summary>
- <para>Curve to control particle speed based on lifetime, without affecting the direction of the particles.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.VelocityOverLifetimeModule.speedModifierMultiplier">
- <summary>
- <para>Speed multiplier.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.VelocityOverLifetimeModule.x">
- <summary>
- <para>Curve to control particle speed based on lifetime, on the X axis.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.VelocityOverLifetimeModule.xMultiplier">
- <summary>
- <para>X axis speed multiplier.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.VelocityOverLifetimeModule.y">
- <summary>
- <para>Curve to control particle speed based on lifetime, on the Y axis.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.VelocityOverLifetimeModule.yMultiplier">
- <summary>
- <para>Y axis speed multiplier.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.VelocityOverLifetimeModule.z">
- <summary>
- <para>Curve to control particle speed based on lifetime, on the Z axis.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystem.VelocityOverLifetimeModule.zMultiplier">
- <summary>
- <para>Z axis speed multiplier.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ParticleSystemAnimationMode">
- <summary>
- <para>The animation mode.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemAnimationMode.Grid">
- <summary>
- <para>Use a regular grid to construct a sequence of animation frames.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemAnimationMode.Sprites">
- <summary>
- <para>Use a list of sprites to construct a sequence of animation frames.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ParticleSystemAnimationType">
- <summary>
- <para>The animation type.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemAnimationType.SingleRow">
- <summary>
- <para>Animate a single row in the sheet from left to right.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemAnimationType.WholeSheet">
- <summary>
- <para>Animate over the whole texture sheet from left to right, top to bottom.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ParticleSystemCollisionMode">
- <summary>
- <para>Whether to use 2D or 3D colliders for particle collisions.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemCollisionMode.Collision2D">
- <summary>
- <para>Use 2D colliders to collide particles against.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemCollisionMode.Collision3D">
- <summary>
- <para>Use 3D colliders to collide particles against.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ParticleSystemCollisionQuality">
- <summary>
- <para>Quality of world collisions. Medium and low quality are approximate and may leak particles.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemCollisionQuality.High">
- <summary>
- <para>The most accurate world collisions.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemCollisionQuality.Low">
- <summary>
- <para>Fastest and most approximate world collisions.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemCollisionQuality.Medium">
- <summary>
- <para>Approximate world collisions.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ParticleSystemCollisionType">
- <summary>
- <para>The type of collisions to use for a given particle system.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemCollisionType.Planes">
- <summary>
- <para>Collide with a list of planes.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemCollisionType.World">
- <summary>
- <para>Collide with the world geometry.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ParticleSystemCurveMode">
- <summary>
- <para>The particle curve mode (Shuriken).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemCurveMode.Constant">
- <summary>
- <para>Use a single constant for the ParticleSystem.MinMaxCurve.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemCurveMode.Curve">
- <summary>
- <para>Use a single curve for the ParticleSystem.MinMaxCurve.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemCurveMode.TwoConstants">
- <summary>
- <para>Use a random value between 2 constants for the ParticleSystem.MinMaxCurve.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemCurveMode.TwoCurves">
- <summary>
- <para>Use a random value between 2 curves for the ParticleSystem.MinMaxCurve.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ParticleSystemCustomData">
- <summary>
- <para>Which stream of custom particle data to set.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemCustomData.Custom1">
- <summary>
- <para>The first stream of custom per-particle data.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemCustomData.Custom2">
- <summary>
- <para>The second stream of custom per-particle data.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ParticleSystemCustomDataMode">
- <summary>
- <para>Which mode the Custom Data module uses to generate its data.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemCustomDataMode.Color">
- <summary>
- <para>Generate data using ParticleSystem.MinMaxGradient.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemCustomDataMode.Disabled">
- <summary>
- <para>Don't generate any data.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemCustomDataMode.Vector">
- <summary>
- <para>Generate data using ParticleSystem.MinMaxCurve.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ParticleSystemEmissionType">
- <summary>
- <para>The mode in which particles are emitted.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemEmissionType.Distance">
- <summary>
- <para>Emit when emitter moves.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemEmissionType.Time">
- <summary>
- <para>Emit over time.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ParticleSystemEmitterVelocityMode">
- <summary>
- <para>Control how a Particle System calculates its velocity.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemEmitterVelocityMode.Rigidbody">
- <summary>
- <para>Calculate the Particle System velocity by using a Rigidbody or Rigidbody2D component, if one exists on the Game Object.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemEmitterVelocityMode.Transform">
- <summary>
- <para>Calculate the Particle System velocity by using the Transform component.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ParticleSystemGradientMode">
- <summary>
- <para>The particle gradient mode (Shuriken).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemGradientMode.Color">
- <summary>
- <para>Use a single color for the ParticleSystem.MinMaxGradient.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemGradientMode.Gradient">
- <summary>
- <para>Use a single color gradient for the ParticleSystem.MinMaxGradient.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemGradientMode.RandomColor">
- <summary>
- <para>Define a list of colors in the ParticleSystem.MinMaxGradient, to be chosen from at random.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemGradientMode.TwoColors">
- <summary>
- <para>Use a random value between 2 colors for the ParticleSystem.MinMaxGradient.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemGradientMode.TwoGradients">
- <summary>
- <para>Use a random value between 2 color gradients for the ParticleSystem.MinMaxGradient.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ParticleSystemInheritVelocityMode">
- <summary>
- <para>How to apply emitter velocity to particles.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemInheritVelocityMode.Current">
- <summary>
- <para>Each particle's velocity is set to the emitter's current velocity value, every frame.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemInheritVelocityMode.Initial">
- <summary>
- <para>Each particle inherits the emitter's velocity on the frame when it was initially emitted.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ParticleSystemMeshShapeType">
- <summary>
- <para>The mesh emission type.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemMeshShapeType.Edge">
- <summary>
- <para>Emit from the edges of the mesh.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemMeshShapeType.Triangle">
- <summary>
- <para>Emit from the surface of the mesh.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemMeshShapeType.Vertex">
- <summary>
- <para>Emit from the vertices of the mesh.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ParticleSystemNoiseQuality">
- <summary>
- <para>The quality of the generated noise.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemNoiseQuality.High">
- <summary>
- <para>High quality 3D noise.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemNoiseQuality.Low">
- <summary>
- <para>Low quality 1D noise.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemNoiseQuality.Medium">
- <summary>
- <para>Medium quality 2D noise.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ParticleSystemOverlapAction">
- <summary>
- <para>What action to perform when the particle trigger module passes a test.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemOverlapAction.Callback">
- <summary>
- <para>Send the OnParticleTrigger command to the particle system's script.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemOverlapAction.Ignore">
- <summary>
- <para>Do nothing.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemOverlapAction.Kill">
- <summary>
- <para>Kill all particles that pass this test.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ParticleSystemRenderer">
- <summary>
- <para>Renders particles on to the screen (Shuriken).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystemRenderer.activeVertexStreamsCount">
- <summary>
- <para>The number of currently active custom vertex streams.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystemRenderer.alignment">
- <summary>
- <para>Control the direction that particles face.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystemRenderer.cameraVelocityScale">
- <summary>
- <para>How much are the particles stretched depending on the Camera's speed.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystemRenderer.enableGPUInstancing">
- <summary>
- <para>Enables GPU Instancing on platforms where it is supported.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystemRenderer.lengthScale">
- <summary>
- <para>How much are the particles stretched in their direction of motion.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystemRenderer.maskInteraction">
- <summary>
- <para>Specifies how the Particle System Renderer interacts with SpriteMask.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystemRenderer.maxParticleSize">
- <summary>
- <para>Clamp the maximum particle size.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystemRenderer.mesh">
- <summary>
- <para>Mesh used as particle instead of billboarded texture.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystemRenderer.meshCount">
- <summary>
- <para>The number of meshes being used for particle rendering.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystemRenderer.minParticleSize">
- <summary>
- <para>Clamp the minimum particle size.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystemRenderer.normalDirection">
- <summary>
- <para>How much are billboard particle normals oriented towards the camera.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystemRenderer.pivot">
- <summary>
- <para>Modify the pivot point used for rotating particles.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystemRenderer.renderMode">
- <summary>
- <para>How particles are drawn.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystemRenderer.sortingFudge">
- <summary>
- <para>Biases particle system sorting amongst other transparencies.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystemRenderer.sortMode">
- <summary>
- <para>Sort particles within a system.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystemRenderer.trailMaterial">
- <summary>
- <para>Set the material used by the Trail module for attaching trails to particles.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ParticleSystemRenderer.velocityScale">
- <summary>
- <para>How much are the particles stretched depending on "how fast they move".</para>
- </summary>
- </member>
- <member name="M:UnityEngine.ParticleSystemRenderer.AreVertexStreamsEnabled(UnityEngine.ParticleSystemVertexStreams)">
- <summary>
- <para>Query whether the particle system renderer uses a particular set of vertex streams.</para>
- </summary>
- <param name="streams">Streams to query.</param>
- <returns>
- <para>Whether all the queried streams are enabled or not.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.ParticleSystemRenderer.BakeMesh(UnityEngine.Mesh)">
- <summary>
- <para>Creates a snapshot of ParticleSystemRenderer and stores it in mesh.</para>
- </summary>
- <param name="mesh">A static mesh that will receive the snapshot of the particles.</param>
- <param name="camera">The camera used for determining which way view space particles will face.</param>
- <param name="useTransform">Include the rotation and scale of the Transform in the baked mesh.</param>
- </member>
- <member name="M:UnityEngine.ParticleSystemRenderer.BakeMesh(UnityEngine.Mesh,System.Boolean)">
- <summary>
- <para>Creates a snapshot of ParticleSystemRenderer and stores it in mesh.</para>
- </summary>
- <param name="mesh">A static mesh that will receive the snapshot of the particles.</param>
- <param name="camera">The camera used for determining which way view space particles will face.</param>
- <param name="useTransform">Include the rotation and scale of the Transform in the baked mesh.</param>
- </member>
- <member name="M:UnityEngine.ParticleSystemRenderer.BakeMesh(UnityEngine.Mesh,UnityEngine.Camera)">
- <summary>
- <para>Creates a snapshot of ParticleSystemRenderer and stores it in mesh.</para>
- </summary>
- <param name="mesh">A static mesh that will receive the snapshot of the particles.</param>
- <param name="camera">The camera used for determining which way view space particles will face.</param>
- <param name="useTransform">Include the rotation and scale of the Transform in the baked mesh.</param>
- </member>
- <member name="M:UnityEngine.ParticleSystemRenderer.BakeMesh(UnityEngine.Mesh,UnityEngine.Camera,System.Boolean)">
- <summary>
- <para>Creates a snapshot of ParticleSystemRenderer and stores it in mesh.</para>
- </summary>
- <param name="mesh">A static mesh that will receive the snapshot of the particles.</param>
- <param name="camera">The camera used for determining which way view space particles will face.</param>
- <param name="useTransform">Include the rotation and scale of the Transform in the baked mesh.</param>
- </member>
- <member name="M:UnityEngine.ParticleSystemRenderer.BakeTrailsMesh(UnityEngine.Mesh)">
- <summary>
- <para>Creates a snapshot of ParticleSystem Trails and stores them in mesh.</para>
- </summary>
- <param name="mesh">A static mesh that will receive the snapshot of the particle trails.</param>
- <param name="camera">The camera used for determining which way view space trails will face.</param>
- <param name="useTransform">Include the rotation and scale of the Transform in the baked mesh.</param>
- </member>
- <member name="M:UnityEngine.ParticleSystemRenderer.BakeTrailsMesh(UnityEngine.Mesh,System.Boolean)">
- <summary>
- <para>Creates a snapshot of ParticleSystem Trails and stores them in mesh.</para>
- </summary>
- <param name="mesh">A static mesh that will receive the snapshot of the particle trails.</param>
- <param name="camera">The camera used for determining which way view space trails will face.</param>
- <param name="useTransform">Include the rotation and scale of the Transform in the baked mesh.</param>
- </member>
- <member name="M:UnityEngine.ParticleSystemRenderer.BakeTrailsMesh(UnityEngine.Mesh,UnityEngine.Camera)">
- <summary>
- <para>Creates a snapshot of ParticleSystem Trails and stores them in mesh.</para>
- </summary>
- <param name="mesh">A static mesh that will receive the snapshot of the particle trails.</param>
- <param name="camera">The camera used for determining which way view space trails will face.</param>
- <param name="useTransform">Include the rotation and scale of the Transform in the baked mesh.</param>
- </member>
- <member name="M:UnityEngine.ParticleSystemRenderer.BakeTrailsMesh(UnityEngine.Mesh,UnityEngine.Camera,System.Boolean)">
- <summary>
- <para>Creates a snapshot of ParticleSystem Trails and stores them in mesh.</para>
- </summary>
- <param name="mesh">A static mesh that will receive the snapshot of the particle trails.</param>
- <param name="camera">The camera used for determining which way view space trails will face.</param>
- <param name="useTransform">Include the rotation and scale of the Transform in the baked mesh.</param>
- </member>
- <member name="M:UnityEngine.ParticleSystemRenderer.DisableVertexStreams(UnityEngine.ParticleSystemVertexStreams)">
- <summary>
- <para>Disable a set of vertex shader streams on the particle system renderer.
-The position stream is always enabled, and any attempts to remove it will be ignored.</para>
- </summary>
- <param name="streams">Streams to disable.</param>
- </member>
- <member name="M:UnityEngine.ParticleSystemRenderer.EnableVertexStreams(UnityEngine.ParticleSystemVertexStreams)">
- <summary>
- <para>Enable a set of vertex shader streams on the particle system renderer.</para>
- </summary>
- <param name="streams">Streams to enable.</param>
- </member>
- <member name="M:UnityEngine.ParticleSystemRenderer.GetActiveVertexStreams(System.Collections.Generic.List`1&lt;UnityEngine.ParticleSystemVertexStream&gt;)">
- <summary>
- <para>Query which vertex shader streams are enabled on the ParticleSystemRenderer.</para>
- </summary>
- <param name="streams">The array of streams to be populated.</param>
- </member>
- <member name="M:UnityEngine.ParticleSystemRenderer.GetEnabledVertexStreams(UnityEngine.ParticleSystemVertexStreams)">
- <summary>
- <para>Query whether the particle system renderer uses a particular set of vertex streams.</para>
- </summary>
- <param name="streams">Streams to query.</param>
- <returns>
- <para>Returns the subset of the queried streams that are actually enabled.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.ParticleSystemRenderer.GetMeshes(UnityEngine.Mesh[])">
- <summary>
- <para>Get the array of meshes to be used as particles.</para>
- </summary>
- <param name="meshes">This array will be populated with the list of meshes being used for particle rendering.</param>
- <returns>
- <para>The number of meshes actually written to the destination array.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.ParticleSystemRenderer.SetActiveVertexStreams(System.Collections.Generic.List`1&lt;UnityEngine.ParticleSystemVertexStream&gt;)">
- <summary>
- <para>Enable a set of vertex shader streams on the ParticleSystemRenderer.</para>
- </summary>
- <param name="streams">The new array of enabled vertex streams.</param>
- </member>
- <member name="M:UnityEngine.ParticleSystemRenderer.SetMeshes(UnityEngine.Mesh[])">
- <summary>
- <para>Set an array of meshes to be used as particles when the ParticleSystemRenderer.renderMode is set to ParticleSystemRenderMode.Mesh.</para>
- </summary>
- <param name="meshes">Array of meshes to be used.</param>
- <param name="size">Number of elements from the mesh array to be applied.</param>
- </member>
- <member name="M:UnityEngine.ParticleSystemRenderer.SetMeshes(UnityEngine.Mesh[],System.Int32)">
- <summary>
- <para>Set an array of meshes to be used as particles when the ParticleSystemRenderer.renderMode is set to ParticleSystemRenderMode.Mesh.</para>
- </summary>
- <param name="meshes">Array of meshes to be used.</param>
- <param name="size">Number of elements from the mesh array to be applied.</param>
- </member>
- <member name="T:UnityEngine.ParticleSystemRenderMode">
- <summary>
- <para>The rendering mode for particle systems (Shuriken).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemRenderMode.Billboard">
- <summary>
- <para>Render particles as billboards facing the active camera. (Default)</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemRenderMode.HorizontalBillboard">
- <summary>
- <para>Render particles as billboards always facing up along the y-Axis.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemRenderMode.Mesh">
- <summary>
- <para>Render particles as meshes.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemRenderMode.None">
- <summary>
- <para>Do not render particles.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemRenderMode.Stretch">
- <summary>
- <para>Stretch particles in the direction of motion.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemRenderMode.VerticalBillboard">
- <summary>
- <para>Render particles as billboards always facing the player, but not pitching along the x-Axis.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ParticleSystemRenderSpace">
- <summary>
- <para>How particles are aligned when rendered.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemRenderSpace.Facing">
- <summary>
- <para>Particles face the eye position.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemRenderSpace.Local">
- <summary>
- <para>Particles align with their local transform.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemRenderSpace.Velocity">
- <summary>
- <para>Particles are aligned to their direction of travel.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemRenderSpace.View">
- <summary>
- <para>Particles face the camera plane.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemRenderSpace.World">
- <summary>
- <para>Particles align with the world.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ParticleSystemScalingMode">
- <summary>
- <para>Control how particle systems apply transform scale.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemScalingMode.Hierarchy">
- <summary>
- <para>Scale the particle system using the entire transform hierarchy.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemScalingMode.Local">
- <summary>
- <para>Scale the particle system using only its own transform scale. (Ignores parent scale).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemScalingMode.Shape">
- <summary>
- <para>Only apply transform scale to the shape component, which controls where
- particles are spawned, but does not affect their size or movement.
- </para>
- </summary>
- </member>
- <member name="T:UnityEngine.ParticleSystemShapeMultiModeValue">
- <summary>
- <para>The mode used to generate new points in a shape (Shuriken).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemShapeMultiModeValue.BurstSpread">
- <summary>
- <para>Distribute new particles around the shape evenly.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemShapeMultiModeValue.Loop">
- <summary>
- <para>Animate the emission point around the shape.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemShapeMultiModeValue.PingPong">
- <summary>
- <para>Animate the emission point around the shape, alternating between clockwise and counter-clockwise directions.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemShapeMultiModeValue.Random">
- <summary>
- <para>Generate points randomly. (Default)</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ParticleSystemShapeTextureChannel">
- <summary>
- <para>The texture channel (Shuriken).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemShapeTextureChannel.Alpha">
- <summary>
- <para>The alpha channel.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemShapeTextureChannel.Blue">
- <summary>
- <para>The blue channel.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemShapeTextureChannel.Green">
- <summary>
- <para>The green channel.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemShapeTextureChannel.Red">
- <summary>
- <para>The red channel.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ParticleSystemShapeType">
- <summary>
- <para>The emission shape (Shuriken).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemShapeType.Box">
- <summary>
- <para>Emit from the volume of a box.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemShapeType.BoxEdge">
- <summary>
- <para>Emit from the edges of a box.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemShapeType.BoxShell">
- <summary>
- <para>Emit from the surface of a box.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemShapeType.Circle">
- <summary>
- <para>Emit from a circle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemShapeType.CircleEdge">
- <summary>
- <para>Emit from the edge of a circle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemShapeType.Cone">
- <summary>
- <para>Emit from the base of a cone.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemShapeType.ConeShell">
- <summary>
- <para>Emit from the base surface of a cone.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemShapeType.ConeVolume">
- <summary>
- <para>Emit from a cone.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemShapeType.ConeVolumeShell">
- <summary>
- <para>Emit from the surface of a cone.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemShapeType.Donut">
- <summary>
- <para>Emit from a Donut.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemShapeType.Hemisphere">
- <summary>
- <para>Emit from a half-sphere.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemShapeType.HemisphereShell">
- <summary>
- <para>Emit from the surface of a half-sphere.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemShapeType.Mesh">
- <summary>
- <para>Emit from a mesh.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemShapeType.MeshRenderer">
- <summary>
- <para>Emit from a mesh renderer.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemShapeType.Rectangle">
- <summary>
- <para>Emit from a rectangle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemShapeType.SingleSidedEdge">
- <summary>
- <para>Emit from an edge.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemShapeType.SkinnedMeshRenderer">
- <summary>
- <para>Emit from a skinned mesh renderer.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemShapeType.Sphere">
- <summary>
- <para>Emit from a sphere.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemShapeType.SphereShell">
- <summary>
- <para>Emit from the surface of a sphere.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemShapeType.Sprite">
- <summary>
- <para>Emit from a sprite.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemShapeType.SpriteRenderer">
- <summary>
- <para>Emit from a sprite renderer.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ParticleSystemSimulationSpace">
- <summary>
- <para>The space to simulate particles in.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemSimulationSpace.Custom">
- <summary>
- <para>Simulate particles relative to a custom transform component, defined by ParticleSystem.MainModule.customSimulationSpace.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemSimulationSpace.Local">
- <summary>
- <para>Simulate particles in local space.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemSimulationSpace.World">
- <summary>
- <para>Simulate particles in world space.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ParticleSystemSortMode">
- <summary>
- <para>The sorting mode for particle systems.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemSortMode.Distance">
- <summary>
- <para>Sort based on distance.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemSortMode.None">
- <summary>
- <para>No sorting.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemSortMode.OldestInFront">
- <summary>
- <para>Sort the oldest particles to the front.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemSortMode.YoungestInFront">
- <summary>
- <para>Sort the youngest particles to the front.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ParticleSystemStopAction">
- <summary>
- <para>The action to perform when the Particle System stops.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemStopAction.Callback">
- <summary>
- <para>Call OnParticleSystemStopped on the ParticleSystem script.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemStopAction.Destroy">
- <summary>
- <para>Destroy the GameObject containing the Particle System.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemStopAction.Disable">
- <summary>
- <para>Disable the GameObject containing the Particle System.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemStopAction.None">
- <summary>
- <para>Do nothing.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ParticleSystemStopBehavior">
- <summary>
- <para>The behavior to apply when calling ParticleSystem.Stop|Stop.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemStopBehavior.StopEmitting">
- <summary>
- <para>Stops particle system emitting any further particles. All existing particles will remain until they expire.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemStopBehavior.StopEmittingAndClear">
- <summary>
- <para>Stops particle system emitting and removes all existing emitted particles.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ParticleSystemSubEmitterProperties">
- <summary>
- <para>The properties of sub-emitter particles.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemSubEmitterProperties.InheritColor">
- <summary>
- <para>When spawning new particles, multiply the start color by the color of the parent particles.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemSubEmitterProperties.InheritEverything">
- <summary>
- <para>When spawning new particles, inherit all available properties from the parent particles.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemSubEmitterProperties.InheritLifetime">
- <summary>
- <para>New particles will have a shorter lifespan, the closer their parent particles are to death.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemSubEmitterProperties.InheritNothing">
- <summary>
- <para>When spawning new particles, do not inherit any properties from the parent particles.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemSubEmitterProperties.InheritRotation">
- <summary>
- <para>When spawning new particles, add the start rotation to the rotation of the parent particles.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemSubEmitterProperties.InheritSize">
- <summary>
- <para>When spawning new particles, multiply the start size by the size of the parent particles.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ParticleSystemSubEmitterType">
- <summary>
- <para>The events that cause new particles to be spawned.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemSubEmitterType.Birth">
- <summary>
- <para>Spawns new particles when particles from the parent system are born.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemSubEmitterType.Collision">
- <summary>
- <para>Spawns new particles when particles from the parent system collide with something.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemSubEmitterType.Death">
- <summary>
- <para>Spawns new particles when particles from the parent system die.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemSubEmitterType.Manual">
- <summary>
- <para>Spawns new particles when triggered from script using ParticleSystem.TriggerSubEmitter.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemSubEmitterType.Trigger">
- <summary>
- <para>Spawns new particles when particles from the parent system pass conditions in the Trigger Module.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ParticleSystemTrailMode">
- <summary>
- <para>Choose how Particle Trails are generated.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemTrailMode.PerParticle">
- <summary>
- <para>Makes a trail behind each particle as the particle moves.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemTrailMode.Ribbon">
- <summary>
- <para>Draws a line between each particle, connecting the youngest particle to the oldest.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ParticleSystemTrailTextureMode">
- <summary>
- <para>Choose how textures are applied to Particle Trails.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemTrailTextureMode.DistributePerSegment">
- <summary>
- <para>Map the texture once along the entire length of the trail, assuming all vertices are evenly spaced.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemTrailTextureMode.RepeatPerSegment">
- <summary>
- <para>Repeat the texture along the trail, repeating at a rate of once per trail segment. To adjust the tiling rate, use Material.SetTextureScale.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemTrailTextureMode.Stretch">
- <summary>
- <para>Map the texture once along the entire length of the trail.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemTrailTextureMode.Tile">
- <summary>
- <para>Repeat the texture along the trail. To set the tiling rate, use Material.SetTextureScale.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ParticleSystemTriggerEventType">
- <summary>
- <para>The different types of particle triggers.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemTriggerEventType.Enter">
- <summary>
- <para>Trigger when particles enter the collision volume.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemTriggerEventType.Exit">
- <summary>
- <para>Trigger when particles leave the collision volume.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemTriggerEventType.Inside">
- <summary>
- <para>Trigger when particles are inside the collision volume.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemTriggerEventType.Outside">
- <summary>
- <para>Trigger when particles are outside the collision volume.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ParticleSystemVertexStream">
- <summary>
- <para>All possible particle system vertex shader inputs.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemVertexStream.AgePercent">
- <summary>
- <para>The normalized age of each particle, from 0 to 1.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemVertexStream.AnimBlend">
- <summary>
- <para>The amount to blend between animated texture frames, from 0 to 1.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemVertexStream.AnimFrame">
- <summary>
- <para>The current animation frame index of each particle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemVertexStream.Center">
- <summary>
- <para>The center position of the entire particle, in world space.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemVertexStream.Color">
- <summary>
- <para>The color of each particle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemVertexStream.Custom1X">
- <summary>
- <para>One custom value for each particle, defined by the Custom Data Module, or ParticleSystem.SetCustomParticleData.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemVertexStream.Custom1XY">
- <summary>
- <para>Two custom values for each particle, defined by the Custom Data Module, or ParticleSystem.SetCustomParticleData.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemVertexStream.Custom1XYZ">
- <summary>
- <para>Three custom values for each particle, defined by the Custom Data Module, or ParticleSystem.SetCustomParticleData.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemVertexStream.Custom1XYZW">
- <summary>
- <para>Four custom values for each particle, defined by the Custom Data Module, or ParticleSystem.SetCustomParticleData.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemVertexStream.Custom2X">
- <summary>
- <para>One custom value for each particle, defined by the Custom Data Module, or ParticleSystem.SetCustomParticleData.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemVertexStream.Custom2XY">
- <summary>
- <para>Two custom values for each particle, defined by the Custom Data Module, or ParticleSystem.SetCustomParticleData.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemVertexStream.Custom2XYZ">
- <summary>
- <para>Three custom values for each particle, defined by the Custom Data Module, or ParticleSystem.SetCustomParticleData.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemVertexStream.Custom2XYZW">
- <summary>
- <para>Four custom values for each particle, defined by the Custom Data Module, or ParticleSystem.SetCustomParticleData.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemVertexStream.InvStartLifetime">
- <summary>
- <para>The reciprocal of the starting lifetime, in seconds (1.0f / startLifetime).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemVertexStream.NoiseImpulseX">
- <summary>
- <para>The X axis noise on the current frame.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemVertexStream.NoiseImpulseXY">
- <summary>
- <para>The X and Y axis noise on the current frame.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemVertexStream.NoiseImpulseXYZ">
- <summary>
- <para>The 3D noise on the current frame.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemVertexStream.NoiseSumX">
- <summary>
- <para>The accumulated X axis noise, over the lifetime of the particle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemVertexStream.NoiseSumXY">
- <summary>
- <para>The accumulated X and Y axis noise, over the lifetime of the particle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemVertexStream.NoiseSumXYZ">
- <summary>
- <para>The accumulated 3D noise, over the lifetime of the particle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemVertexStream.Normal">
- <summary>
- <para>The vertex normal of each particle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemVertexStream.Position">
- <summary>
- <para>The position of each particle vertex, in world space.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemVertexStream.Rotation">
- <summary>
- <para>The Z axis rotation of each particle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemVertexStream.Rotation3D">
- <summary>
- <para>The 3D rotation of each particle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemVertexStream.RotationSpeed">
- <summary>
- <para>The Z axis rotational speed of each particle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemVertexStream.RotationSpeed3D">
- <summary>
- <para>The 3D rotational speed of each particle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemVertexStream.SizeX">
- <summary>
- <para>The X axis size of each particle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemVertexStream.SizeXY">
- <summary>
- <para>The X and Y axis sizes of each particle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemVertexStream.SizeXYZ">
- <summary>
- <para>The 3D size of each particle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemVertexStream.Speed">
- <summary>
- <para>The speed of each particle, calculated by taking the magnitude of the velocity.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemVertexStream.StableRandomX">
- <summary>
- <para>A random number for each particle, which remains constant during their lifetime.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemVertexStream.StableRandomXY">
- <summary>
- <para>Two random numbers for each particle, which remain constant during their lifetime.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemVertexStream.StableRandomXYZ">
- <summary>
- <para>Three random numbers for each particle, which remain constant during their lifetime.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemVertexStream.StableRandomXYZW">
- <summary>
- <para>Four random numbers for each particle, which remain constant during their lifetime.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemVertexStream.Tangent">
- <summary>
- <para>The tangent vector for each particle (for normal mapping).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemVertexStream.UV">
- <summary>
- <para>The first UV stream of each particle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemVertexStream.UV2">
- <summary>
- <para>The second UV stream of each particle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemVertexStream.UV3">
- <summary>
- <para>The third UV stream of each particle (only for meshes).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemVertexStream.UV4">
- <summary>
- <para>The fourth UV stream of each particle (only for meshes).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemVertexStream.VaryingRandomX">
- <summary>
- <para>A random number for each particle, which changes during their lifetime.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemVertexStream.VaryingRandomXY">
- <summary>
- <para>Two random numbers for each particle, which change during their lifetime.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemVertexStream.VaryingRandomXYZ">
- <summary>
- <para>Three random numbers for each particle, which change during their lifetime.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemVertexStream.VaryingRandomXYZW">
- <summary>
- <para>Four random numbers for each particle, which change during their lifetime.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemVertexStream.Velocity">
- <summary>
- <para>The velocity of each particle, in world space.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemVertexStream.VertexID">
- <summary>
- <para>The vertex ID of each particle.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ParticleSystemVertexStreams">
- <summary>
- <para>All possible particle system vertex shader inputs.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemVertexStreams.All">
- <summary>
- <para>A mask with all vertex streams enabled.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemVertexStreams.CenterAndVertexID">
- <summary>
- <para>The center position of each particle, with the vertex ID of each particle, from 0-3, stored in the w component.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemVertexStreams.Color">
- <summary>
- <para>The color of each particle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemVertexStreams.Custom1">
- <summary>
- <para>The first stream of custom data, supplied from script.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemVertexStreams.Custom2">
- <summary>
- <para>The second stream of custom data, supplied from script.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemVertexStreams.Lifetime">
- <summary>
- <para>Alive time as a 0-1 value in the X component, and Total Lifetime in the Y component.
-To get the current particle age, simply multiply X by Y.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemVertexStreams.None">
- <summary>
- <para>A mask with no vertex streams enabled.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemVertexStreams.Normal">
- <summary>
- <para>The normal of each particle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemVertexStreams.Position">
- <summary>
- <para>The world space position of each particle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemVertexStreams.Random">
- <summary>
- <para>4 random numbers. The first 3 are deterministic and assigned once when each particle is born, but the 4th value will change during the lifetime of the particle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemVertexStreams.Rotation">
- <summary>
- <para>The rotation of each particle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemVertexStreams.Size">
- <summary>
- <para>The size of each particle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemVertexStreams.Tangent">
- <summary>
- <para>Tangent vectors for normal mapping.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemVertexStreams.UV">
- <summary>
- <para>The texture coordinates of each particle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemVertexStreams.UV2BlendAndFrame">
- <summary>
- <para>With the Texture Sheet Animation module enabled, this contains the UVs for the second texture frame, the blend factor for each particle, and the raw frame, allowing for blending of frames.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ParticleSystemVertexStreams.Velocity">
- <summary>
- <para>The 3D velocity of each particle.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Rendering.UVChannelFlags">
- <summary>
- <para>A flag representing each UV channel.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.UVChannelFlags.UV0">
- <summary>
- <para>First UV channel.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.UVChannelFlags.UV1">
- <summary>
- <para>Second UV channel.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.UVChannelFlags.UV2">
- <summary>
- <para>Third UV channel.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Rendering.UVChannelFlags.UV3">
- <summary>
- <para>Fourth UV channel.</para>
- </summary>
- </member>
- <member name="A:UnityEngine.ParticleSystemModule">
- <summary>
- <para>The ParticleSystem module implements Unity's particle system.</para>
- </summary>
- </member>
- </members>
-</doc>
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.ParticlesLegacyModule.dll b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.ParticlesLegacyModule.dll
deleted file mode 100644
index daa9e03..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.ParticlesLegacyModule.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.ParticlesLegacyModule.xml b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.ParticlesLegacyModule.xml
deleted file mode 100644
index d9643d1..0000000
--- a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.ParticlesLegacyModule.xml
+++ /dev/null
@@ -1,38 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
-<doc>
- <members>
- <assembly>
- <name>UnityEngine.ParticlesLegacyModule</name>
- </assembly>
- <member name="T:UnityEngine.EllipsoidParticleEmitter">
- <summary>
- <para>Class used to allow GameObject.AddComponent / GameObject.GetComponent to be used.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.MeshParticleEmitter">
- <summary>
- <para>Class used to allow GameObject.AddComponent / GameObject.GetComponent to be used.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ParticleAnimator">
- <summary>
- <para>(Legacy Particles) Particle animators move your particles over time, you use them to apply wind, drag &amp; color cycling to your particle emitters.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ParticleEmitter">
- <summary>
- <para>(Legacy Particles) Script interface for particle emitters.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ParticleRenderer">
- <summary>
- <para>(Legacy Particles) Renders particles on to the screen.</para>
- </summary>
- </member>
- <member name="A:UnityEngine.ParticlesLegacyModule">
- <summary>
- <para>The ParticlesLegacy module implements the legacy particle system in Unity.</para>
- </summary>
- </member>
- </members>
-</doc>
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.PerformanceReportingModule.dll b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.PerformanceReportingModule.dll
deleted file mode 100644
index b92b732..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.PerformanceReportingModule.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.PerformanceReportingModule.xml b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.PerformanceReportingModule.xml
deleted file mode 100644
index 9b76838..0000000
--- a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.PerformanceReportingModule.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
-<doc>
- <members>
- <assembly>
- <name>UnityEngine.PerformanceReportingModule</name>
- </assembly>
- <member name="T:UnityEngine.Analytics.PerformanceReporting">
- <summary>
- <para>Unity Performace provides insight into your game performace.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Analytics.PerformanceReporting.enabled">
- <summary>
- <para>Controls whether the Performance Reporting service is enabled at runtime.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Analytics.PerformanceReporting.graphicsInitializationFinishTime">
- <summary>
- <para>Time taken to initialize graphics in nanoseconds, measured from application startup.</para>
- </summary>
- </member>
- </members>
-</doc>
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.Physics2DModule.dll b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.Physics2DModule.dll
deleted file mode 100644
index f314fb9..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.Physics2DModule.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.Physics2DModule.xml b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.Physics2DModule.xml
deleted file mode 100644
index 9f5847f..0000000
--- a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.Physics2DModule.xml
+++ /dev/null
@@ -1,3169 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
-<doc>
- <members>
- <assembly>
- <name>UnityEngine.Physics2DModule</name>
- </assembly>
- <member name="T:UnityEngine.AnchoredJoint2D">
- <summary>
- <para>Parent class for all joints that have anchor points.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AnchoredJoint2D.anchor">
- <summary>
- <para>The joint's anchor point on the object that has the joint component.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AnchoredJoint2D.autoConfigureConnectedAnchor">
- <summary>
- <para>Should the connectedAnchor be calculated automatically?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AnchoredJoint2D.connectedAnchor">
- <summary>
- <para>The joint's anchor point on the second object (ie, the one which doesn't have the joint component).</para>
- </summary>
- </member>
- <member name="T:UnityEngine.AreaEffector2D">
- <summary>
- <para>Applies forces within an area.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AreaEffector2D.angularDrag">
- <summary>
- <para>The angular drag to apply to rigid-bodies.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AreaEffector2D.drag">
- <summary>
- <para>The linear drag to apply to rigid-bodies.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AreaEffector2D.forceAngle">
- <summary>
- <para>The angle of the force to be applied.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AreaEffector2D.forceMagnitude">
- <summary>
- <para>The magnitude of the force to be applied.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AreaEffector2D.forceTarget">
- <summary>
- <para>The target for where the effector applies any force.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AreaEffector2D.forceVariation">
- <summary>
- <para>The variation of the magnitude of the force to be applied.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.AreaEffector2D.useGlobalAngle">
- <summary>
- <para>Should the forceAngle use global space?</para>
- </summary>
- </member>
- <member name="T:UnityEngine.BoxCollider2D">
- <summary>
- <para>Collider for 2D physics representing an axis-aligned rectangle.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.BoxCollider2D.autoTiling">
- <summary>
- <para>Determines whether the BoxCollider2D's shape is automatically updated based on a SpriteRenderer's tiling properties.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.BoxCollider2D.edgeRadius">
- <summary>
- <para>Controls the radius of all edges created by the collider.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.BoxCollider2D.size">
- <summary>
- <para>The width and height of the rectangle.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.BuoyancyEffector2D">
- <summary>
- <para>Applies forces to simulate buoyancy, fluid-flow and fluid drag.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.BuoyancyEffector2D.angularDrag">
- <summary>
- <para>A force applied to slow angular movement of any Collider2D in contact with the effector.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.BuoyancyEffector2D.density">
- <summary>
- <para>The density of the fluid used to calculate the buoyancy forces.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.BuoyancyEffector2D.flowAngle">
- <summary>
- <para>The angle of the force used to similate fluid flow.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.BuoyancyEffector2D.flowMagnitude">
- <summary>
- <para>The magnitude of the force used to similate fluid flow.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.BuoyancyEffector2D.flowVariation">
- <summary>
- <para>The random variation of the force used to similate fluid flow.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.BuoyancyEffector2D.linearDrag">
- <summary>
- <para>A force applied to slow linear movement of any Collider2D in contact with the effector.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.BuoyancyEffector2D.surfaceLevel">
- <summary>
- <para>Defines an arbitrary horizontal line that represents the fluid surface level.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.CapsuleCollider2D">
- <summary>
- <para>A capsule-shaped primitive collider.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CapsuleCollider2D.direction">
- <summary>
- <para>The direction that the capsule sides can extend.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CapsuleCollider2D.size">
- <summary>
- <para>The width and height of the capsule area.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.CapsuleDirection2D">
- <summary>
- <para>The direction that the capsule sides can extend.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.CapsuleDirection2D.Horizontal">
- <summary>
- <para>The capsule sides extend horizontally.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.CapsuleDirection2D.Vertical">
- <summary>
- <para>The capsule sides extend vertically.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.CircleCollider2D">
- <summary>
- <para>Collider for 2D physics representing an circle.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CircleCollider2D.radius">
- <summary>
- <para>Radius of the circle.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Collider2D">
- <summary>
- <para>Parent class for collider types used with 2D gameplay.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Collider2D.attachedRigidbody">
- <summary>
- <para>The Rigidbody2D attached to the Collider2D.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Collider2D.bounciness">
- <summary>
- <para>Get the bounciness used by the collider.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Collider2D.bounds">
- <summary>
- <para>The world space bounding area of the collider.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Collider2D.composite">
- <summary>
- <para>Get the CompositeCollider2D that is available to be attached to the collider.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Collider2D.density">
- <summary>
- <para>The density of the collider used to calculate its mass (when auto mass is enabled).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Collider2D.friction">
- <summary>
- <para>Get the friction used by the collider.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Collider2D.isTrigger">
- <summary>
- <para>Is this collider configured as a trigger?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Collider2D.offset">
- <summary>
- <para>The local offset of the collider geometry.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Collider2D.shapeCount">
- <summary>
- <para>The number of separate shaped regions in the collider.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Collider2D.sharedMaterial">
- <summary>
- <para>The PhysicsMaterial2D that is applied to this collider.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Collider2D.usedByComposite">
- <summary>
- <para>Sets whether the Collider will be used or not used by a CompositeCollider2D.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Collider2D.usedByEffector">
- <summary>
- <para>Whether the collider is used by an attached effector or not.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Collider2D.Cast(UnityEngine.Vector2,UnityEngine.RaycastHit2D[],System.Single,System.Boolean)">
- <summary>
- <para>Casts the collider shape into the scene starting at the collider position ignoring the collider itself.</para>
- </summary>
- <param name="direction">Vector representing the direction to cast the shape.</param>
- <param name="results">Array to receive results.</param>
- <param name="distance">Maximum distance over which to cast the shape.</param>
- <param name="ignoreSiblingColliders">Should colliders attached to the same Rigidbody2D (known as sibling colliders) be ignored?</param>
- <returns>
- <para>The number of results returned.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Collider2D.Cast(UnityEngine.Vector2,UnityEngine.ContactFilter2D,UnityEngine.RaycastHit2D[],System.Single,System.Boolean)">
- <summary>
- <para>Casts the collider shape into the scene starting at the collider position ignoring the collider itself.</para>
- </summary>
- <param name="direction">Vector representing the direction to cast the shape.</param>
- <param name="contactFilter">Filter results defined by the contact filter.</param>
- <param name="results">Array to receive results.</param>
- <param name="distance">Maximum distance over which to cast the shape.</param>
- <param name="ignoreSiblingColliders">Should colliders attached to the same Rigidbody2D (known as sibling colliders) be ignored?</param>
- <returns>
- <para>The number of results returned.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Collider2D.Distance(UnityEngine.Collider2D)">
- <summary>
- <para>Calculates the minimum separation of this collider against another collider.</para>
- </summary>
- <param name="collider">A collider used to calculate the minimum separation against this collider.</param>
- <returns>
- <para>The minimum separation of collider and this collider.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Collider2D.GetContacts(UnityEngine.ContactPoint2D[])">
- <summary>
- <para>Retrieves all contact points for this collider.</para>
- </summary>
- <param name="contacts">An array of ContactPoint2D used to receive the results.</param>
- <returns>
- <para>Returns the number of contacts placed in the contacts array.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Collider2D.GetContacts(UnityEngine.Collider2D[])">
- <summary>
- <para>Retrieves all colliders in contact with this collider.</para>
- </summary>
- <param name="colliders">An array of Collider2D used to receive the results.</param>
- <returns>
- <para>Returns the number of contacts placed in the colliders array.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Collider2D.GetContacts(UnityEngine.ContactFilter2D,UnityEngine.ContactPoint2D[])">
- <summary>
- <para>Retrieves all contact points for this collider, with the results filtered by the ContactFilter2D.</para>
- </summary>
- <param name="contactFilter">The contact filter used to filter the results differently, such as by layer mask, Z depth, or normal angle.</param>
- <param name="contacts">An array of ContactPoint2D used to receive the results.</param>
- <returns>
- <para>Returns the number of contacts placed in the contacts array.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Collider2D.GetContacts(UnityEngine.ContactFilter2D,UnityEngine.Collider2D[])">
- <summary>
- <para>Retrieves all colliders in contact with this collider, with the results filtered by the ContactFilter2D.</para>
- </summary>
- <param name="contactFilter">The contact filter used to filter the results differently, such as by layer mask, Z depth, or normal angle.</param>
- <param name="colliders">An array of Collider2D used to receive the results.</param>
- <returns>
- <para>Returns the number of collidersplaced in the colliders array.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Collider2D.IsTouching(UnityEngine.Collider2D)">
- <summary>
- <para>Check whether this collider is touching the collider or not.</para>
- </summary>
- <param name="collider">The collider to check if it is touching this collider.</param>
- <returns>
- <para>Whether this collider is touching the collider or not.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Collider2D.IsTouching(UnityEngine.Collider2D,UnityEngine.ContactFilter2D)">
- <summary>
- <para>Check whether this collider is touching the collider or not with the results filtered by the ContactFilter2D.</para>
- </summary>
- <param name="collider">The collider to check if it is touching this collider.</param>
- <param name="contactFilter">The contact filter used to filter the results differently, such as by layer mask, Z depth, or normal angle.</param>
- <returns>
- <para>Whether this collider is touching the collider or not.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Collider2D.IsTouching(UnityEngine.ContactFilter2D)">
- <summary>
- <para>Check whether this collider is touching other colliders or not with the results filtered by the ContactFilter2D.</para>
- </summary>
- <param name="contactFilter">The contact filter used to filter the results differently, such as by layer mask, Z depth, or normal angle.</param>
- <returns>
- <para>Whether this collider is touching the collider or not.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Collider2D.IsTouchingLayers(System.Int32)">
- <summary>
- <para>Checks whether this collider is touching any colliders on the specified layerMask or not.</para>
- </summary>
- <param name="layerMask">Any colliders on any of these layers count as touching.</param>
- <returns>
- <para>Whether this collider is touching any collider on the specified layerMask or not.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Collider2D.OverlapCollider(UnityEngine.ContactFilter2D,UnityEngine.Collider2D[])">
- <summary>
- <para>Get a list of all colliders that overlap this collider.</para>
- </summary>
- <param name="contactFilter">The contact filter used to filter the results differently, such as by layer mask, Z depth. Note that normal angle is not used for overlap testing.</param>
- <param name="results">The array to receive results. The size of the array determines the maximum number of results that can be returned.</param>
- <returns>
- <para>Returns the number of results placed in the results array.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Collider2D.OverlapPoint(UnityEngine.Vector2)">
- <summary>
- <para>Check if a collider overlaps a point in space.</para>
- </summary>
- <param name="point">A point in world space.</param>
- <returns>
- <para>Does point overlap the collider?</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Collider2D.Raycast(UnityEngine.Vector2,UnityEngine.RaycastHit2D[],System.Single,System.Int32,System.Single,System.Single)">
- <summary>
- <para>Casts a ray into the scene starting at the collider position ignoring the collider itself.</para>
- </summary>
- <param name="direction">Vector representing the direction of the ray.</param>
- <param name="results">Array to receive results.</param>
- <param name="distance">Maximum distance over which to cast the ray.</param>
- <param name="layerMask">Filter to check objects only on specific layers.</param>
- <param name="minDepth">Only include objects with a Z coordinate (depth) greater than this value.</param>
- <param name="maxDepth">Only include objects with a Z coordinate (depth) less than this value.</param>
- <param name="contactFilter">Filter results defined by the contact filter.</param>
- <returns>
- <para>The number of results returned.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Collider2D.Raycast(UnityEngine.Vector2,UnityEngine.ContactFilter2D,UnityEngine.RaycastHit2D[],System.Single)">
- <summary>
- <para>Casts a ray into the scene starting at the collider position ignoring the collider itself.</para>
- </summary>
- <param name="direction">Vector representing the direction of the ray.</param>
- <param name="results">Array to receive results.</param>
- <param name="distance">Maximum distance over which to cast the ray.</param>
- <param name="layerMask">Filter to check objects only on specific layers.</param>
- <param name="minDepth">Only include objects with a Z coordinate (depth) greater than this value.</param>
- <param name="maxDepth">Only include objects with a Z coordinate (depth) less than this value.</param>
- <param name="contactFilter">Filter results defined by the contact filter.</param>
- <returns>
- <para>The number of results returned.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.ColliderDistance2D">
- <summary>
- <para>Represents the separation or overlap of two Collider2D.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ColliderDistance2D.distance">
- <summary>
- <para>Gets the distance between two colliders.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ColliderDistance2D.isOverlapped">
- <summary>
- <para>Gets whether the distance represents an overlap or not.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ColliderDistance2D.isValid">
- <summary>
- <para>Gets whether the distance is valid or not.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ColliderDistance2D.normal">
- <summary>
- <para>A normalized vector that points from pointB to pointA.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ColliderDistance2D.pointA">
- <summary>
- <para>A point on a Collider2D that is a specific distance away from pointB.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ColliderDistance2D.pointB">
- <summary>
- <para>A point on a Collider2D that is a specific distance away from pointA.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Collision2D">
- <summary>
- <para>Collision details returned by 2D physics callback functions.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Collision2D.collider">
- <summary>
- <para>The incoming Collider2D involved in the collision with the otherCollider.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Collision2D.contactCount">
- <summary>
- <para>Gets the number of contacts for this collision.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Collision2D.contacts">
- <summary>
- <para>The specific points of contact with the incoming Collider2D. You should avoid using this as it produces memory garbage. Use GetContact or GetContacts instead.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Collision2D.enabled">
- <summary>
- <para>Indicates whether the collision response or reaction is enabled or disabled.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Collision2D.gameObject">
- <summary>
- <para>The incoming GameObject involved in the collision.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Collision2D.otherCollider">
- <summary>
- <para>The other Collider2D involved in the collision with the collider.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Collision2D.otherRigidbody">
- <summary>
- <para>The other Rigidbody2D involved in the collision with the rigidbody.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Collision2D.relativeVelocity">
- <summary>
- <para>The relative linear velocity of the two colliding objects (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Collision2D.rigidbody">
- <summary>
- <para>The incoming Rigidbody2D involved in the collision with the otherRigidbody.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Collision2D.transform">
- <summary>
- <para>The Transform of the incoming object involved in the collision.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Collision2D.GetContact(System.Int32)">
- <summary>
- <para>Gets the contact point at the specified index.</para>
- </summary>
- <param name="index">The index of the contact to retrieve.</param>
- <returns>
- <para>The contact at the specified index.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Collision2D.GetContacts(UnityEngine.ContactPoint2D[])">
- <summary>
- <para>Retrieves all contact points in for contacts between collider and otherCollider.</para>
- </summary>
- <param name="contacts">An array of ContactPoint2D used to receive the results.</param>
- <returns>
- <para>Returns the number of contacts placed in the contacts array.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.CollisionDetectionMode2D">
- <summary>
- <para>Controls how collisions are detected when a Rigidbody2D moves.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.CollisionDetectionMode2D.Continuous">
- <summary>
- <para>Ensures that all collisions are detected when a Rigidbody2D moves.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.CollisionDetectionMode2D.Discrete">
- <summary>
- <para>When a Rigidbody2D moves, only collisions at the new position are detected.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.CollisionDetectionMode2D.None">
- <summary>
- <para>This mode is obsolete. You should use Discrete mode.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.CompositeCollider2D">
- <summary>
- <para>A Collider that can merge other Colliders together.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CompositeCollider2D.edgeRadius">
- <summary>
- <para>Controls the radius of all edges created by the Collider.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CompositeCollider2D.generationType">
- <summary>
- <para>Specifies when to generate the Composite Collider geometry.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CompositeCollider2D.geometryType">
- <summary>
- <para>Specifies the type of geometry the Composite Collider should generate.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CompositeCollider2D.pathCount">
- <summary>
- <para>The number of paths in the Collider.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CompositeCollider2D.pointCount">
- <summary>
- <para>Gets the total number of points in all the paths within the Collider.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CompositeCollider2D.vertexDistance">
- <summary>
- <para>Controls the minimum distance allowed between generated vertices.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.CompositeCollider2D.GenerateGeometry">
- <summary>
- <para>Regenerates the Composite Collider geometry.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.CompositeCollider2D.GenerationType">
- <summary>
- <para>Specifies when to generate the Composite Collider geometry.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.CompositeCollider2D.GenerationType.Manual">
- <summary>
- <para>Sets the Composite Collider geometry to not automatically update when a Collider used by the Composite Collider changes.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.CompositeCollider2D.GenerationType.Synchronous">
- <summary>
- <para>Sets the Composite Collider geometry to update synchronously immediately when a Collider used by the Composite Collider changes.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.CompositeCollider2D.GeometryType">
- <summary>
- <para>Specifies the type of geometry the Composite Collider generates.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.CompositeCollider2D.GeometryType.Outlines">
- <summary>
- <para>Sets the Composite Collider to generate closed outlines for the merged Collider geometry consisting of only edges.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.CompositeCollider2D.GeometryType.Polygons">
- <summary>
- <para>Sets the Composite Collider to generate closed outlines for the merged Collider geometry consisting of convex polygon shapes.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.CompositeCollider2D.GetPath(System.Int32,UnityEngine.Vector2[])">
- <summary>
- <para>Gets a path from the Collider by its index.</para>
- </summary>
- <param name="index">The index of the path from 0 to pathCount.</param>
- <param name="points">An ordered array of the vertices or points in the selected path.</param>
- <returns>
- <para>Returns the number of points placed in the points array.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.CompositeCollider2D.GetPathPointCount(System.Int32)">
- <summary>
- <para>Gets the number of points in the specified path from the Collider by its index.</para>
- </summary>
- <param name="index">The index of the path from 0 to pathCount.</param>
- <returns>
- <para>Returns the number of points in the path specified by index.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.ConstantForce2D">
- <summary>
- <para>Applies both linear and angular (torque) forces continuously to the rigidbody each physics update.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ConstantForce2D.force">
- <summary>
- <para>The linear force applied to the rigidbody each physics update.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ConstantForce2D.relativeForce">
- <summary>
- <para>The linear force, relative to the rigid-body coordinate system, applied each physics update.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ConstantForce2D.torque">
- <summary>
- <para>The torque applied to the rigidbody each physics update.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ContactFilter2D">
- <summary>
- <para>A set of parameters for filtering contact results.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ContactFilter2D.isFiltering">
- <summary>
- <para>Given the current state of the contact filter, determine whether it would filter anything.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ContactFilter2D.layerMask">
- <summary>
- <para>Sets the contact filter to filter the results that only include Collider2D on the layers defined by the layer mask.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ContactFilter2D.maxDepth">
- <summary>
- <para>Sets the contact filter to filter the results to only include Collider2D with a Z coordinate (depth) less than this value.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ContactFilter2D.maxNormalAngle">
- <summary>
- <para>Sets the contact filter to filter the results to only include contacts with collision normal angles that are less than this angle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ContactFilter2D.minDepth">
- <summary>
- <para>Sets the contact filter to filter the results to only include Collider2D with a Z coordinate (depth) greater than this value.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ContactFilter2D.minNormalAngle">
- <summary>
- <para>Sets the contact filter to filter the results to only include contacts with collision normal angles that are greater than this angle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ContactFilter2D.useDepth">
- <summary>
- <para>Sets the contact filter to filter the results by depth using minDepth and maxDepth.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ContactFilter2D.useLayerMask">
- <summary>
- <para>Sets the contact filter to filter results by layer mask.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ContactFilter2D.useNormalAngle">
- <summary>
- <para>Sets the contact filter to filter the results by the collision's normal angle using minNormalAngle and maxNormalAngle.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ContactFilter2D.useOutsideDepth">
- <summary>
- <para>Sets the contact filter to filter within the minDepth and maxDepth range, or outside that range.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ContactFilter2D.useOutsideNormalAngle">
- <summary>
- <para>Sets the contact filter to filter within the minNormalAngle and maxNormalAngle range, or outside that range.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ContactFilter2D.useTriggers">
- <summary>
- <para>Sets to filter contact results based on trigger collider involvement.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.ContactFilter2D.ClearDepth">
- <summary>
- <para>Turns off depth filtering by setting useDepth to false. The associated values of minDepth and maxDepth are not changed.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.ContactFilter2D.ClearLayerMask">
- <summary>
- <para>Turns off layer mask filtering by setting useLayerMask to false. The associated value of layerMask is not changed.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.ContactFilter2D.ClearNormalAngle">
- <summary>
- <para>Turns off normal angle filtering by setting useNormalAngle to false. The associated values of minNormalAngle and maxNormalAngle are not changed.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.ContactFilter2D.IsFilteringDepth(UnityEngine.GameObject)">
- <summary>
- <para>Checks if the Transform for obj is within the depth range to be filtered.</para>
- </summary>
- <param name="obj">The GameObject used to check the z-position (depth) of Transform.position.</param>
- <returns>
- <para>Returns true when obj is excluded by the filter and false if otherwise.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.ContactFilter2D.IsFilteringLayerMask(UnityEngine.GameObject)">
- <summary>
- <para>Checks if the GameObject.layer for obj is included in the layerMask to be filtered.</para>
- </summary>
- <param name="obj">The GameObject used to check the GameObject.layer.</param>
- <returns>
- <para>Returns true when obj is excluded by the filter and false if otherwise.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.ContactFilter2D.IsFilteringNormalAngle(UnityEngine.Vector2)">
- <summary>
- <para>Checks if the angle of normal is within the normal angle range to be filtered.</para>
- </summary>
- <param name="normal">The normal used to calculate an angle.</param>
- <returns>
- <para>Returns true when normal is excluded by the filter and false if otherwise.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.ContactFilter2D.IsFilteringNormalAngle(System.Single)">
- <summary>
- <para>Checks if the angle is within the normal angle range to be filtered.</para>
- </summary>
- <param name="angle">The angle used for comparison in the filter.</param>
- <returns>
- <para>Returns true when angle is excluded by the filter and false if otherwise.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.ContactFilter2D.IsFilteringTrigger(UnityEngine.Collider2D)">
- <summary>
- <para>Checks if the collider is a trigger and should be filtered by the useTriggers to be filtered.</para>
- </summary>
- <param name="collider">The Collider2D used to check for a trigger.</param>
- <returns>
- <para>Returns true when collider is excluded by the filter and false if otherwise.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.ContactFilter2D.NoFilter">
- <summary>
- <para>Sets the contact filter to not filter any ContactPoint2D.</para>
- </summary>
- <returns>
- <para>A copy of the contact filter set to not filter any ContactPoint2D.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.ContactFilter2D.SetDepth(System.Single,System.Single)">
- <summary>
- <para>Sets the minDepth and maxDepth filter properties and turns on depth filtering by setting useDepth to true.</para>
- </summary>
- <param name="minDepth">The value used to set minDepth.</param>
- <param name="maxDepth">The value used to set maxDepth.</param>
- </member>
- <member name="M:UnityEngine.ContactFilter2D.SetLayerMask(UnityEngine.LayerMask)">
- <summary>
- <para>Sets the layerMask filter property using the layerMask parameter provided and also enables layer mask filtering by setting useLayerMask to true.</para>
- </summary>
- <param name="layerMask">The value used to set the layerMask.</param>
- </member>
- <member name="M:UnityEngine.ContactFilter2D.SetNormalAngle(System.Single,System.Single)">
- <summary>
- <para>Sets the minNormalAngle and maxNormalAngle filter properties and turns on normal angle filtering by setting useNormalAngle to true.</para>
- </summary>
- <param name="minNormalAngle">The value used to set the minNormalAngle.</param>
- <param name="maxNormalAngle">The value used to set the maxNormalAngle.</param>
- </member>
- <member name="T:UnityEngine.ContactPoint2D">
- <summary>
- <para>Details about a specific point of contact involved in a 2D physics collision.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ContactPoint2D.collider">
- <summary>
- <para>The incoming Collider2D involved in the collision with the otherCollider.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ContactPoint2D.enabled">
- <summary>
- <para>Indicates whether the collision response or reaction is enabled or disabled.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ContactPoint2D.normal">
- <summary>
- <para>Surface normal at the contact point.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ContactPoint2D.normalImpulse">
- <summary>
- <para>Gets the impulse force applied at the contact point along the ContactPoint2D.normal.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ContactPoint2D.otherCollider">
- <summary>
- <para>The other Collider2D involved in the collision with the collider.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ContactPoint2D.otherRigidbody">
- <summary>
- <para>The other Rigidbody2D involved in the collision with the rigidbody.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ContactPoint2D.point">
- <summary>
- <para>The point of contact between the two colliders in world space.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ContactPoint2D.relativeVelocity">
- <summary>
- <para>Gets the relative velocity of the two colliders at the contact point (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ContactPoint2D.rigidbody">
- <summary>
- <para>The incoming Rigidbody2D involved in the collision with the otherRigidbody.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ContactPoint2D.separation">
- <summary>
- <para>Gets the distance between the colliders at the contact point.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ContactPoint2D.tangentImpulse">
- <summary>
- <para>Gets the impulse force applied at the contact point which is perpendicular to the ContactPoint2D.normal.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.DistanceJoint2D">
- <summary>
- <para>Joint that keeps two Rigidbody2D objects a fixed distance apart.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.DistanceJoint2D.autoConfigureDistance">
- <summary>
- <para>Should the distance be calculated automatically?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.DistanceJoint2D.distance">
- <summary>
- <para>The distance separating the two ends of the joint.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.DistanceJoint2D.maxDistanceOnly">
- <summary>
- <para>Whether to maintain a maximum distance only or not. If not then the absolute distance will be maintained instead.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.EdgeCollider2D">
- <summary>
- <para>Collider for 2D physics representing an arbitrary set of connected edges (lines) defined by its vertices.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.EdgeCollider2D.edgeCount">
- <summary>
- <para>Gets the number of edges.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.EdgeCollider2D.edgeRadius">
- <summary>
- <para>Controls the radius of all edges created by the collider.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.EdgeCollider2D.pointCount">
- <summary>
- <para>Gets the number of points.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.EdgeCollider2D.points">
- <summary>
- <para>Get or set the points defining multiple continuous edges.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.EdgeCollider2D.Reset">
- <summary>
- <para>Reset to a single edge consisting of two points.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Effector2D">
- <summary>
- <para>A base class for all 2D effectors.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Effector2D.colliderMask">
- <summary>
- <para>The mask used to select specific layers allowed to interact with the effector.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Effector2D.useColliderMask">
- <summary>
- <para>Should the collider-mask be used or the global collision matrix?</para>
- </summary>
- </member>
- <member name="T:UnityEngine.EffectorForceMode2D">
- <summary>
- <para>The mode used to apply Effector2D forces.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.EffectorForceMode2D.Constant">
- <summary>
- <para>The force is applied at a constant rate.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.EffectorForceMode2D.InverseLinear">
- <summary>
- <para>The force is applied inverse-linear relative to a point.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.EffectorForceMode2D.InverseSquared">
- <summary>
- <para>The force is applied inverse-squared relative to a point.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.EffectorSelection2D">
- <summary>
- <para>Selects the source and/or target to be used by an Effector2D.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.EffectorSelection2D.Collider">
- <summary>
- <para>The source/target is defined by the Collider2D.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.EffectorSelection2D.Rigidbody">
- <summary>
- <para>The source/target is defined by the Rigidbody2D.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.FixedJoint2D">
- <summary>
- <para>Connects two Rigidbody2D together at their anchor points using a configurable spring.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.FixedJoint2D.dampingRatio">
- <summary>
- <para>The amount by which the spring force is reduced in proportion to the movement speed.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.FixedJoint2D.frequency">
- <summary>
- <para>The frequency at which the spring oscillates around the distance between the objects.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.FixedJoint2D.referenceAngle">
- <summary>
- <para>The angle referenced between the two bodies used as the constraint for the joint.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ForceMode2D">
- <summary>
- <para>Option for how to apply a force using Rigidbody2D.AddForce.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ForceMode2D.Force">
- <summary>
- <para>Add a force to the Rigidbody2D, using its mass.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ForceMode2D.Impulse">
- <summary>
- <para>Add an instant force impulse to the rigidbody2D, using its mass.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.FrictionJoint2D">
- <summary>
- <para>Applies both force and torque to reduce both the linear and angular velocities to zero.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.FrictionJoint2D.maxForce">
- <summary>
- <para>The maximum force that can be generated when trying to maintain the friction joint constraint.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.FrictionJoint2D.maxTorque">
- <summary>
- <para>The maximum torque that can be generated when trying to maintain the friction joint constraint.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.HingeJoint2D">
- <summary>
- <para>Joint that allows a Rigidbody2D object to rotate around a point in space or a point on another object.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.HingeJoint2D.jointAngle">
- <summary>
- <para>The current joint angle (in degrees) with respect to the reference angle.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.HingeJoint2D.jointSpeed">
- <summary>
- <para>The current joint speed.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.HingeJoint2D.limits">
- <summary>
- <para>Limit of angular rotation (in degrees) on the joint.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.HingeJoint2D.limitState">
- <summary>
- <para>Gets the state of the joint limit.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.HingeJoint2D.motor">
- <summary>
- <para>Parameters for the motor force applied to the joint.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.HingeJoint2D.referenceAngle">
- <summary>
- <para>The angle (in degrees) referenced between the two bodies used as the constraint for the joint.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.HingeJoint2D.useLimits">
- <summary>
- <para>Should limits be placed on the range of rotation?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.HingeJoint2D.useMotor">
- <summary>
- <para>Should the joint be rotated automatically by a motor torque?</para>
- </summary>
- </member>
- <member name="M:UnityEngine.HingeJoint2D.GetMotorTorque(System.Single)">
- <summary>
- <para>Gets the motor torque of the joint given the specified timestep.</para>
- </summary>
- <param name="timeStep">The time to calculate the motor torque for.</param>
- </member>
- <member name="T:UnityEngine.Joint2D">
- <summary>
- <para>Parent class for joints to connect Rigidbody2D objects.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Joint2D.attachedRigidbody">
- <summary>
- <para>The Rigidbody2D attached to the Joint2D.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Joint2D.breakForce">
- <summary>
- <para>The force that needs to be applied for this joint to break.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Joint2D.breakTorque">
- <summary>
- <para>The torque that needs to be applied for this joint to break.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Joint2D.connectedBody">
- <summary>
- <para>The Rigidbody2D object to which the other end of the joint is attached (ie, the object without the joint component).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Joint2D.enableCollision">
- <summary>
- <para>Should the two rigid bodies connected with this joint collide with each other?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Joint2D.reactionForce">
- <summary>
- <para>Gets the reaction force of the joint.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Joint2D.reactionTorque">
- <summary>
- <para>Gets the reaction torque of the joint.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Joint2D.GetReactionForce(System.Single)">
- <summary>
- <para>Gets the reaction force of the joint given the specified timeStep.</para>
- </summary>
- <param name="timeStep">The time to calculate the reaction force for.</param>
- <returns>
- <para>The reaction force of the joint in the specified timeStep.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Joint2D.GetReactionTorque(System.Single)">
- <summary>
- <para>Gets the reaction torque of the joint given the specified timeStep.</para>
- </summary>
- <param name="timeStep">The time to calculate the reaction torque for.</param>
- <returns>
- <para>The reaction torque of the joint in the specified timeStep.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.JointAngleLimits2D">
- <summary>
- <para>Angular limits on the rotation of a Rigidbody2D object around a HingeJoint2D.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.JointAngleLimits2D.max">
- <summary>
- <para>Upper angular limit of rotation.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.JointAngleLimits2D.min">
- <summary>
- <para>Lower angular limit of rotation.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.JointLimitState2D">
- <summary>
- <para>Represents the state of a joint limit.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.JointLimitState2D.EqualLimits">
- <summary>
- <para>Represents a state where the joint limit is at the specified lower and upper limits (they are identical).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.JointLimitState2D.Inactive">
- <summary>
- <para>Represents a state where the joint limit is inactive.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.JointLimitState2D.LowerLimit">
- <summary>
- <para>Represents a state where the joint limit is at the specified lower limit.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.JointLimitState2D.UpperLimit">
- <summary>
- <para>Represents a state where the joint limit is at the specified upper limit.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.JointMotor2D">
- <summary>
- <para>Parameters for the optional motor force applied to a Joint2D.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.JointMotor2D.maxMotorTorque">
- <summary>
- <para>The maximum force that can be applied to the Rigidbody2D at the joint to attain the target speed.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.JointMotor2D.motorSpeed">
- <summary>
- <para>The desired speed for the Rigidbody2D to reach as it moves with the joint.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.JointSuspension2D">
- <summary>
- <para>Joint suspension is used to define how suspension works on a WheelJoint2D.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.JointSuspension2D.angle">
- <summary>
- <para>The world angle (in degrees) along which the suspension will move.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.JointSuspension2D.dampingRatio">
- <summary>
- <para>The amount by which the suspension spring force is reduced in proportion to the movement speed.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.JointSuspension2D.frequency">
- <summary>
- <para>The frequency at which the suspension spring oscillates.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.JointTranslationLimits2D">
- <summary>
- <para>Motion limits of a Rigidbody2D object along a SliderJoint2D.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.JointTranslationLimits2D.max">
- <summary>
- <para>Maximum distance the Rigidbody2D object can move from the Slider Joint's anchor.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.JointTranslationLimits2D.min">
- <summary>
- <para>Minimum distance the Rigidbody2D object can move from the Slider Joint's anchor.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Physics2D">
- <summary>
- <para>Global settings and helpers for 2D physics.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Physics2D.alwaysShowColliders">
- <summary>
- <para>Should the collider gizmos always be shown even when they are not selected?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Physics2D.angularSleepTolerance">
- <summary>
- <para>A rigid-body cannot sleep if its angular velocity is above this tolerance.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Physics2D.autoSimulation">
- <summary>
- <para>Sets whether the physics should be simulated automatically or not.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Physics2D.autoSyncTransforms">
- <summary>
- <para>Whether or not to automatically sync transform changes with the physics system whenever a Transform component changes.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Physics2D.baumgarteScale">
- <summary>
- <para>The scale factor that controls how fast overlaps are resolved.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Physics2D.baumgarteTOIScale">
- <summary>
- <para>The scale factor that controls how fast TOI overlaps are resolved.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Physics2D.callbacksOnDisable">
- <summary>
- <para>Use this to control whether or not the appropriate OnCollisionExit2D or OnTriggerExit2D callbacks should be called when a Collider2D is disabled.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Physics2D.colliderAABBColor">
- <summary>
- <para>Sets the color used by the gizmos to show all Collider axis-aligned bounding boxes (AABBs).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Physics2D.colliderAsleepColor">
- <summary>
- <para>The color used by the gizmos to show all asleep colliders (collider is asleep when the body is asleep).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Physics2D.colliderAwakeColor">
- <summary>
- <para>The color used by the gizmos to show all awake colliders (collider is awake when the body is awake).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Physics2D.colliderContactColor">
- <summary>
- <para>The color used by the gizmos to show all collider contacts.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Physics2D.contactArrowScale">
- <summary>
- <para>The scale of the contact arrow used by the collider gizmos.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Physics2D.defaultContactOffset">
- <summary>
- <para>The default contact offset of the newly created colliders.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Physics2D.gravity">
- <summary>
- <para>Acceleration due to gravity.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Physics2D.jobOptions">
- <summary>
- <para>A set of options that control how physics operates when using the job system to multithread the physics simulation.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Physics2D.linearSleepTolerance">
- <summary>
- <para>A rigid-body cannot sleep if its linear velocity is above this tolerance.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Physics2D.maxAngularCorrection">
- <summary>
- <para>The maximum angular position correction used when solving constraints. This helps to prevent overshoot.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Physics2D.maxLinearCorrection">
- <summary>
- <para>The maximum linear position correction used when solving constraints. This helps to prevent overshoot.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Physics2D.maxRotationSpeed">
- <summary>
- <para>The maximum angular speed of a rigid-body per physics update. Increasing this can cause numerical problems.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Physics2D.maxTranslationSpeed">
- <summary>
- <para>The maximum linear speed of a rigid-body per physics update. Increasing this can cause numerical problems.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Physics2D.positionIterations">
- <summary>
- <para>The number of iterations of the physics solver when considering objects' positions.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Physics2D.queriesHitTriggers">
- <summary>
- <para>Do raycasts detect Colliders configured as triggers?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Physics2D.queriesStartInColliders">
- <summary>
- <para>Sets the raycasts or linecasts that start inside Colliders to detect or not detect those Colliders.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Physics2D.showColliderAABB">
- <summary>
- <para>Should the collider gizmos show the AABBs for each collider?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Physics2D.showColliderContacts">
- <summary>
- <para>Should the collider gizmos show current contacts for each collider?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Physics2D.showColliderSleep">
- <summary>
- <para>Should the collider gizmos show the sleep-state for each collider?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Physics2D.timeToSleep">
- <summary>
- <para>The time in seconds that a rigid-body must be still before it will go to sleep.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Physics2D.velocityIterations">
- <summary>
- <para>The number of iterations of the physics solver when considering objects' velocities.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Physics2D.velocityThreshold">
- <summary>
- <para>Any collisions with a relative linear velocity below this threshold will be treated as inelastic.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Physics2D.AllLayers">
- <summary>
- <para>Layer mask constant that includes all layers.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Physics2D.BoxCast(UnityEngine.Vector2,UnityEngine.Vector2,System.Single,UnityEngine.Vector2,System.Single,System.Int32,System.Single,System.Single)">
- <summary>
- <para>Casts a box against colliders in the scene, returning the first collider to contact with it.</para>
- </summary>
- <param name="origin">The point in 2D space where the box originates.</param>
- <param name="size">The size of the box.</param>
- <param name="angle">The angle of the box (in degrees).</param>
- <param name="direction">Vector representing the direction of the box.</param>
- <param name="distance">Maximum distance over which to cast the box.</param>
- <param name="layerMask">Filter to detect Colliders only on certain layers.</param>
- <param name="minDepth">Only include objects with a Z coordinate (depth) greater than or equal to this value.</param>
- <param name="maxDepth">Only include objects with a Z coordinate (depth) less than or equal to this value.</param>
- <returns>
- <para>The cast results returned.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics2D.BoxCast(UnityEngine.Vector2,UnityEngine.Vector2,System.Single,UnityEngine.Vector2,UnityEngine.ContactFilter2D,UnityEngine.RaycastHit2D[],System.Single)">
- <summary>
- <para>Casts a box against the colliders in the Scene and returns all colliders that are in contact with it.</para>
- </summary>
- <param name="origin">The point in 2D space where the box originates.</param>
- <param name="size">The size of the box.</param>
- <param name="angle">The angle of the box (in degrees).</param>
- <param name="direction">Vector representing the direction of the box.</param>
- <param name="distance">Maximum distance over which to cast the box.</param>
- <param name="results">The array to receive results. The size of the array determines the maximum number of results that can be returned.</param>
- <param name="contactFilter">The contact filter used to filter the results differently, such as by layer mask, Z depth, or normal angle.</param>
- <returns>
- <para>Returns the number of results placed in the results array.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics2D.BoxCastAll(UnityEngine.Vector2,UnityEngine.Vector2,System.Single,UnityEngine.Vector2,System.Single,System.Int32,System.Single,System.Single)">
- <summary>
- <para>Casts a box against colliders in the scene, returning all colliders that contact with it.</para>
- </summary>
- <param name="origin">The point in 2D space where the box originates.</param>
- <param name="size">The size of the box.</param>
- <param name="angle">The angle of the box (in degrees).</param>
- <param name="direction">Vector representing the direction of the box.</param>
- <param name="distance">Maximum distance over which to cast the box.</param>
- <param name="layerMask">Filter to detect Colliders only on certain layers.</param>
- <param name="minDepth">Only include objects with a Z coordinate (depth) greater than or equal to this value.</param>
- <param name="maxDepth">Only include objects with a Z coordinate (depth) less than or equal to this value.</param>
- <returns>
- <para>The cast results returned.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics2D.BoxCastNonAlloc(UnityEngine.Vector2,UnityEngine.Vector2,System.Single,UnityEngine.Vector2,UnityEngine.RaycastHit2D[],System.Single,System.Int32,System.Single,System.Single)">
- <summary>
- <para>Casts a box into the scene, returning colliders that contact with it into the provided results array.</para>
- </summary>
- <param name="origin">The point in 2D space where the box originates.</param>
- <param name="size">The size of the box.</param>
- <param name="angle">The angle of the box (in degrees).</param>
- <param name="direction">Vector representing the direction of the box.</param>
- <param name="results">Array to receive results.</param>
- <param name="distance">Maximum distance over which to cast the box.</param>
- <param name="layerMask">Filter to detect Colliders only on certain layers.</param>
- <param name="minDepth">Only include objects with a Z coordinate (depth) greater than or equal to this value.</param>
- <param name="maxDepth">Only include objects with a Z coordinate (depth) less than or equal to this value.</param>
- <returns>
- <para>Returns the number of results placed in the results array.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics2D.CapsuleCast(UnityEngine.Vector2,UnityEngine.Vector2,UnityEngine.CapsuleDirection2D,System.Single,UnityEngine.Vector2,System.Single,System.Int32,System.Single,System.Single)">
- <summary>
- <para>Casts a capsule against colliders in the scene, returning the first collider to contact with it.</para>
- </summary>
- <param name="origin">The point in 2D space where the capsule originates.</param>
- <param name="size">The size of the capsule.</param>
- <param name="capsuleDirection">The direction of the capsule.</param>
- <param name="angle">The angle of the capsule (in degrees).</param>
- <param name="direction">Vector representing the direction to cast the capsule.</param>
- <param name="distance">Maximum distance over which to cast the capsule.</param>
- <param name="layerMask">Filter to detect Colliders only on certain layers.</param>
- <param name="minDepth">Only include objects with a Z coordinate (depth) greater than this value.</param>
- <param name="maxDepth">Only include objects with a Z coordinate (depth) less than this value.</param>
- <returns>
- <para>The cast results returned.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics2D.CapsuleCast(UnityEngine.Vector2,UnityEngine.Vector2,UnityEngine.CapsuleDirection2D,System.Single,UnityEngine.Vector2,UnityEngine.ContactFilter2D,UnityEngine.RaycastHit2D[],System.Single)">
- <summary>
- <para>Casts a capsule against the colliders in the Scene and returns all colliders that are in contact with it.</para>
- </summary>
- <param name="origin">The point in 2D space where the capsule originates.</param>
- <param name="size">The size of the capsule.</param>
- <param name="capsuleDirection">The direction of the capsule.</param>
- <param name="angle">The angle of the capsule (in degrees).</param>
- <param name="direction">Vector representing the direction to cast the capsule.</param>
- <param name="contactFilter">The contact filter used to filter the results differently, such as by layer mask, Z depth, or normal angle.</param>
- <param name="results">The array to receive results. The size of the array determines the maximum number of results that can be returned.</param>
- <param name="distance">Maximum distance over which to cast the capsule.</param>
- <returns>
- <para>Returns the number of results placed in the results array.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics2D.CapsuleCastAll(UnityEngine.Vector2,UnityEngine.Vector2,UnityEngine.CapsuleDirection2D,System.Single,UnityEngine.Vector2,System.Single,System.Int32,System.Single,System.Single)">
- <summary>
- <para>Casts a capsule against colliders in the scene, returning all colliders that contact with it.</para>
- </summary>
- <param name="origin">The point in 2D space where the capsule originates.</param>
- <param name="size">The size of the capsule.</param>
- <param name="capsuleDirection">The direction of the capsule.</param>
- <param name="angle">The angle of the capsule (in degrees).</param>
- <param name="direction">Vector representing the direction to cast the capsule.</param>
- <param name="distance">Maximum distance over which to cast the capsule.</param>
- <param name="layerMask">Filter to detect Colliders only on certain layers.</param>
- <param name="minDepth">Only include objects with a Z coordinate (depth) greater than this value.</param>
- <param name="maxDepth">Only include objects with a Z coordinate (depth) less than this value.</param>
- <returns>
- <para>The cast results returned.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics2D.CapsuleCastNonAlloc(UnityEngine.Vector2,UnityEngine.Vector2,UnityEngine.CapsuleDirection2D,System.Single,UnityEngine.Vector2,UnityEngine.RaycastHit2D[],System.Single,System.Int32,System.Single,System.Single)">
- <summary>
- <para>Casts a capsule into the scene, returning colliders that contact with it into the provided results array.</para>
- </summary>
- <param name="origin">The point in 2D space where the capsule originates.</param>
- <param name="size">The size of the capsule.</param>
- <param name="capsuleDirection">The direction of the capsule.</param>
- <param name="angle">The angle of the capsule (in degrees).</param>
- <param name="direction">Vector representing the direction to cast the capsule.</param>
- <param name="results">Array to receive results.</param>
- <param name="distance">Maximum distance over which to cast the capsule.</param>
- <param name="layerMask">Filter to detect Colliders only on certain layers.</param>
- <param name="minDepth">Only include objects with a Z coordinate (depth) greater than this value.</param>
- <param name="maxDepth">Only include objects with a Z coordinate (depth) less than this value.</param>
- <returns>
- <para>Returns the number of results placed in the results array.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics2D.CircleCast(UnityEngine.Vector2,System.Single,UnityEngine.Vector2,System.Single,System.Int32,System.Single,System.Single)">
- <summary>
- <para>Casts a circle against colliders in the scene, returning the first collider to contact with it.</para>
- </summary>
- <param name="origin">The point in 2D space where the circle originates.</param>
- <param name="radius">The radius of the circle.</param>
- <param name="direction">Vector representing the direction of the circle.</param>
- <param name="distance">Maximum distance over which to cast the circle.</param>
- <param name="layerMask">Filter to detect Colliders only on certain layers.</param>
- <param name="minDepth">Only include objects with a Z coordinate (depth) greater than or equal to this value.</param>
- <param name="maxDepth">Only include objects with a Z coordinate (depth) less than or equal to this value.</param>
- <returns>
- <para>The cast results returned.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics2D.CircleCast(UnityEngine.Vector2,System.Single,UnityEngine.Vector2,UnityEngine.ContactFilter2D,UnityEngine.RaycastHit2D[],System.Single)">
- <summary>
- <para>Casts a circle against colliders in the Scene, returning all colliders that contact with it.</para>
- </summary>
- <param name="origin">The point in 2D space where the circle originates.</param>
- <param name="radius">The radius of the circle.</param>
- <param name="direction">Vector representing the direction of the circle.</param>
- <param name="contactFilter">The contact filter used to filter the results differently, such as by layer mask, Z depth, or normal angle.</param>
- <param name="results">The array to receive results. The size of the array determines the maximum number of results that can be returned.</param>
- <param name="distance">Maximum distance over which to cast the circle.</param>
- <returns>
- <para>Returns the number of results placed in the results array.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics2D.CircleCastAll(UnityEngine.Vector2,System.Single,UnityEngine.Vector2,System.Single,System.Int32,System.Single,System.Single)">
- <summary>
- <para>Casts a circle against colliders in the scene, returning all colliders that contact with it.</para>
- </summary>
- <param name="origin">The point in 2D space where the circle originates.</param>
- <param name="radius">The radius of the circle.</param>
- <param name="direction">Vector representing the direction of the circle.</param>
- <param name="distance">Maximum distance over which to cast the circle.</param>
- <param name="layerMask">Filter to detect Colliders only on certain layers.</param>
- <param name="minDepth">Only include objects with a Z coordinate (depth) greater than or equal to this value.</param>
- <param name="maxDepth">Only include objects with a Z coordinate (depth) less than or equal to this value.</param>
- <returns>
- <para>The cast results returned.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics2D.CircleCastNonAlloc(UnityEngine.Vector2,System.Single,UnityEngine.Vector2,UnityEngine.RaycastHit2D[],System.Single,System.Int32,System.Single,System.Single)">
- <summary>
- <para>Casts a circle into the scene, returning colliders that contact with it into the provided results array.</para>
- </summary>
- <param name="origin">The point in 2D space where the circle originates.</param>
- <param name="radius">The radius of the circle.</param>
- <param name="direction">Vector representing the direction of the circle.</param>
- <param name="results">Array to receive results.</param>
- <param name="distance">Maximum distance over which to cast the circle.</param>
- <param name="layerMask">Filter to detect Colliders only on certain layers.</param>
- <param name="minDepth">Only include objects with a Z coordinate (depth) greater than or equal to this value.</param>
- <param name="maxDepth">Only include objects with a Z coordinate (depth) less than or equal to this value.</param>
- <returns>
- <para>Returns the number of results placed in the results array.</para>
- </returns>
- </member>
- <member name="F:UnityEngine.Physics2D.DefaultRaycastLayers">
- <summary>
- <para>Layer mask constant that includes all layers participating in raycasts by default.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Physics2D.Distance(UnityEngine.Collider2D,UnityEngine.Collider2D)">
- <summary>
- <para>Calculates the minimum distance between two colliders.</para>
- </summary>
- <param name="colliderA">A collider used to calculate the minimum distance against colliderB.</param>
- <param name="colliderB">A collider used to calculate the minimum distance against colliderA.</param>
- <returns>
- <para>The minimum distance between colliderA and colliderB.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics2D.GetContacts(UnityEngine.Collider2D,UnityEngine.Collider2D[])">
- <summary>
- <para>Retrieves all colliders in contact with the collider.</para>
- </summary>
- <param name="collider">The collider to retrieve contacts for.</param>
- <param name="colliders">An array of Collider2D used to receive the results.</param>
- <returns>
- <para>Returns the number of colliders placed in the colliders array.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics2D.GetContacts(UnityEngine.Collider2D,UnityEngine.ContactPoint2D[])">
- <summary>
- <para>Retrieves all contact points in contact with the collider.</para>
- </summary>
- <param name="collider">The collider to retrieve contacts for.</param>
- <param name="contacts">An array of ContactPoint2D used to receive the results.</param>
- <returns>
- <para>Returns the number of contacts placed in the contacts array.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics2D.GetContacts(UnityEngine.Collider2D,UnityEngine.ContactFilter2D,UnityEngine.ContactPoint2D[])">
- <summary>
- <para>Retrieves all contact points in contact with the collider, with the results filtered by the ContactFilter2D.</para>
- </summary>
- <param name="collider">The collider to retrieve contacts for.</param>
- <param name="contactFilter">The contact filter used to filter the results differently, such as by layer mask, Z depth, or normal angle.</param>
- <param name="contacts">An array of ContactPoint2D used to receive the results.</param>
- <returns>
- <para>Returns the number of contacts placed in the contacts array.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics2D.GetContacts(UnityEngine.Collider2D,UnityEngine.ContactFilter2D,UnityEngine.Collider2D[])">
- <summary>
- <para>Retrieves all colliders in contact with the collider, with the results filtered by the ContactFilter2D.</para>
- </summary>
- <param name="collider">The collider to retrieve contacts for.</param>
- <param name="contactFilter">The contact filter used to filter the results differently, such as by layer mask, Z depth, or normal angle.</param>
- <param name="colliders">An array of Collider2D used to receive the results.</param>
- <returns>
- <para>Returns the number of colliders placed in the colliders array.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics2D.GetContacts(UnityEngine.Collider2D,UnityEngine.Collider2D,UnityEngine.ContactFilter2D,UnityEngine.ContactPoint2D[])">
- <summary>
- <para>Retrieves all contact points in for contacts between with the collider1 and collider2, with the results filtered by the ContactFilter2D.</para>
- </summary>
- <param name="collider1">The collider to check if it has contacts against collider2.</param>
- <param name="collider2">The collider to check if it has contacts against collider1.</param>
- <param name="contactFilter">The contact filter used to filter the results differently, such as by layer mask, Z depth, or normal angle.</param>
- <param name="contacts">An array of ContactPoint2D used to receive the results.</param>
- <returns>
- <para>Returns the number of contacts placed in the contacts array.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics2D.GetContacts(UnityEngine.Rigidbody2D,UnityEngine.ContactPoint2D[])">
- <summary>
- <para>Retrieves all contact points in contact with any of the collider(s) attached to this rigidbody.</para>
- </summary>
- <param name="rigidbody">The rigidbody to retrieve contacts for. All colliders attached to this rigidbody will be checked.</param>
- <param name="contacts">An array of ContactPoint2D used to receive the results.</param>
- <returns>
- <para>Returns the number of contacts placed in the contacts array.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics2D.GetContacts(UnityEngine.Rigidbody2D,UnityEngine.Collider2D[])">
- <summary>
- <para>Retrieves all colliders in contact with any of the collider(s) attached to this rigidbody.</para>
- </summary>
- <param name="rigidbody">The rigidbody to retrieve contacts for. All colliders attached to this rigidbody will be checked.</param>
- <param name="colliders">An array of Collider2D used to receive the results.</param>
- <returns>
- <para>Returns the number of colliders placed in the colliders array.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics2D.GetContacts(UnityEngine.Rigidbody2D,UnityEngine.ContactFilter2D,UnityEngine.ContactPoint2D[])">
- <summary>
- <para>Retrieves all contact points in contact with any of the collider(s) attached to this rigidbody, with the results filtered by the ContactFilter2D.</para>
- </summary>
- <param name="rigidbody">The rigidbody to retrieve contacts for. All colliders attached to this rigidbody will be checked.</param>
- <param name="contactFilter">The contact filter used to filter the results differently, such as by layer mask, Z depth, or normal angle.</param>
- <param name="contacts">An array of ContactPoint2D used to receive the results.</param>
- <returns>
- <para>Returns the number of contacts placed in the contacts array.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics2D.GetContacts(UnityEngine.Rigidbody2D,UnityEngine.ContactFilter2D,UnityEngine.Collider2D[])">
- <summary>
- <para>Retrieves all colliders in contact with any of the collider(s) attached to this rigidbody, with the results filtered by the ContactFilter2D.</para>
- </summary>
- <param name="rigidbody">The rigidbody to retrieve contacts for. All colliders attached to this rigidbody will be checked.</param>
- <param name="contactFilter">The contact filter used to filter the results differently, such as by layer mask, Z depth, or normal angle.</param>
- <param name="colliders">An array of Collider2D used to receive the results.</param>
- <returns>
- <para>Returns the number of colliders placed in the colliders array.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics2D.GetIgnoreCollision(UnityEngine.Collider2D,UnityEngine.Collider2D)">
- <summary>
- <para>Checks whether the collision detection system will ignore all collisionstriggers between collider1 and collider2/ or not.</para>
- </summary>
- <param name="collider1">The first collider to compare to collider2.</param>
- <param name="collider2">The second collider to compare to collider1.</param>
- <returns>
- <para>Whether the collision detection system will ignore all collisionstriggers between collider1 and collider2/ or not.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics2D.GetIgnoreLayerCollision(System.Int32,System.Int32)">
- <summary>
- <para>Checks whether collisions between the specified layers be ignored or not.</para>
- </summary>
- <param name="layer1">ID of first layer.</param>
- <param name="layer2">ID of second layer.</param>
- <returns>
- <para>Whether collisions between the specified layers be ignored or not.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics2D.GetLayerCollisionMask(System.Int32)">
- <summary>
- <para>Get the collision layer mask that indicates which layer(s) the specified layer can collide with.</para>
- </summary>
- <param name="layer">The layer to retrieve the collision layer mask for.</param>
- <returns>
- <para>A mask where each bit indicates a layer and whether it can collide with layer or not.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics2D.GetRayIntersection(UnityEngine.Ray,System.Single,System.Int32)">
- <summary>
- <para>Cast a 3D ray against the colliders in the scene returning the first collider along the ray.</para>
- </summary>
- <param name="ray">The 3D ray defining origin and direction to test.</param>
- <param name="distance">Maximum distance over which to cast the ray.</param>
- <param name="layerMask">Filter to detect colliders only on certain layers.</param>
- <returns>
- <para>The cast results returned.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics2D.GetRayIntersectionAll(UnityEngine.Ray,System.Single,System.Int32)">
- <summary>
- <para>Cast a 3D ray against the colliders in the scene returning all the colliders along the ray.</para>
- </summary>
- <param name="ray">The 3D ray defining origin and direction to test.</param>
- <param name="distance">Maximum distance over which to cast the ray.</param>
- <param name="layerMask">Filter to detect colliders only on certain layers.</param>
- <returns>
- <para>The cast results returned.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics2D.GetRayIntersectionNonAlloc(UnityEngine.Ray,UnityEngine.RaycastHit2D[],System.Single,System.Int32)">
- <summary>
- <para>Cast a 3D ray against the colliders in the scene returning the colliders along the ray.</para>
- </summary>
- <param name="ray">The 3D ray defining origin and direction to test.</param>
- <param name="distance">Maximum distance over which to cast the ray.</param>
- <param name="layerMask">Filter to detect colliders only on certain layers.</param>
- <param name="results">Array to receive results.</param>
- <returns>
- <para>The number of results returned.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics2D.IgnoreCollision(UnityEngine.Collider2D,UnityEngine.Collider2D,System.Boolean)">
- <summary>
- <para>Makes the collision detection system ignore all collisionstriggers between collider1 and collider2/.</para>
- </summary>
- <param name="collider1">The first collider to compare to collider2.</param>
- <param name="collider2">The second collider to compare to collider1.</param>
- <param name="ignore">Whether collisionstriggers between collider1 and collider2/ should be ignored or not.</param>
- </member>
- <member name="M:UnityEngine.Physics2D.IgnoreLayerCollision(System.Int32,System.Int32,System.Boolean)">
- <summary>
- <para>Choose whether to detect or ignore collisions between a specified pair of layers.</para>
- </summary>
- <param name="layer1">ID of the first layer.</param>
- <param name="layer2">ID of the second layer.</param>
- <param name="ignore">Should collisions between these layers be ignored?</param>
- </member>
- <member name="F:UnityEngine.Physics2D.IgnoreRaycastLayer">
- <summary>
- <para>Layer mask constant for the default layer that ignores raycasts.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Physics2D.IsTouching(UnityEngine.Collider2D,UnityEngine.Collider2D)">
- <summary>
- <para>Checks whether the passed colliders are in contact or not.</para>
- </summary>
- <param name="collider1">The collider to check if it is touching collider2.</param>
- <param name="collider2">The collider to check if it is touching collider1.</param>
- <returns>
- <para>Whether collider1 is touching collider2 or not.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics2D.IsTouching(UnityEngine.Collider2D,UnityEngine.ContactFilter2D)">
- <summary>
- <para>Checks whether the passed colliders are in contact or not.</para>
- </summary>
- <param name="collider">The collider to check if it is touching any other collider filtered by the contactFilter.</param>
- <param name="contactFilter">The contact filter used to filter the results differently, such as by layer mask, Z depth, or normal angle.</param>
- <returns>
- <para>Whether the collider is touching any other collider filtered by the contactFilter or not.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics2D.IsTouching(UnityEngine.Collider2D,UnityEngine.Collider2D,UnityEngine.ContactFilter2D)">
- <summary>
- <para>Checks whether the passed colliders are in contact or not.</para>
- </summary>
- <param name="collider1">The collider to check if it is touching collider2.</param>
- <param name="collider2">The collider to check if it is touching collider1.</param>
- <param name="contactFilter">The contact filter used to filter the results differently, such as by layer mask, Z depth, or normal angle.</param>
- <returns>
- <para>Whether collider1 is touching collider2 or not.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics2D.IsTouchingLayers(UnityEngine.Collider2D,System.Int32)">
- <summary>
- <para>Checks whether the collider is touching any colliders on the specified layerMask or not.</para>
- </summary>
- <param name="collider">The collider to check if it is touching colliders on the layerMask.</param>
- <param name="layerMask">Any colliders on any of these layers count as touching.</param>
- <returns>
- <para>Whether the collider is touching any colliders on the specified layerMask or not.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics2D.Linecast(UnityEngine.Vector2,UnityEngine.Vector2,System.Int32,System.Single,System.Single)">
- <summary>
- <para>Casts a line segment against colliders in the Scene.</para>
- </summary>
- <param name="start">The start point of the line in world space.</param>
- <param name="end">The end point of the line in world space.</param>
- <param name="layerMask">Filter to detect Colliders only on certain layers.</param>
- <param name="minDepth">Only include objects with a Z coordinate (depth) greater than or equal to this value.</param>
- <param name="maxDepth">Only include objects with a Z coordinate (depth) less than or equal to this value.</param>
- <returns>
- <para>The cast results returned.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics2D.Linecast(UnityEngine.Vector2,UnityEngine.Vector2,UnityEngine.ContactFilter2D,UnityEngine.RaycastHit2D[])">
- <summary>
- <para>Casts a line segment against colliders in the Scene with results filtered by ContactFilter2D.</para>
- </summary>
- <param name="start">The start point of the line in world space.</param>
- <param name="end">The end point of the line in world space.</param>
- <param name="results">The array to receive results. The size of the array determines the maximum number of results that can be returned.</param>
- <param name="contactFilter">The contact filter used to filter the results differently, such as by layer mask, Z depth, or normal angle.</param>
- <returns>
- <para>Returns the number of results placed in the results array.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics2D.LinecastAll(UnityEngine.Vector2,UnityEngine.Vector2,System.Int32,System.Single,System.Single)">
- <summary>
- <para>Casts a line against colliders in the scene.</para>
- </summary>
- <param name="start">The start point of the line in world space.</param>
- <param name="end">The end point of the line in world space.</param>
- <param name="layerMask">Filter to detect Colliders only on certain layers.</param>
- <param name="minDepth">Only include objects with a Z coordinate (depth) greater than or equal to this value.</param>
- <param name="maxDepth">Only include objects with a Z coordinate (depth) less than or equal to this value.</param>
- <returns>
- <para>The cast results returned.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics2D.LinecastNonAlloc(UnityEngine.Vector2,UnityEngine.Vector2,UnityEngine.RaycastHit2D[],System.Int32,System.Single,System.Single)">
- <summary>
- <para>Casts a line against colliders in the scene.</para>
- </summary>
- <param name="minDepth">Only include objects with a Z coordinate (depth) greater than or equal to this value.</param>
- <param name="maxDepth">Only include objects with a Z coordinate (depth) less than or equal to this value.</param>
- <param name="start">The start point of the line in world space.</param>
- <param name="end">The end point of the line in world space.</param>
- <param name="results">Returned array of objects that intersect the line.</param>
- <param name="layerMask">Filter to detect Colliders only on certain layers.</param>
- <returns>
- <para>Returns the number of results placed in the results array.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics2D.OverlapArea(UnityEngine.Vector2,UnityEngine.Vector2,System.Int32,System.Single,System.Single)">
- <summary>
- <para>Checks if a collider falls within a rectangular area.</para>
- </summary>
- <param name="pointA">One corner of the rectangle.</param>
- <param name="pointB">Diagonally opposite the point A corner of the rectangle.</param>
- <param name="layerMask">Filter to check objects only on specific layers.</param>
- <param name="minDepth">Only include objects with a Z coordinate (depth) greater than or equal to this value.</param>
- <param name="maxDepth">Only include objects with a Z coordinate (depth) less than or equal to this value.</param>
- <returns>
- <para>The collider overlapping the area.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics2D.OverlapArea(UnityEngine.Vector2,UnityEngine.Vector2,UnityEngine.ContactFilter2D,UnityEngine.Collider2D[])">
- <summary>
- <para>Checks if a collider falls within a rectangular area.</para>
- </summary>
- <param name="pointA">One corner of the rectangle.</param>
- <param name="pointB">Diagonally opposite the point A corner of the rectangle.</param>
- <param name="results">The array to receive results. The size of the array determines the maximum number of results that can be returned.</param>
- <param name="contactFilter">The contact filter used to filter the results differently, such as by layer mask, Z depth. Note that normal angle is not used for overlap testing.</param>
- <returns>
- <para>Returns the number of results placed in the results array.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics2D.OverlapAreaAll(UnityEngine.Vector2,UnityEngine.Vector2,System.Int32,System.Single,System.Single)">
- <summary>
- <para>Get a list of all colliders that fall within a rectangular area.</para>
- </summary>
- <param name="pointA">One corner of the rectangle.</param>
- <param name="pointB">Diagonally opposite the point A corner of the rectangle.</param>
- <param name="layerMask">Filter to check objects only on specific layers.</param>
- <param name="minDepth">Only include objects with a Z coordinate (depth) greater than or equal to this value.</param>
- <param name="maxDepth">Only include objects with a Z coordinate (depth) less than or equal to this value.</param>
- <returns>
- <para>The cast results returned.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics2D.OverlapAreaNonAlloc(UnityEngine.Vector2,UnityEngine.Vector2,UnityEngine.Collider2D[],System.Int32,System.Single,System.Single)">
- <summary>
- <para>Get a list of all colliders that fall within a specified area.</para>
- </summary>
- <param name="pointA">One corner of the rectangle.</param>
- <param name="pointB">Diagonally opposite the point A corner of the rectangle.</param>
- <param name="results">Array to receive results.</param>
- <param name="layerMask">Filter to check objects only on specified layers.</param>
- <param name="minDepth">Only include objects with a Z coordinate (depth) greater than or equal to this value.</param>
- <param name="maxDepth">Only include objects with a Z coordinate (depth) less than or equal to this value.</param>
- <returns>
- <para>Returns the number of results placed in the results array.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics2D.OverlapBox(UnityEngine.Vector2,UnityEngine.Vector2,System.Single,System.Int32,System.Single,System.Single)">
- <summary>
- <para>Checks if a collider falls within a box area.</para>
- </summary>
- <param name="point">Center of the box.</param>
- <param name="size">Size of the box.</param>
- <param name="angle">Angle of the box.</param>
- <param name="layerMask">Filter to check objects only on specific layers.</param>
- <param name="minDepth">Only include objects with a Z coordinate (depth) greater than this value.</param>
- <param name="maxDepth">Only include objects with a Z coordinate (depth) less than this value.</param>
- <returns>
- <para>The collider overlapping the box.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics2D.OverlapBox(UnityEngine.Vector2,UnityEngine.Vector2,System.Single,UnityEngine.ContactFilter2D,UnityEngine.Collider2D[])">
- <summary>
- <para>Checks if a collider falls within a box area.</para>
- </summary>
- <param name="point">Center of the box.</param>
- <param name="size">Size of the box.</param>
- <param name="angle">Angle of the box.</param>
- <param name="contactFilter">The contact filter used to filter the results differently, such as by layer mask, Z depth. Note that normal angle is not used for overlap testing.</param>
- <param name="results">The array to receive results. The size of the array determines the maximum number of results that can be returned.</param>
- <returns>
- <para>Returns the number of results placed in the results array.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics2D.OverlapBoxAll(UnityEngine.Vector2,UnityEngine.Vector2,System.Single,System.Int32,System.Single,System.Single)">
- <summary>
- <para>Get a list of all colliders that fall within a box area.</para>
- </summary>
- <param name="point">Center of the box.</param>
- <param name="size">Size of the box.</param>
- <param name="angle">Angle of the box.</param>
- <param name="layerMask">Filter to check objects only on specific layers.</param>
- <param name="minDepth">Only include objects with a Z coordinate (depth) greater than this value.</param>
- <param name="maxDepth">Only include objects with a Z coordinate (depth) less than this value.</param>
- <returns>
- <para>The cast results returned.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics2D.OverlapBoxNonAlloc(UnityEngine.Vector2,UnityEngine.Vector2,System.Single,UnityEngine.Collider2D[],System.Int32,System.Single,System.Single)">
- <summary>
- <para>Get a list of all colliders that fall within a box area.</para>
- </summary>
- <param name="point">Center of the box.</param>
- <param name="size">Size of the box.</param>
- <param name="angle">Angle of the box.</param>
- <param name="results">Array to receive results.</param>
- <param name="layerMask">Filter to check objects only on specific layers.</param>
- <param name="minDepth">Only include objects with a Z coordinate (depth) greater than this value.</param>
- <param name="maxDepth">Only include objects with a Z coordinate (depth) less than this value.</param>
- <returns>
- <para>Returns the number of results placed in the results array.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics2D.OverlapCapsule(UnityEngine.Vector2,UnityEngine.Vector2,UnityEngine.CapsuleDirection2D,System.Single,System.Int32,System.Single,System.Single)">
- <summary>
- <para>Checks if a collider falls within a capsule area.</para>
- </summary>
- <param name="point">Center of the capsule.</param>
- <param name="size">Size of the capsule.</param>
- <param name="direction">The direction of the capsule.</param>
- <param name="angle">Angle of the capsule.</param>
- <param name="layerMask">Filter to check objects only on specific layers.</param>
- <param name="minDepth">Only include objects with a Z coordinate (depth) greater than this value.</param>
- <param name="maxDepth">Only include objects with a Z coordinate (depth) less than this value.</param>
- <returns>
- <para>The collider overlapping the capsule.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics2D.OverlapCapsule(UnityEngine.Vector2,UnityEngine.Vector2,UnityEngine.CapsuleDirection2D,System.Single,UnityEngine.ContactFilter2D,UnityEngine.Collider2D[])">
- <summary>
- <para>Checks if a collider falls within a capsule area.</para>
- </summary>
- <param name="point">Center of the capsule.</param>
- <param name="size">Size of the capsule.</param>
- <param name="direction">The direction of the capsule.</param>
- <param name="angle">Angle of the capsule.</param>
- <param name="contactFilter">The contact filter used to filter the results differently, such as by layer mask, Z depth. Note that normal angle is not used for overlap testing.</param>
- <param name="results">The array to receive results. The size of the array determines the maximum number of results that can be returned.</param>
- <returns>
- <para>Returns the number of results placed in the results array.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics2D.OverlapCapsuleAll(UnityEngine.Vector2,UnityEngine.Vector2,UnityEngine.CapsuleDirection2D,System.Single,System.Int32,System.Single,System.Single)">
- <summary>
- <para>Get a list of all colliders that fall within a capsule area.</para>
- </summary>
- <param name="point">Center of the capsule.</param>
- <param name="size">Size of the capsule.</param>
- <param name="direction">The direction of the capsule.</param>
- <param name="angle">Angle of the capsule.</param>
- <param name="layerMask">Filter to check objects only on specific layers.</param>
- <param name="minDepth">Only include objects with a Z coordinate (depth) greater than this value.</param>
- <param name="maxDepth">Only include objects with a Z coordinate (depth) less than this value.</param>
- <returns>
- <para>The cast results returned.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics2D.OverlapCapsuleNonAlloc(UnityEngine.Vector2,UnityEngine.Vector2,UnityEngine.CapsuleDirection2D,System.Single,UnityEngine.Collider2D[],System.Int32,System.Single,System.Single)">
- <summary>
- <para>Get a list of all colliders that fall within a capsule area.</para>
- </summary>
- <param name="point">Center of the capsule.</param>
- <param name="size">Size of the capsule.</param>
- <param name="direction">The direction of the capsule.</param>
- <param name="angle">Angle of the capsule.</param>
- <param name="results">Array to receive results.</param>
- <param name="layerMask">Filter to check objects only on specific layers.</param>
- <param name="minDepth">Only include objects with a Z coordinate (depth) greater than this value.</param>
- <param name="maxDepth">Only include objects with a Z coordinate (depth) less than this value.</param>
- <returns>
- <para>Returns the number of results placed in the results array.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics2D.OverlapCircle(UnityEngine.Vector2,System.Single,System.Int32,System.Single,System.Single)">
- <summary>
- <para>Checks if a collider falls within a circular area.</para>
- </summary>
- <param name="point">Centre of the circle.</param>
- <param name="radius">Radius of the circle.</param>
- <param name="layerMask">Filter to check objects only on specific layers.</param>
- <param name="minDepth">Only include objects with a Z coordinate (depth) greater than or equal to this value.</param>
- <param name="maxDepth">Only include objects with a Z coordinate (depth) less than or equal to this value.</param>
- <returns>
- <para>The collider overlapping the circle.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics2D.OverlapCircle(UnityEngine.Vector2,System.Single,UnityEngine.ContactFilter2D,UnityEngine.Collider2D[])">
- <summary>
- <para>Checks if a collider is within a circular area.</para>
- </summary>
- <param name="point">Centre of the circle.</param>
- <param name="radius">Radius of the circle.</param>
- <param name="contactFilter">The contact filter used to filter the results differently, such as by layer mask, Z depth. Note that normal angle is not used for overlap testing.</param>
- <param name="results">The array to receive results. The size of the array determines the maximum number of results that can be returned.</param>
- <returns>
- <para>Returns the number of results placed in the results array.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics2D.OverlapCircleAll(UnityEngine.Vector2,System.Single,System.Int32,System.Single,System.Single)">
- <summary>
- <para>Get a list of all colliders that fall within a circular area.</para>
- </summary>
- <param name="point">Center of the circle.</param>
- <param name="radius">Radius of the circle.</param>
- <param name="layerMask">Filter to check objects only on specified layers.</param>
- <param name="minDepth">Only include objects with a Z coordinate (depth) greater than or equal to this value.</param>
- <param name="maxDepth">Only include objects with a Z coordinate (depth) less than or equal to this value.</param>
- <returns>
- <para>The cast results.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics2D.OverlapCircleNonAlloc(UnityEngine.Vector2,System.Single,UnityEngine.Collider2D[],System.Int32,System.Single,System.Single)">
- <summary>
- <para>Get a list of all colliders that fall within a circular area.</para>
- </summary>
- <param name="point">Center of the circle.</param>
- <param name="radius">Radius of the circle.</param>
- <param name="results">Array to receive results.</param>
- <param name="layerMask">Filter to check objects only on specific layers.</param>
- <param name="minDepth">Only include objects with a Z coordinate (depth) greater than or equal to this value.</param>
- <param name="maxDepth">Only include objects with a Z coordinate (depth) less than or equal to this value.</param>
- <returns>
- <para>Returns the number of results placed in the results array.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics2D.OverlapCollider(UnityEngine.Collider2D,UnityEngine.ContactFilter2D,UnityEngine.Collider2D[])">
- <summary>
- <para>Get a list of all colliders that overlap collider.</para>
- </summary>
- <param name="collider">The collider that defines the area used to query for other collider overlaps.</param>
- <param name="contactFilter">The contact filter used to filter the results differently, such as by layer mask, Z depth. Note that normal angle is not used for overlap testing.</param>
- <param name="results">The array to receive results. The size of the array determines the maximum number of results that can be returned.</param>
- <returns>
- <para>Returns the number of results placed in the results array.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics2D.OverlapPoint(UnityEngine.Vector2,System.Int32,System.Single,System.Single)">
- <summary>
- <para>Checks if a collider overlaps a point in space.</para>
- </summary>
- <param name="point">A point in world space.</param>
- <param name="layerMask">Filter to check objects only on specific layers.</param>
- <param name="minDepth">Only include objects with a Z coordinate (depth) greater than or equal to this value.</param>
- <param name="maxDepth">Only include objects with a Z coordinate (depth) less than or equal to this value.</param>
- <returns>
- <para>The collider overlapping the point.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics2D.OverlapPoint(UnityEngine.Vector2,UnityEngine.ContactFilter2D,UnityEngine.Collider2D[])">
- <summary>
- <para>Checks if a collider overlaps a point in world space.</para>
- </summary>
- <param name="point">A point in world space.</param>
- <param name="contactFilter">The contact filter used to filter the results differently, such as by layer mask, Z depth. Note that normal angle is not used for overlap testing.</param>
- <param name="results">The array to receive results. The size of the array determines the maximum number of results that can be returned.</param>
- <returns>
- <para>Returns the number of results placed in the results array.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics2D.OverlapPointAll(UnityEngine.Vector2,System.Int32,System.Single,System.Single)">
- <summary>
- <para>Get a list of all colliders that overlap a point in space.</para>
- </summary>
- <param name="minDepth">Only include objects with a Z coordinate (depth) greater than or equal to this value.</param>
- <param name="maxDepth">Only include objects with a Z coordinate (depth) less than or equal to this value.</param>
- <param name="point">A point in space.</param>
- <param name="layerMask">Filter to check objects only on specific layers.</param>
- <returns>
- <para>The cast results returned.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics2D.OverlapPointNonAlloc(UnityEngine.Vector2,UnityEngine.Collider2D[],System.Int32,System.Single,System.Single)">
- <summary>
- <para>Get a list of all colliders that overlap a point in space.</para>
- </summary>
- <param name="minDepth">Only include objects with a Z coordinate (depth) greater than or equal to this value.</param>
- <param name="maxDepth">Only include objects with a Z coordinate (depth) less than or equal to this value.</param>
- <param name="point">A point in space.</param>
- <param name="results">Array to receive results.</param>
- <param name="layerMask">Filter to check objects only on specific layers.</param>
- <returns>
- <para>Returns the number of results placed in the results array.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics2D.Raycast(UnityEngine.Vector2,UnityEngine.Vector2,System.Single,System.Int32,System.Single,System.Single)">
- <summary>
- <para>Casts a ray against colliders in the scene.</para>
- </summary>
- <param name="origin">The point in 2D space where the ray originates.</param>
- <param name="direction">The vector representing the direction of the ray.</param>
- <param name="distance">Maximum distance over which to cast the ray.</param>
- <param name="layerMask">Filter to detect Colliders only on certain layers.</param>
- <param name="minDepth">Only include objects with a Z coordinate (depth) greater than or equal to this value.</param>
- <param name="maxDepth">Only include objects with a Z coordinate (depth) less than or equal to this value.</param>
- <returns>
- <para>The cast results returned.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics2D.Raycast(UnityEngine.Vector2,UnityEngine.Vector2,UnityEngine.ContactFilter2D,UnityEngine.RaycastHit2D[],System.Single)">
- <summary>
- <para>Casts a ray against colliders in the Scene.</para>
- </summary>
- <param name="origin">The point in 2D space where the ray originates.</param>
- <param name="direction">The vector representing the direction of the ray.</param>
- <param name="contactFilter">The contact filter used to filter the results differently, such as by layer mask, Z depth, or normal angle.</param>
- <param name="results">The array to receive results. The size of the array determines the maximum number of results that can be returned.</param>
- <param name="distance">Maximum distance over which to cast the ray.</param>
- <returns>
- <para>Returns the number of results placed in the results array.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics2D.RaycastAll(UnityEngine.Vector2,UnityEngine.Vector2,System.Single,System.Int32,System.Single,System.Single)">
- <summary>
- <para>Casts a ray against colliders in the scene, returning all colliders that contact with it.</para>
- </summary>
- <param name="origin">The point in 2D space where the ray originates.</param>
- <param name="direction">The vector representing the direction of the ray.</param>
- <param name="distance">Maximum distance over which to cast the ray.</param>
- <param name="layerMask">Filter to detect Colliders only on certain layers.</param>
- <param name="minDepth">Only include objects with a Z coordinate (depth) greater than or equal to this value.</param>
- <param name="maxDepth">Only include objects with a Z coordinate (depth) less than or equal to this value.</param>
- <returns>
- <para>The cast results returned.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics2D.RaycastNonAlloc(UnityEngine.Vector2,UnityEngine.Vector2,UnityEngine.RaycastHit2D[],System.Single,System.Int32,System.Single,System.Single)">
- <summary>
- <para>Casts a ray into the scene.</para>
- </summary>
- <param name="minDepth">Only include objects with a Z coordinate (depth) greater than or equal to this value.</param>
- <param name="maxDepth">Only include objects with a Z coordinate (depth) less than or equal to this value.</param>
- <param name="origin">The point in 2D space where the ray originates.</param>
- <param name="direction">The vector representing the direction of the ray.</param>
- <param name="results">Array to receive results.</param>
- <param name="distance">Maximum distance over which to cast the ray.</param>
- <param name="layerMask">Filter to check objects only on specific layers.</param>
- <returns>
- <para>Returns the number of results placed in the results array.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics2D.SetLayerCollisionMask(System.Int32,System.Int32)">
- <summary>
- <para>Set the collision layer mask that indicates which layer(s) the specified layer can collide with.</para>
- </summary>
- <param name="layer">The layer to set the collision layer mask for.</param>
- <param name="layerMask">A mask where each bit indicates a layer and whether it can collide with layer or not.</param>
- </member>
- <member name="M:UnityEngine.Physics2D.Simulate(System.Single)">
- <summary>
- <para>Simulate physics in the scene.</para>
- </summary>
- <param name="step">The time to advance physics by.</param>
- <returns>
- <para>Whether the simulation was run or not. Running the simulation during physics callbacks will always fail.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics2D.SyncTransforms">
- <summary>
- <para>Synchronizes.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.PhysicsJobOptions2D">
- <summary>
- <para>A set of options that control how physics operates when using the job system to multithread the physics simulation.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.PhysicsJobOptions2D.clearBodyForcesPerJob">
- <summary>
- <para>Controls the minimum number of bodies to be cleared in each simulation job.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.PhysicsJobOptions2D.clearFlagsPerJob">
- <summary>
- <para>Controls the minimum number of flags to be cleared in each simulation job.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.PhysicsJobOptions2D.collideContactsPerJob">
- <summary>
- <para>Controls the minimum number of contacts to collide in each simulation job.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.PhysicsJobOptions2D.findNearestContactsPerJob">
- <summary>
- <para>Controls the minimum number of nearest contacts to find in each simulation job.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.PhysicsJobOptions2D.interpolationPosesPerJob">
- <summary>
- <para>Controls the minimum number of Rigidbody2D being interpolated in each simulation job.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.PhysicsJobOptions2D.islandSolverBodiesPerJob">
- <summary>
- <para>Controls the minimum number of bodies to solve in each simulation job when performing island solving.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.PhysicsJobOptions2D.islandSolverBodyCostScale">
- <summary>
- <para>Scales the cost of each body during discrete island solving.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.PhysicsJobOptions2D.islandSolverContactCostScale">
- <summary>
- <para>Scales the cost of each contact during discrete island solving.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.PhysicsJobOptions2D.islandSolverContactsPerJob">
- <summary>
- <para>Controls the minimum number of contacts to solve in each simulation job when performing island solving.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.PhysicsJobOptions2D.islandSolverCostThreshold">
- <summary>
- <para>The minimum threshold cost of all bodies, contacts and joints in an island during discrete island solving.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.PhysicsJobOptions2D.islandSolverJointCostScale">
- <summary>
- <para>Scales the cost of each joint during discrete island solving.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.PhysicsJobOptions2D.newContactsPerJob">
- <summary>
- <para>Controls the minimum number of new contacts to find in each simulation job.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.PhysicsJobOptions2D.syncContinuousFixturesPerJob">
- <summary>
- <para>Controls the minimum number of fixtures to synchronize in the broadphase during continuous island solving in each simulation job.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.PhysicsJobOptions2D.syncDiscreteFixturesPerJob">
- <summary>
- <para>Controls the minimum number of fixtures to synchronize in the broadphase during discrete island solving in each simulation job.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.PhysicsJobOptions2D.updateTriggerContactsPerJob">
- <summary>
- <para>Controls the minimum number of trigger contacts to update in each simulation job.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.PhysicsJobOptions2D.useConsistencySorting">
- <summary>
- <para>Should physics simulation sort multi-threaded results to maintain processing order consistency?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.PhysicsJobOptions2D.useMultithreading">
- <summary>
- <para>Should physics simulation use multithreading?</para>
- </summary>
- </member>
- <member name="T:UnityEngine.PhysicsMaterial2D">
- <summary>
- <para>Asset type that defines the surface properties of a Collider2D.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.PhysicsMaterial2D.bounciness">
- <summary>
- <para>The degree of elasticity during collisions.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.PhysicsMaterial2D.friction">
- <summary>
- <para>Coefficient of friction.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.PhysicsUpdateBehaviour2D">
- <summary>
- <para>A base type for 2D physics components that required a callback during FixedUpdate.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.PlatformEffector2D">
- <summary>
- <para>Applies "platform" behaviour such as one-way collisions etc.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.PlatformEffector2D.rotationalOffset">
- <summary>
- <para>The rotational offset angle from the local 'up'.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.PlatformEffector2D.sideArc">
- <summary>
- <para>The angle of an arc that defines the sides of the platform centered on the local 'left' and 'right' of the effector. Any collision normals within this arc are considered for the 'side' behaviours.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.PlatformEffector2D.surfaceArc">
- <summary>
- <para>The angle of an arc that defines the surface of the platform centered of the local 'up' of the effector.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.PlatformEffector2D.useOneWay">
- <summary>
- <para>Should the one-way collision behaviour be used?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.PlatformEffector2D.useOneWayGrouping">
- <summary>
- <para>Ensures that all contacts controlled by the one-way behaviour act the same.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.PlatformEffector2D.useSideBounce">
- <summary>
- <para>Should bounce be used on the platform sides?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.PlatformEffector2D.useSideFriction">
- <summary>
- <para>Should friction be used on the platform sides?</para>
- </summary>
- </member>
- <member name="T:UnityEngine.PointEffector2D">
- <summary>
- <para>Applies forces to attract/repulse against a point.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.PointEffector2D.angularDrag">
- <summary>
- <para>The angular drag to apply to rigid-bodies.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.PointEffector2D.distanceScale">
- <summary>
- <para>The scale applied to the calculated distance between source and target.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.PointEffector2D.drag">
- <summary>
- <para>The linear drag to apply to rigid-bodies.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.PointEffector2D.forceMagnitude">
- <summary>
- <para>The magnitude of the force to be applied.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.PointEffector2D.forceMode">
- <summary>
- <para>The mode used to apply the effector force.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.PointEffector2D.forceSource">
- <summary>
- <para>The source which is used to calculate the centroid point of the effector. The distance from the target is defined from this point.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.PointEffector2D.forceTarget">
- <summary>
- <para>The target for where the effector applies any force.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.PointEffector2D.forceVariation">
- <summary>
- <para>The variation of the magnitude of the force to be applied.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.PolygonCollider2D">
- <summary>
- <para>Collider for 2D physics representing an arbitrary polygon defined by its vertices.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.PolygonCollider2D.autoTiling">
- <summary>
- <para>Determines whether the PolygonCollider2D's shape is automatically updated based on a SpriteRenderer's tiling properties.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.PolygonCollider2D.pathCount">
- <summary>
- <para>The number of paths in the polygon.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.PolygonCollider2D.points">
- <summary>
- <para>Corner points that define the collider's shape in local space.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.PolygonCollider2D.CreatePrimitive(System.Int32,UnityEngine.Vector2,UnityEngine.Vector2)">
- <summary>
- <para>Creates as regular primitive polygon with the specified number of sides.</para>
- </summary>
- <param name="sides">The number of sides in the polygon. This must be greater than two.</param>
- <param name="scale">The X/Y scale of the polygon. These must be greater than zero.</param>
- <param name="offset">The X/Y offset of the polygon.</param>
- </member>
- <member name="M:UnityEngine.PolygonCollider2D.GetPath(System.Int32)">
- <summary>
- <para>Gets a path from the Collider by its index.</para>
- </summary>
- <param name="index">The index of the path to retrieve.</param>
- <returns>
- <para>An ordered array of the vertices or points in the selected path.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.PolygonCollider2D.GetTotalPointCount">
- <summary>
- <para>Return the total number of points in the polygon in all paths.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.PolygonCollider2D.SetPath(System.Int32,UnityEngine.Vector2[])">
- <summary>
- <para>Define a path by its constituent points.</para>
- </summary>
- <param name="index">Index of the path to set.</param>
- <param name="points">Points that define the path.</param>
- </member>
- <member name="T:UnityEngine.RaycastHit2D">
- <summary>
- <para>Information returned about an object detected by a raycast in 2D physics.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RaycastHit2D.centroid">
- <summary>
- <para>The centroid of the primitive used to perform the cast.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RaycastHit2D.collider">
- <summary>
- <para>The collider hit by the ray.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RaycastHit2D.distance">
- <summary>
- <para>The distance from the ray origin to the impact point.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RaycastHit2D.fraction">
- <summary>
- <para>Fraction of the distance along the ray that the hit occurred.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RaycastHit2D.normal">
- <summary>
- <para>The normal vector of the surface hit by the ray.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RaycastHit2D.point">
- <summary>
- <para>The point in world space where the ray hit the collider's surface.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RaycastHit2D.rigidbody">
- <summary>
- <para>The Rigidbody2D attached to the object that was hit.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RaycastHit2D.transform">
- <summary>
- <para>The Transform of the object that was hit.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.RelativeJoint2D">
- <summary>
- <para>Keeps two Rigidbody2D at their relative orientations.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RelativeJoint2D.angularOffset">
- <summary>
- <para>The current angular offset between the Rigidbody2D that the joint connects.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RelativeJoint2D.autoConfigureOffset">
- <summary>
- <para>Should both the linearOffset and angularOffset be calculated automatically?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RelativeJoint2D.correctionScale">
- <summary>
- <para>Scales both the linear and angular forces used to correct the required relative orientation.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RelativeJoint2D.linearOffset">
- <summary>
- <para>The current linear offset between the Rigidbody2D that the joint connects.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RelativeJoint2D.maxForce">
- <summary>
- <para>The maximum force that can be generated when trying to maintain the relative joint constraint.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RelativeJoint2D.maxTorque">
- <summary>
- <para>The maximum torque that can be generated when trying to maintain the relative joint constraint.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RelativeJoint2D.target">
- <summary>
- <para>The world-space position that is currently trying to be maintained.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Rigidbody2D">
- <summary>
- <para>Rigidbody physics component for 2D sprites.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rigidbody2D.angularDrag">
- <summary>
- <para>Coefficient of angular drag.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rigidbody2D.angularVelocity">
- <summary>
- <para>Angular velocity in degrees per second.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rigidbody2D.attachedColliderCount">
- <summary>
- <para>Returns the number of Collider2D attached to this Rigidbody2D.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rigidbody2D.bodyType">
- <summary>
- <para>The physical behaviour type of the Rigidbody2D.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rigidbody2D.centerOfMass">
- <summary>
- <para>The center of mass of the rigidBody in local space.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rigidbody2D.collisionDetectionMode">
- <summary>
- <para>The method used by the physics engine to check if two objects have collided.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rigidbody2D.constraints">
- <summary>
- <para>Controls which degrees of freedom are allowed for the simulation of this Rigidbody2D.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rigidbody2D.drag">
- <summary>
- <para>Coefficient of drag.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rigidbody2D.fixedAngle">
- <summary>
- <para>Should the rigidbody be prevented from rotating?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rigidbody2D.freezeRotation">
- <summary>
- <para>Controls whether physics will change the rotation of the object.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rigidbody2D.gravityScale">
- <summary>
- <para>The degree to which this object is affected by gravity.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rigidbody2D.inertia">
- <summary>
- <para>The rigidBody rotational inertia.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rigidbody2D.interpolation">
- <summary>
- <para>Physics interpolation used between updates.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rigidbody2D.isKinematic">
- <summary>
- <para>Should this rigidbody be taken out of physics control?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rigidbody2D.mass">
- <summary>
- <para>Mass of the Rigidbody.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rigidbody2D.position">
- <summary>
- <para>The position of the rigidbody.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rigidbody2D.rotation">
- <summary>
- <para>The rotation of the rigidbody.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rigidbody2D.sharedMaterial">
- <summary>
- <para>The PhysicsMaterial2D that is applied to all Collider2D attached to this Rigidbody2D.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rigidbody2D.simulated">
- <summary>
- <para>Indicates whether the rigid body should be simulated or not by the physics system.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rigidbody2D.sleepMode">
- <summary>
- <para>The sleep state that the rigidbody will initially be in.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rigidbody2D.useAutoMass">
- <summary>
- <para>Should the total rigid-body mass be automatically calculated from the Collider2D.density of attached colliders?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rigidbody2D.useFullKinematicContacts">
- <summary>
- <para>Should kinematickinematic and kinematicstatic collisions be allowed?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rigidbody2D.velocity">
- <summary>
- <para>Linear velocity of the rigidbody.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rigidbody2D.worldCenterOfMass">
- <summary>
- <para>Gets the center of mass of the rigidBody in global space.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Rigidbody2D.AddForce(UnityEngine.Vector2,UnityEngine.ForceMode2D)">
- <summary>
- <para>Apply a force to the rigidbody.</para>
- </summary>
- <param name="force">Components of the force in the X and Y axes.</param>
- <param name="mode">The method used to apply the specified force.</param>
- </member>
- <member name="M:UnityEngine.Rigidbody2D.AddForceAtPosition(UnityEngine.Vector2,UnityEngine.Vector2,UnityEngine.ForceMode2D)">
- <summary>
- <para>Apply a force at a given position in space.</para>
- </summary>
- <param name="force">Components of the force in the X and Y axes.</param>
- <param name="position">Position in world space to apply the force.</param>
- <param name="mode">The method used to apply the specified force.</param>
- </member>
- <member name="M:UnityEngine.Rigidbody2D.AddRelativeForce(UnityEngine.Vector2,UnityEngine.ForceMode2D)">
- <summary>
- <para>Adds a force to the rigidbody2D relative to its coordinate system.</para>
- </summary>
- <param name="relativeForce">Components of the force in the X and Y axes.</param>
- <param name="mode">The method used to apply the specified force.</param>
- </member>
- <member name="M:UnityEngine.Rigidbody2D.AddTorque(System.Single,UnityEngine.ForceMode2D)">
- <summary>
- <para>Apply a torque at the rigidbody's centre of mass.</para>
- </summary>
- <param name="torque">Torque to apply.</param>
- <param name="mode">The force mode to use.</param>
- </member>
- <member name="M:UnityEngine.Rigidbody2D.Cast(UnityEngine.Vector2,UnityEngine.RaycastHit2D[],System.Single)">
- <summary>
- <para>All the Collider2D shapes attached to the Rigidbody2D are cast into the scene starting at each collider position ignoring the colliders attached to the same Rigidbody2D.</para>
- </summary>
- <param name="direction">Vector representing the direction to cast each Collider2D shape.</param>
- <param name="results">Array to receive results.</param>
- <param name="distance">Maximum distance over which to cast the shape(s).</param>
- <returns>
- <para>The number of results returned.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Rigidbody2D.Cast(UnityEngine.Vector2,UnityEngine.ContactFilter2D,UnityEngine.RaycastHit2D[],System.Single)">
- <summary>
- <para>All the Collider2D shapes attached to the Rigidbody2D are cast into the scene starting at each collider position ignoring the colliders attached to the same Rigidbody2D.</para>
- </summary>
- <param name="direction">Vector representing the direction to cast each Collider2D shape.</param>
- <param name="contactFilter">Filter results defined by the contact filter.</param>
- <param name="results">Array to receive results.</param>
- <param name="distance">Maximum distance over which to cast the shape(s).</param>
- <returns>
- <para>The number of results returned.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Rigidbody2D.Distance(UnityEngine.Collider2D)">
- <summary>
- <para>Calculates the minimum distance of this collider against all Collider2D attached to this Rigidbody2D.</para>
- </summary>
- <param name="collider">A collider used to calculate the minimum distance against all colliders attached to this Rigidbody2D.</param>
- <returns>
- <para>The minimum distance of collider against all colliders attached to this Rigidbody2D.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Rigidbody2D.GetAttachedColliders(UnityEngine.Collider2D[])">
- <summary>
- <para>Returns all Collider2D that are attached to this Rigidbody2D.</para>
- </summary>
- <param name="results">An array of Collider2D used to receive the results.</param>
- <returns>
- <para>Returns the number of Collider2D placed in the results array.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Rigidbody2D.GetContacts(UnityEngine.ContactPoint2D[])">
- <summary>
- <para>Retrieves all contact points for all of the collider(s) attached to this rigidbody.</para>
- </summary>
- <param name="contacts">An array of ContactPoint2D used to receive the results.</param>
- <returns>
- <para>Returns the number of contacts placed in the contacts array.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Rigidbody2D.GetContacts(UnityEngine.Collider2D[])">
- <summary>
- <para>Retrieves all colliders in contact with any of the collider(s) attached to this rigidbody.</para>
- </summary>
- <param name="colliders">An array of Collider2D used to receive the results.</param>
- <returns>
- <para>Returns the number of colliders placed in the colliders array.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Rigidbody2D.GetContacts(UnityEngine.ContactFilter2D,UnityEngine.ContactPoint2D[])">
- <summary>
- <para>Retrieves all contact points for all of the collider(s) attached to this rigidbody, with the results filtered by the ContactFilter2D.</para>
- </summary>
- <param name="contactFilter">The contact filter used to filter the results differently, such as by layer mask, Z depth, or normal angle.</param>
- <param name="contacts">An array of ContactPoint2D used to receive the results.</param>
- <returns>
- <para>Returns the number of contacts placed in the contacts array.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Rigidbody2D.GetContacts(UnityEngine.ContactFilter2D,UnityEngine.Collider2D[])">
- <summary>
- <para>Retrieves all colliders in contact with any of the collider(s) attached to this rigidbody, with the results filtered by the ContactFilter2D.</para>
- </summary>
- <param name="contactFilter">The contact filter used to filter the results differently, such as by layer mask, Z depth, or normal angle.</param>
- <param name="colliders">An array of Collider2D used to receive the results.</param>
- <returns>
- <para>Returns the number of colliders placed in the colliders array.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Rigidbody2D.GetPoint(UnityEngine.Vector2)">
- <summary>
- <para>Get a local space point given the point point in rigidBody global space.</para>
- </summary>
- <param name="point">The global space point to transform into local space.</param>
- </member>
- <member name="M:UnityEngine.Rigidbody2D.GetPointVelocity(UnityEngine.Vector2)">
- <summary>
- <para>The velocity of the rigidbody at the point Point in global space.</para>
- </summary>
- <param name="point">The global space point to calculate velocity for.</param>
- </member>
- <member name="M:UnityEngine.Rigidbody2D.GetRelativePoint(UnityEngine.Vector2)">
- <summary>
- <para>Get a global space point given the point relativePoint in rigidBody local space.</para>
- </summary>
- <param name="relativePoint">The local space point to transform into global space.</param>
- </member>
- <member name="M:UnityEngine.Rigidbody2D.GetRelativePointVelocity(UnityEngine.Vector2)">
- <summary>
- <para>The velocity of the rigidbody at the point Point in local space.</para>
- </summary>
- <param name="relativePoint">The local space point to calculate velocity for.</param>
- </member>
- <member name="M:UnityEngine.Rigidbody2D.GetRelativeVector(UnityEngine.Vector2)">
- <summary>
- <para>Get a global space vector given the vector relativeVector in rigidBody local space.</para>
- </summary>
- <param name="relativeVector">The local space vector to transform into a global space vector.</param>
- </member>
- <member name="M:UnityEngine.Rigidbody2D.GetVector(UnityEngine.Vector2)">
- <summary>
- <para>Get a local space vector given the vector vector in rigidBody global space.</para>
- </summary>
- <param name="vector">The global space vector to transform into a local space vector.</param>
- </member>
- <member name="M:UnityEngine.Rigidbody2D.IsAwake">
- <summary>
- <para>Is the rigidbody "awake"?</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Rigidbody2D.IsSleeping">
- <summary>
- <para>Is the rigidbody "sleeping"?</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Rigidbody2D.IsTouching(UnityEngine.Collider2D)">
- <summary>
- <para>Checks whether the collider is touching any of the collider(s) attached to this rigidbody or not.</para>
- </summary>
- <param name="collider">The collider to check if it is touching any of the collider(s) attached to this rigidbody.</param>
- <returns>
- <para>Whether the collider is touching any of the collider(s) attached to this rigidbody or not.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Rigidbody2D.IsTouching(UnityEngine.Collider2D,UnityEngine.ContactFilter2D)">
- <summary>
- <para>Checks whether the collider is touching any of the collider(s) attached to this rigidbody or not with the results filtered by the ContactFilter2D.</para>
- </summary>
- <param name="collider">The collider to check if it is touching any of the collider(s) attached to this rigidbody.</param>
- <param name="contactFilter">The contact filter used to filter the results differently, such as by layer mask, Z depth, or normal angle.</param>
- <returns>
- <para>Whether the collider is touching any of the collider(s) attached to this rigidbody or not.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Rigidbody2D.IsTouching(UnityEngine.ContactFilter2D)">
- <summary>
- <para>Checks whether any collider is touching any of the collider(s) attached to this rigidbody or not with the results filtered by the ContactFilter2D.</para>
- </summary>
- <param name="contactFilter">The contact filter used to filter the results differently, such as by layer mask, Z depth, or normal angle.</param>
- <returns>
- <para>Whether any collider is touching any of the collider(s) attached to this rigidbody or not.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Rigidbody2D.IsTouchingLayers(System.Int32)">
- <summary>
- <para>Checks whether any of the collider(s) attached to this rigidbody are touching any colliders on the specified layerMask or not.</para>
- </summary>
- <param name="layerMask">Any colliders on any of these layers count as touching.</param>
- <returns>
- <para>Whether any of the collider(s) attached to this rigidbody are touching any colliders on the specified layerMask or not.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Rigidbody2D.MovePosition(UnityEngine.Vector2)">
- <summary>
- <para>Moves the rigidbody to position.</para>
- </summary>
- <param name="position">The new position for the Rigidbody object.</param>
- </member>
- <member name="M:UnityEngine.Rigidbody2D.MoveRotation(System.Single)">
- <summary>
- <para>Rotates the rigidbody to angle (given in degrees).</para>
- </summary>
- <param name="angle">The new rotation angle for the Rigidbody object.</param>
- </member>
- <member name="M:UnityEngine.Rigidbody2D.OverlapCollider(UnityEngine.ContactFilter2D,UnityEngine.Collider2D[])">
- <summary>
- <para>Get a list of all colliders that overlap all colliders attached to this Rigidbody2D.</para>
- </summary>
- <param name="contactFilter">The contact filter used to filter the results differently, such as by layer mask, Z depth. Note that normal angle is not used for overlap testing.</param>
- <param name="results">The array to receive results. The size of the array determines the maximum number of results that can be returned.</param>
- <returns>
- <para>Returns the number of results placed in the results array.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Rigidbody2D.OverlapPoint(UnityEngine.Vector2)">
- <summary>
- <para>Check if any of the Rigidbody2D colliders overlap a point in space.</para>
- </summary>
- <param name="point">A point in world space.</param>
- <returns>
- <para>Whether the point overlapped any of the Rigidbody2D colliders.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Rigidbody2D.Sleep">
- <summary>
- <para>Make the rigidbody "sleep".</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Rigidbody2D.WakeUp">
- <summary>
- <para>Disables the "sleeping" state of a rigidbody.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.RigidbodyConstraints2D">
- <summary>
- <para>Use these flags to constrain motion of the Rigidbody2D.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RigidbodyConstraints2D.FreezeAll">
- <summary>
- <para>Freeze rotation and motion along all axes.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RigidbodyConstraints2D.FreezePosition">
- <summary>
- <para>Freeze motion along the X-axis and Y-axis.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RigidbodyConstraints2D.FreezePositionX">
- <summary>
- <para>Freeze motion along the X-axis.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RigidbodyConstraints2D.FreezePositionY">
- <summary>
- <para>Freeze motion along the Y-axis.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RigidbodyConstraints2D.FreezeRotation">
- <summary>
- <para>Freeze rotation along the Z-axis.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RigidbodyConstraints2D.None">
- <summary>
- <para>No constraints.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.RigidbodyInterpolation2D">
- <summary>
- <para>Interpolation mode for Rigidbody2D objects.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RigidbodyInterpolation2D.Extrapolate">
- <summary>
- <para>Smooth an object's movement based on an estimate of its position in the next frame.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RigidbodyInterpolation2D.Interpolate">
- <summary>
- <para>Smooth movement based on the object's positions in previous frames.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RigidbodyInterpolation2D.None">
- <summary>
- <para>Do not apply any smoothing to the object's movement.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.RigidbodySleepMode2D">
- <summary>
- <para>Settings for a Rigidbody2D's initial sleep state.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RigidbodySleepMode2D.NeverSleep">
- <summary>
- <para>Rigidbody2D never automatically sleeps.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RigidbodySleepMode2D.StartAsleep">
- <summary>
- <para>Rigidbody2D is initially asleep.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RigidbodySleepMode2D.StartAwake">
- <summary>
- <para>Rigidbody2D is initially awake.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.RigidbodyType2D">
- <summary>
- <para>The physical behaviour type of the Rigidbody2D.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RigidbodyType2D.Dynamic">
- <summary>
- <para>Sets the Rigidbody2D to have dynamic behaviour.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RigidbodyType2D.Kinematic">
- <summary>
- <para>Sets the Rigidbody2D to have kinematic behaviour.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RigidbodyType2D.Static">
- <summary>
- <para>Sets the Rigidbody2D to have static behaviour.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.SliderJoint2D">
- <summary>
- <para>Joint that restricts the motion of a Rigidbody2D object to a single line.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SliderJoint2D.angle">
- <summary>
- <para>The angle of the line in space (in degrees).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SliderJoint2D.autoConfigureAngle">
- <summary>
- <para>Should the angle be calculated automatically?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SliderJoint2D.jointSpeed">
- <summary>
- <para>The current joint speed.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SliderJoint2D.jointTranslation">
- <summary>
- <para>The current joint translation.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SliderJoint2D.limits">
- <summary>
- <para>Restrictions on how far the joint can slide in each direction along the line.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SliderJoint2D.limitState">
- <summary>
- <para>Gets the state of the joint limit.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SliderJoint2D.motor">
- <summary>
- <para>Parameters for a motor force that is applied automatically to the Rigibody2D along the line.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SliderJoint2D.referenceAngle">
- <summary>
- <para>The angle (in degrees) referenced between the two bodies used as the constraint for the joint.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SliderJoint2D.useLimits">
- <summary>
- <para>Should motion limits be used?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SliderJoint2D.useMotor">
- <summary>
- <para>Should a motor force be applied automatically to the Rigidbody2D?</para>
- </summary>
- </member>
- <member name="M:UnityEngine.SliderJoint2D.GetMotorForce(System.Single)">
- <summary>
- <para>Gets the motor force of the joint given the specified timestep.</para>
- </summary>
- <param name="timeStep">The time to calculate the motor force for.</param>
- </member>
- <member name="T:UnityEngine.SpringJoint2D">
- <summary>
- <para>Joint that attempts to keep two Rigidbody2D objects a set distance apart by applying a force between them.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SpringJoint2D.autoConfigureDistance">
- <summary>
- <para>Should the distance be calculated automatically?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SpringJoint2D.dampingRatio">
- <summary>
- <para>The amount by which the spring force is reduced in proportion to the movement speed.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SpringJoint2D.distance">
- <summary>
- <para>The distance the spring will try to keep between the two objects.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SpringJoint2D.frequency">
- <summary>
- <para>The frequency at which the spring oscillates around the distance distance between the objects.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.SurfaceEffector2D">
- <summary>
- <para>Applies tangent forces along the surfaces of colliders.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SurfaceEffector2D.forceScale">
- <summary>
- <para>The scale of the impulse force applied while attempting to reach the surface speed.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SurfaceEffector2D.speed">
- <summary>
- <para>The speed to be maintained along the surface.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SurfaceEffector2D.speedVariation">
- <summary>
- <para>The speed variation (from zero to the variation) added to base speed to be applied.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SurfaceEffector2D.useBounce">
- <summary>
- <para>Should bounce be used for any contact with the surface?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SurfaceEffector2D.useContactForce">
- <summary>
- <para>Should the impulse force but applied to the contact point?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SurfaceEffector2D.useFriction">
- <summary>
- <para>Should friction be used for any contact with the surface?</para>
- </summary>
- </member>
- <member name="T:UnityEngine.TargetJoint2D">
- <summary>
- <para>The joint attempts to move a Rigidbody2D to a specific target position.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TargetJoint2D.anchor">
- <summary>
- <para>The local-space anchor on the rigid-body the joint is attached to.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TargetJoint2D.autoConfigureTarget">
- <summary>
- <para>Should the target be calculated automatically?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TargetJoint2D.dampingRatio">
- <summary>
- <para>The amount by which the target spring force is reduced in proportion to the movement speed.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TargetJoint2D.frequency">
- <summary>
- <para>The frequency at which the target spring oscillates around the target position.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TargetJoint2D.maxForce">
- <summary>
- <para>The maximum force that can be generated when trying to maintain the target joint constraint.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TargetJoint2D.target">
- <summary>
- <para>The world-space position that the joint will attempt to move the body to.</para>
- </summary>
- </member>
- <member name="A:UnityEngine.Physics2DModule">
- <summary>
- <para>The Physics2d module implements 2D physics in Unity.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.WheelJoint2D">
- <summary>
- <para>The wheel joint allows the simulation of wheels by providing a constraining suspension motion with an optional motor.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.WheelJoint2D.jointAngle">
- <summary>
- <para>The current joint angle (in degrees) defined as the relative angle between the two Rigidbody2D that the joint connects to.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.WheelJoint2D.jointLinearSpeed">
- <summary>
- <para>The current joint linear speed in meters/sec.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.WheelJoint2D.jointSpeed">
- <summary>
- <para>The current joint rotational speed in degrees/sec.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.WheelJoint2D.jointTranslation">
- <summary>
- <para>The current joint translation.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.WheelJoint2D.motor">
- <summary>
- <para>Parameters for a motor force that is applied automatically to the Rigibody2D along the line.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.WheelJoint2D.suspension">
- <summary>
- <para>Set the joint suspension configuration.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.WheelJoint2D.useMotor">
- <summary>
- <para>Should a motor force be applied automatically to the Rigidbody2D?</para>
- </summary>
- </member>
- <member name="M:UnityEngine.WheelJoint2D.GetMotorTorque(System.Single)">
- <summary>
- <para>Gets the motor torque of the joint given the specified timestep.</para>
- </summary>
- <param name="timeStep">The time to calculate the motor torque for.</param>
- </member>
- </members>
-</doc>
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.PhysicsModule.dll b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.PhysicsModule.dll
deleted file mode 100644
index 4ac6ec1..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.PhysicsModule.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.PhysicsModule.xml b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.PhysicsModule.xml
deleted file mode 100644
index 0952227..0000000
--- a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.PhysicsModule.xml
+++ /dev/null
@@ -1,2428 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
-<doc>
- <members>
- <assembly>
- <name>UnityEngine.PhysicsModule</name>
- </assembly>
- <member name="T:UnityEngine.BoxCollider">
- <summary>
- <para>A box-shaped primitive collider.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.BoxCollider.center">
- <summary>
- <para>The center of the box, measured in the object's local space.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.BoxCollider.size">
- <summary>
- <para>The size of the box, measured in the object's local space.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.CapsuleCollider">
- <summary>
- <para>A capsule-shaped primitive collider.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CapsuleCollider.center">
- <summary>
- <para>The center of the capsule, measured in the object's local space.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CapsuleCollider.direction">
- <summary>
- <para>The direction of the capsule.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CapsuleCollider.height">
- <summary>
- <para>The height of the capsule meased in the object's local space.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CapsuleCollider.radius">
- <summary>
- <para>The radius of the sphere, measured in the object's local space.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.CharacterController">
- <summary>
- <para>A CharacterController allows you to easily do movement constrained by collisions without having to deal with a rigidbody.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CharacterController.center">
- <summary>
- <para>The center of the character's capsule relative to the transform's position.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CharacterController.collisionFlags">
- <summary>
- <para>What part of the capsule collided with the environment during the last CharacterController.Move call.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CharacterController.detectCollisions">
- <summary>
- <para>Determines whether other rigidbodies or character controllers collide with this character controller (by default this is always enabled).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CharacterController.enableOverlapRecovery">
- <summary>
- <para>Enables or disables overlap recovery.
- Enables or disables overlap recovery. Used to depenetrate character controllers from static objects when an overlap is detected.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CharacterController.height">
- <summary>
- <para>The height of the character's capsule.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CharacterController.isGrounded">
- <summary>
- <para>Was the CharacterController touching the ground during the last move?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CharacterController.minMoveDistance">
- <summary>
- <para>Gets or sets the minimum move distance of the character controller.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CharacterController.radius">
- <summary>
- <para>The radius of the character's capsule.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CharacterController.skinWidth">
- <summary>
- <para>The character's collision skin width.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CharacterController.slopeLimit">
- <summary>
- <para>The character controllers slope limit in degrees.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CharacterController.stepOffset">
- <summary>
- <para>The character controllers step offset in meters.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CharacterController.velocity">
- <summary>
- <para>The current relative velocity of the Character (see notes).</para>
- </summary>
- </member>
- <member name="M:UnityEngine.CharacterController.Move(UnityEngine.Vector3)">
- <summary>
- <para>A more complex move function taking absolute movement deltas.</para>
- </summary>
- <param name="motion"></param>
- </member>
- <member name="M:UnityEngine.CharacterController.SimpleMove(UnityEngine.Vector3)">
- <summary>
- <para>Moves the character with speed.</para>
- </summary>
- <param name="speed"></param>
- </member>
- <member name="T:UnityEngine.CharacterJoint">
- <summary>
- <para>Character Joints are mainly used for Ragdoll effects.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CharacterJoint.enableProjection">
- <summary>
- <para>Brings violated constraints back into alignment even when the solver fails.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CharacterJoint.highTwistLimit">
- <summary>
- <para>The upper limit around the primary axis of the character joint.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CharacterJoint.lowTwistLimit">
- <summary>
- <para>The lower limit around the primary axis of the character joint.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CharacterJoint.projectionAngle">
- <summary>
- <para>Set the angular tolerance threshold (in degrees) for projection.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CharacterJoint.projectionDistance">
- <summary>
- <para>Set the linear tolerance threshold for projection.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CharacterJoint.swing1Limit">
- <summary>
- <para>The angular limit of rotation (in degrees) around the primary axis of the character joint.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CharacterJoint.swing2Limit">
- <summary>
- <para>The angular limit of rotation (in degrees) around the primary axis of the character joint.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CharacterJoint.swingAxis">
- <summary>
- <para>The secondary axis around which the joint can rotate.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CharacterJoint.swingLimitSpring">
- <summary>
- <para>The configuration of the spring attached to the swing limits of the joint.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CharacterJoint.twistLimitSpring">
- <summary>
- <para>The configuration of the spring attached to the twist limits of the joint.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Collider">
- <summary>
- <para>A base class of all colliders.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Collider.attachedRigidbody">
- <summary>
- <para>The rigidbody the collider is attached to.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Collider.bounds">
- <summary>
- <para>The world space bounding volume of the collider.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Collider.contactOffset">
- <summary>
- <para>Contact offset value of this collider.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Collider.enabled">
- <summary>
- <para>Enabled Colliders will collide with other Colliders, disabled Colliders won't.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Collider.isTrigger">
- <summary>
- <para>Is the collider a trigger?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Collider.material">
- <summary>
- <para>The material used by the collider.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Collider.sharedMaterial">
- <summary>
- <para>The shared physic material of this collider.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Collider.ClosestPoint(UnityEngine.Vector3)">
- <summary>
- <para>Returns a point on the collider that is closest to a given location.</para>
- </summary>
- <param name="position">Location you want to find the closest point to.</param>
- <returns>
- <para>The point on the collider that is closest to the specified location.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Collider.ClosestPointOnBounds(UnityEngine.Vector3)">
- <summary>
- <para>The closest point to the bounding box of the attached collider.</para>
- </summary>
- <param name="position"></param>
- </member>
- <member name="M:UnityEngine.Collider.Raycast(UnityEngine.Ray,UnityEngine.RaycastHit&amp;,System.Single)">
- <summary>
- <para>Casts a Ray that ignores all Colliders except this one.</para>
- </summary>
- <param name="ray">The starting point and direction of the ray.</param>
- <param name="hitInfo">If true is returned, hitInfo will contain more information about where the collider was hit (See Also: RaycastHit).</param>
- <param name="maxDistance">The max length of the ray.</param>
- <returns>
- <para>True when the ray intersects any collider, otherwise false.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.Collision">
- <summary>
- <para>Describes a collision.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Collision.collider">
- <summary>
- <para>The Collider we hit (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Collision.contacts">
- <summary>
- <para>The contact points generated by the physics engine.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Collision.gameObject">
- <summary>
- <para>The GameObject whose collider you are colliding with. (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Collision.impulse">
- <summary>
- <para>The total impulse applied to this contact pair to resolve the collision.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Collision.relativeVelocity">
- <summary>
- <para>The relative linear velocity of the two colliding objects (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Collision.rigidbody">
- <summary>
- <para>The Rigidbody we hit (Read Only). This is null if the object we hit is a collider with no rigidbody attached.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Collision.transform">
- <summary>
- <para>The Transform of the object we hit (Read Only).</para>
- </summary>
- </member>
- <member name="T:UnityEngine.CollisionDetectionMode">
- <summary>
- <para>The collision detection mode constants used for Rigidbody.collisionDetectionMode.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.CollisionDetectionMode.Continuous">
- <summary>
- <para>Continuous collision detection is on for colliding with static mesh geometry.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.CollisionDetectionMode.ContinuousDynamic">
- <summary>
- <para>Continuous collision detection is on for colliding with static and dynamic geometry.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.CollisionDetectionMode.Discrete">
- <summary>
- <para>Continuous collision detection is off for this Rigidbody.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.CollisionFlags">
- <summary>
- <para>CollisionFlags is a bitmask returned by CharacterController.Move.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.CollisionFlags.Above">
- <summary>
- <para>CollisionFlags is a bitmask returned by CharacterController.Move.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.CollisionFlags.Below">
- <summary>
- <para>CollisionFlags is a bitmask returned by CharacterController.Move.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.CollisionFlags.None">
- <summary>
- <para>CollisionFlags is a bitmask returned by CharacterController.Move.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.CollisionFlags.Sides">
- <summary>
- <para>CollisionFlags is a bitmask returned by CharacterController.Move.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ConfigurableJoint">
- <summary>
- <para>The configurable joint is an extremely flexible joint giving you complete control over rotation and linear motion.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ConfigurableJoint.angularXDrive">
- <summary>
- <para>Definition of how the joint's rotation will behave around its local X axis. Only used if Rotation Drive Mode is Swing &amp; Twist.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ConfigurableJoint.angularXLimitSpring">
- <summary>
- <para>The configuration of the spring attached to the angular X limit of the joint.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ConfigurableJoint.angularXMotion">
- <summary>
- <para>Allow rotation around the X axis to be Free, completely Locked, or Limited according to Low and High Angular XLimit.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ConfigurableJoint.angularYLimit">
- <summary>
- <para>Boundary defining rotation restriction, based on delta from original rotation.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ConfigurableJoint.angularYMotion">
- <summary>
- <para>Allow rotation around the Y axis to be Free, completely Locked, or Limited according to Angular YLimit.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ConfigurableJoint.angularYZDrive">
- <summary>
- <para>Definition of how the joint's rotation will behave around its local Y and Z axes. Only used if Rotation Drive Mode is Swing &amp; Twist.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ConfigurableJoint.angularYZLimitSpring">
- <summary>
- <para>The configuration of the spring attached to the angular Y and angular Z limits of the joint.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ConfigurableJoint.angularZLimit">
- <summary>
- <para>Boundary defining rotation restriction, based on delta from original rotation.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ConfigurableJoint.angularZMotion">
- <summary>
- <para>Allow rotation around the Z axis to be Free, completely Locked, or Limited according to Angular ZLimit.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ConfigurableJoint.configuredInWorldSpace">
- <summary>
- <para>If enabled, all Target values will be calculated in world space instead of the object's local space.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ConfigurableJoint.highAngularXLimit">
- <summary>
- <para>Boundary defining upper rotation restriction, based on delta from original rotation.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ConfigurableJoint.linearLimit">
- <summary>
- <para>Boundary defining movement restriction, based on distance from the joint's origin.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ConfigurableJoint.linearLimitSpring">
- <summary>
- <para>The configuration of the spring attached to the linear limit of the joint.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ConfigurableJoint.lowAngularXLimit">
- <summary>
- <para>Boundary defining lower rotation restriction, based on delta from original rotation.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ConfigurableJoint.projectionAngle">
- <summary>
- <para>Set the angular tolerance threshold (in degrees) for projection.
-
-If the joint deviates by more than this angle around its locked angular degrees of freedom,
-the solver will move the bodies to close the angle.
-
-Setting a very small tolerance may result in simulation jitter or other artifacts.
-
-Sometimes it is not possible to project (for example when the joints form a cycle).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ConfigurableJoint.projectionDistance">
- <summary>
- <para>Set the linear tolerance threshold for projection.
-
-If the joint separates by more than this distance along its locked degrees of freedom, the solver
-will move the bodies to close the distance.
-
-Setting a very small tolerance may result in simulation jitter or other artifacts.
-
-Sometimes it is not possible to project (for example when the joints form a cycle).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ConfigurableJoint.projectionMode">
- <summary>
- <para>Brings violated constraints back into alignment even when the solver fails. Projection is not a physical process and does not preserve momentum or respect collision geometry. It is best avoided if practical, but can be useful in improving simulation quality where joint separation results in unacceptable artifacts.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ConfigurableJoint.rotationDriveMode">
- <summary>
- <para>Control the object's rotation with either X &amp; YZ or Slerp Drive by itself.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ConfigurableJoint.secondaryAxis">
- <summary>
- <para>The joint's secondary axis.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ConfigurableJoint.slerpDrive">
- <summary>
- <para>Definition of how the joint's rotation will behave around all local axes. Only used if Rotation Drive Mode is Slerp Only.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ConfigurableJoint.swapBodies">
- <summary>
- <para>If enabled, the two connected rigidbodies will be swapped, as if the joint was attached to the other body.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ConfigurableJoint.targetAngularVelocity">
- <summary>
- <para>This is a Vector3. It defines the desired angular velocity that the joint should rotate into.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ConfigurableJoint.targetPosition">
- <summary>
- <para>The desired position that the joint should move into.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ConfigurableJoint.targetRotation">
- <summary>
- <para>This is a Quaternion. It defines the desired rotation that the joint should rotate into.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ConfigurableJoint.targetVelocity">
- <summary>
- <para>The desired velocity that the joint should move along.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ConfigurableJoint.xDrive">
- <summary>
- <para>Definition of how the joint's movement will behave along its local X axis.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ConfigurableJoint.xMotion">
- <summary>
- <para>Allow movement along the X axis to be Free, completely Locked, or Limited according to Linear Limit.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ConfigurableJoint.yDrive">
- <summary>
- <para>Definition of how the joint's movement will behave along its local Y axis.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ConfigurableJoint.yMotion">
- <summary>
- <para>Allow movement along the Y axis to be Free, completely Locked, or Limited according to Linear Limit.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ConfigurableJoint.zDrive">
- <summary>
- <para>Definition of how the joint's movement will behave along its local Z axis.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ConfigurableJoint.zMotion">
- <summary>
- <para>Allow movement along the Z axis to be Free, completely Locked, or Limited according to Linear Limit.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ConfigurableJointMotion">
- <summary>
- <para>Constrains movement for a ConfigurableJoint along the 6 axes.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ConfigurableJointMotion.Free">
- <summary>
- <para>Motion along the axis will be completely free and completely unconstrained.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ConfigurableJointMotion.Limited">
- <summary>
- <para>Motion along the axis will be limited by the respective limit.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ConfigurableJointMotion.Locked">
- <summary>
- <para>Motion along the axis will be locked.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ConstantForce">
- <summary>
- <para>A force applied constantly.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ConstantForce.force">
- <summary>
- <para>The force applied to the rigidbody every frame.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ConstantForce.relativeForce">
- <summary>
- <para>The force - relative to the rigid bodies coordinate system - applied every frame.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ConstantForce.relativeTorque">
- <summary>
- <para>The torque - relative to the rigid bodies coordinate system - applied every frame.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ConstantForce.torque">
- <summary>
- <para>The torque applied to the rigidbody every frame.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ContactPoint">
- <summary>
- <para>Describes a contact point where the collision occurs.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ContactPoint.normal">
- <summary>
- <para>Normal of the contact point.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ContactPoint.otherCollider">
- <summary>
- <para>The other collider in contact at the point.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ContactPoint.point">
- <summary>
- <para>The point of contact.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ContactPoint.separation">
- <summary>
- <para>The distance between the colliders at the contact point.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ContactPoint.thisCollider">
- <summary>
- <para>The first collider in contact at the point.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ControllerColliderHit">
- <summary>
- <para>ControllerColliderHit is used by CharacterController.OnControllerColliderHit to give detailed information about the collision and how to deal with it.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ControllerColliderHit.collider">
- <summary>
- <para>The collider that was hit by the controller.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ControllerColliderHit.controller">
- <summary>
- <para>The controller that hit the collider.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ControllerColliderHit.gameObject">
- <summary>
- <para>The game object that was hit by the controller.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ControllerColliderHit.moveDirection">
- <summary>
- <para>The direction the CharacterController was moving in when the collision occured.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ControllerColliderHit.moveLength">
- <summary>
- <para>How far the character has travelled until it hit the collider.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ControllerColliderHit.normal">
- <summary>
- <para>The normal of the surface we collided with in world space.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ControllerColliderHit.point">
- <summary>
- <para>The impact point in world space.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ControllerColliderHit.rigidbody">
- <summary>
- <para>The rigidbody that was hit by the controller.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ControllerColliderHit.transform">
- <summary>
- <para>The transform that was hit by the controller.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.FixedJoint">
- <summary>
- <para>The Fixed joint groups together 2 rigidbodies, making them stick together in their bound position.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ForceMode">
- <summary>
- <para>Use ForceMode to specify how to apply a force using Rigidbody.AddForce.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ForceMode.Acceleration">
- <summary>
- <para>Add a continuous acceleration to the rigidbody, ignoring its mass.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ForceMode.Force">
- <summary>
- <para>Add a continuous force to the rigidbody, using its mass.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ForceMode.Impulse">
- <summary>
- <para>Add an instant force impulse to the rigidbody, using its mass.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ForceMode.VelocityChange">
- <summary>
- <para>Add an instant velocity change to the rigidbody, ignoring its mass.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.HingeJoint">
- <summary>
- <para>The HingeJoint groups together 2 rigid bodies, constraining them to move like connected by a hinge.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.HingeJoint.angle">
- <summary>
- <para>The current angle in degrees of the joint relative to its rest position. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.HingeJoint.limits">
- <summary>
- <para>Limit of angular rotation (in degrees) on the hinge joint.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.HingeJoint.motor">
- <summary>
- <para>The motor will apply a force up to a maximum force to achieve the target velocity in degrees per second.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.HingeJoint.spring">
- <summary>
- <para>The spring attempts to reach a target angle by adding spring and damping forces.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.HingeJoint.useLimits">
- <summary>
- <para>Enables the joint's limits. Disabled by default.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.HingeJoint.useMotor">
- <summary>
- <para>Enables the joint's motor. Disabled by default.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.HingeJoint.useSpring">
- <summary>
- <para>Enables the joint's spring. Disabled by default.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.HingeJoint.velocity">
- <summary>
- <para>The angular velocity of the joint in degrees per second. (Read Only)</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Joint">
- <summary>
- <para>Joint is the base class for all joints.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Joint.anchor">
- <summary>
- <para>The Position of the anchor around which the joints motion is constrained.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Joint.autoConfigureConnectedAnchor">
- <summary>
- <para>Should the connectedAnchor be calculated automatically?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Joint.axis">
- <summary>
- <para>The Direction of the axis around which the body is constrained.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Joint.breakForce">
- <summary>
- <para>The force that needs to be applied for this joint to break.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Joint.breakTorque">
- <summary>
- <para>The torque that needs to be applied for this joint to break.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Joint.connectedAnchor">
- <summary>
- <para>Position of the anchor relative to the connected Rigidbody.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Joint.connectedBody">
- <summary>
- <para>A reference to another rigidbody this joint connects to.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Joint.connectedMassScale">
- <summary>
- <para>The scale to apply to the inverse mass and inertia tensor of the connected body prior to solving the constraints.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Joint.currentForce">
- <summary>
- <para>The force applied by the solver to satisfy all constraints.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Joint.currentTorque">
- <summary>
- <para>The torque applied by the solver to satisfy all constraints.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Joint.enableCollision">
- <summary>
- <para>Enable collision between bodies connected with the joint.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Joint.enablePreprocessing">
- <summary>
- <para>Toggle preprocessing for this joint.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Joint.massScale">
- <summary>
- <para>The scale to apply to the inverse mass and inertia tensor of the body prior to solving the constraints.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.JointDrive">
- <summary>
- <para>How the joint's movement will behave along its local X axis.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.JointDrive.maximumForce">
- <summary>
- <para>Amount of force applied to push the object toward the defined direction.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.JointDrive.mode">
- <summary>
- <para>Whether the drive should attempt to reach position, velocity, both or nothing.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.JointDrive.positionDamper">
- <summary>
- <para>Resistance strength against the Position Spring. Only used if mode includes Position.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.JointDrive.positionSpring">
- <summary>
- <para>Strength of a rubber-band pull toward the defined direction. Only used if mode includes Position.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.JointDriveMode">
- <summary>
- <para>The ConfigurableJoint attempts to attain position / velocity targets based on this flag.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.JointDriveMode.None">
- <summary>
- <para>Don't apply any forces to reach the target.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.JointDriveMode.Position">
- <summary>
- <para>Try to reach the specified target position.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.JointDriveMode.PositionAndVelocity">
- <summary>
- <para>Try to reach the specified target position and velocity.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.JointDriveMode.Velocity">
- <summary>
- <para>Try to reach the specified target velocity.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.JointLimits">
- <summary>
- <para>JointLimits is used by the HingeJoint to limit the joints angle.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.JointLimits.bounceMinVelocity">
- <summary>
- <para>The minimum impact velocity which will cause the joint to bounce.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.JointLimits.bounciness">
- <summary>
- <para>Determines the size of the bounce when the joint hits it's limit. Also known as restitution.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.JointLimits.contactDistance">
- <summary>
- <para>Distance inside the limit value at which the limit will be considered to be active by the solver.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.JointLimits.max">
- <summary>
- <para>The upper angular limit (in degrees) of the joint.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.JointLimits.min">
- <summary>
- <para>The lower angular limit (in degrees) of the joint.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.JointMotor">
- <summary>
- <para>The JointMotor is used to motorize a joint.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.JointMotor.force">
- <summary>
- <para>The motor will apply a force.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.JointMotor.freeSpin">
- <summary>
- <para>If freeSpin is enabled the motor will only accelerate but never slow down.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.JointMotor.targetVelocity">
- <summary>
- <para>The motor will apply a force up to force to achieve targetVelocity.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.JointProjectionMode">
- <summary>
- <para>Determines how to snap physics joints back to its constrained position when it drifts off too much.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.JointProjectionMode.None">
- <summary>
- <para>Don't snap at all.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.JointProjectionMode.PositionAndRotation">
- <summary>
- <para>Snap both position and rotation.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.JointProjectionMode.PositionOnly">
- <summary>
- <para>Snap Position only.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.JointSpring">
- <summary>
- <para>JointSpring is used add a spring force to HingeJoint and PhysicMaterial.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.JointSpring.damper">
- <summary>
- <para>The damper force uses to dampen the spring.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.JointSpring.spring">
- <summary>
- <para>The spring forces used to reach the target position.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.JointSpring.targetPosition">
- <summary>
- <para>The target position the joint attempts to reach.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.MeshCollider">
- <summary>
- <para>A mesh collider allows you to do between meshes and primitives.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.MeshCollider.convex">
- <summary>
- <para>Use a convex collider from the mesh.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.MeshCollider.cookingOptions">
- <summary>
- <para>Options used to enable or disable certain features in mesh cooking.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.MeshCollider.inflateMesh">
- <summary>
- <para>Allow the physics engine to increase the volume of the input mesh in attempt to generate a valid convex mesh.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.MeshCollider.sharedMesh">
- <summary>
- <para>The mesh object used for collision detection.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.MeshCollider.skinWidth">
- <summary>
- <para>Used when set to inflateMesh to determine how much inflation is acceptable.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.MeshCollider.smoothSphereCollisions">
- <summary>
- <para>Uses interpolated normals for sphere collisions instead of flat polygonal normals.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.MeshColliderCookingOptions">
- <summary>
- <para>Cooking options that are available with MeshCollider.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.MeshColliderCookingOptions.CookForFasterSimulation">
- <summary>
- <para>Toggle between cooking for faster simulation or faster cooking time.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.MeshColliderCookingOptions.EnableMeshCleaning">
- <summary>
- <para>Toggle cleaning of the mesh.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.MeshColliderCookingOptions.InflateConvexMesh">
- <summary>
- <para>Allow the physics engine to increase the volume of the input mesh in attempt to generate a valid convex mesh.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.MeshColliderCookingOptions.None">
- <summary>
- <para>No optional cooking steps will be run.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.MeshColliderCookingOptions.WeldColocatedVertices">
- <summary>
- <para>Toggle the removal of equal vertices.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.PhysicMaterial">
- <summary>
- <para>Physics material describes how to handle colliding objects (friction, bounciness).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.PhysicMaterial.bounceCombine">
- <summary>
- <para>Determines how the bounciness is combined.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.PhysicMaterial.bounciness">
- <summary>
- <para>How bouncy is the surface? A value of 0 will not bounce. A value of 1 will bounce without any loss of energy.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.PhysicMaterial.dynamicFriction">
- <summary>
- <para>The friction used when already moving. This value is usually between 0 and 1.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.PhysicMaterial.dynamicFriction2">
- <summary>
- <para>If anisotropic friction is enabled, dynamicFriction2 will be applied along frictionDirection2.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.PhysicMaterial.frictionCombine">
- <summary>
- <para>Determines how the friction is combined.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.PhysicMaterial.frictionDirection2">
- <summary>
- <para>The direction of anisotropy. Anisotropic friction is enabled if the vector is not zero.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.PhysicMaterial.staticFriction">
- <summary>
- <para>The friction coefficient used when an object is lying on a surface.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.PhysicMaterial.staticFriction2">
- <summary>
- <para>If anisotropic friction is enabled, staticFriction2 will be applied along frictionDirection2.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.PhysicMaterial.#ctor">
- <summary>
- <para>Creates a new material.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.PhysicMaterial.#ctor(System.String)">
- <summary>
- <para>Creates a new material named name.</para>
- </summary>
- <param name="name"></param>
- </member>
- <member name="T:UnityEngine.PhysicMaterialCombine">
- <summary>
- <para>Describes how physics materials of the colliding objects are combined.
-
-The friction force as well as the residual bounce impulse are applied symmertrically to both of the colliders in contact, so each pair of overlapping colliders must have a single set of friction and bouciness settings. However, one can set arbitrary physics materials to any colliders. For that particular reason, there is a mechanism that allows the combination of two different sets of properties that correspond to each of the colliders in contact into one set to be used in the solver.
-
-Specifying Average, Maximum, Minimum or Multiply as the physics material combine mode, you directly set the function that is used to combine the settings corresponding to the two overlapping colliders into one set of settings that can be used to apply the material effect.
-
-Note that there is a special case when the two overlapping colliders have physics materials with different combine modes set. In this particular case, the function that has the highest priority is used. The priority order is as follows: Average &lt; Minimum &lt; Multiply &lt; Maximum. For example, if one material has Average set but the other one has Maximum, then the combine function to be used is Maximum, since it has higher priority.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.PhysicMaterialCombine.Average">
- <summary>
- <para>Averages the friction/bounce of the two colliding materials.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.PhysicMaterialCombine.Maximum">
- <summary>
- <para>Uses the larger friction/bounce of the two colliding materials.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.PhysicMaterialCombine.Minimum">
- <summary>
- <para>Uses the smaller friction/bounce of the two colliding materials.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.PhysicMaterialCombine.Multiply">
- <summary>
- <para>Multiplies the friction/bounce of the two colliding materials.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Physics">
- <summary>
- <para>Global physics properties and helper methods.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Physics.autoSimulation">
- <summary>
- <para>Sets whether the physics should be simulated automatically or not.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Physics.autoSyncTransforms">
- <summary>
- <para>Whether or not to automatically sync transform changes with the physics system whenever a Transform component changes.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Physics.bounceThreshold">
- <summary>
- <para>Two colliding objects with a relative velocity below this will not bounce (default 2). Must be positive.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Physics.defaultContactOffset">
- <summary>
- <para>The default contact offset of the newly created colliders.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Physics.defaultSolverIterations">
- <summary>
- <para>The defaultSolverIterations determines how accurately Rigidbody joints and collision contacts are resolved. (default 6). Must be positive.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Physics.defaultSolverVelocityIterations">
- <summary>
- <para>The defaultSolverVelocityIterations affects how accurately the Rigidbody joints and collision contacts are resolved. (default 1). Must be positive.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Physics.gravity">
- <summary>
- <para>The gravity applied to all rigid bodies in the scene.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Physics.interCollisionDistance">
- <summary>
- <para>Sets the minimum separation distance for cloth inter-collision.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Physics.interCollisionStiffness">
- <summary>
- <para>Sets the cloth inter-collision stiffness.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Physics.maxAngularVelocity">
- <summary>
- <para>The default maximum angular velocity permitted for any rigid bodies (default 7). Must be positive.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Physics.minPenetrationForPenalty">
- <summary>
- <para>The minimum contact penetration value in order to apply a penalty force (default 0.05). Must be positive.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Physics.queriesHitBackfaces">
- <summary>
- <para>Whether physics queries should hit back-face triangles.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Physics.queriesHitTriggers">
- <summary>
- <para>Specifies whether queries (raycasts, spherecasts, overlap tests, etc.) hit Triggers by default.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Physics.sleepAngularVelocity">
- <summary>
- <para>The default angular velocity, below which objects start sleeping (default 0.14). Must be positive.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Physics.sleepThreshold">
- <summary>
- <para>The mass-normalized energy threshold, below which objects start going to sleep.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Physics.sleepVelocity">
- <summary>
- <para>The default linear velocity, below which objects start going to sleep (default 0.15). Must be positive.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Physics.AllLayers">
- <summary>
- <para>Layer mask constant to select all layers.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Physics.BoxCast(UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.Quaternion,System.Single,System.Int32,UnityEngine.QueryTriggerInteraction)">
- <summary>
- <para>Casts the box along a ray and returns detailed information on what was hit.</para>
- </summary>
- <param name="center">Center of the box.</param>
- <param name="halfExtents">Half the size of the box in each dimension.</param>
- <param name="direction">The direction in which to cast the box.</param>
- <param name="orientation">Rotation of the box.</param>
- <param name="maxDistance">The max length of the cast.</param>
- <param name="layerMask">A that is used to selectively ignore colliders when casting a capsule.</param>
- <param name="queryTriggerInteraction">Specifies whether this query should hit Triggers.</param>
- <returns>
- <para>True, if any intersections were found.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics.BoxCast(UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.RaycastHit&amp;,UnityEngine.Quaternion,System.Single,System.Int32,UnityEngine.QueryTriggerInteraction)">
- <summary>
- <para>Casts the box along a ray and returns detailed information on what was hit.</para>
- </summary>
- <param name="center">Center of the box.</param>
- <param name="halfExtents">Half the size of the box in each dimension.</param>
- <param name="direction">The direction in which to cast the box.</param>
- <param name="hitInfo">If true is returned, hitInfo will contain more information about where the collider was hit. (See Also: RaycastHit).</param>
- <param name="orientation">Rotation of the box.</param>
- <param name="maxDistance">The max length of the cast.</param>
- <param name="layerMask">A that is used to selectively ignore colliders when casting a capsule.</param>
- <param name="queryTriggerInteraction">Specifies whether this query should hit Triggers.</param>
- <returns>
- <para>True, if any intersections were found.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics.BoxCastAll(UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.Quaternion,System.Single,System.Int32,UnityEngine.QueryTriggerInteraction)">
- <summary>
- <para>Like Physics.BoxCast, but returns all hits.</para>
- </summary>
- <param name="center">Center of the box.</param>
- <param name="halfExtents">Half the size of the box in each dimension.</param>
- <param name="direction">The direction in which to cast the box.</param>
- <param name="orientation">Rotation of the box.</param>
- <param name="maxDistance">The max length of the cast.</param>
- <param name="layermask">A that is used to selectively ignore colliders when casting a capsule.</param>
- <param name="queryTriggerInteraction">Specifies whether this query should hit Triggers.</param>
- <param name="layerMask"></param>
- <returns>
- <para>All colliders that were hit.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics.BoxCastNonAlloc(UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.RaycastHit[],UnityEngine.Quaternion,System.Single,System.Int32,UnityEngine.QueryTriggerInteraction)">
- <summary>
- <para>Cast the box along the direction, and store hits in the provided buffer.</para>
- </summary>
- <param name="center">Center of the box.</param>
- <param name="halfExtents">Half the size of the box in each dimension.</param>
- <param name="direction">The direction in which to cast the box.</param>
- <param name="results">The buffer to store the results in.</param>
- <param name="orientation">Rotation of the box.</param>
- <param name="maxDistance">The max length of the cast.</param>
- <param name="layermask">A that is used to selectively ignore colliders when casting a capsule.</param>
- <param name="queryTriggerInteraction">Specifies whether this query should hit Triggers.</param>
- <param name="layerMask"></param>
- <returns>
- <para>The amount of hits stored to the results buffer.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics.CapsuleCast(UnityEngine.Vector3,UnityEngine.Vector3,System.Single,UnityEngine.Vector3,System.Single,System.Int32,UnityEngine.QueryTriggerInteraction)">
- <summary>
- <para>Casts a capsule against all colliders in the scene and returns detailed information on what was hit.</para>
- </summary>
- <param name="point1">The center of the sphere at the start of the capsule.</param>
- <param name="point2">The center of the sphere at the end of the capsule.</param>
- <param name="radius">The radius of the capsule.</param>
- <param name="direction">The direction into which to sweep the capsule.</param>
- <param name="maxDistance">The max length of the sweep.</param>
- <param name="layerMask">A that is used to selectively ignore colliders when casting a capsule.</param>
- <param name="queryTriggerInteraction">Specifies whether this query should hit Triggers.</param>
- <returns>
- <para>True when the capsule sweep intersects any collider, otherwise false.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics.CapsuleCast(UnityEngine.Vector3,UnityEngine.Vector3,System.Single,UnityEngine.Vector3,UnityEngine.RaycastHit&amp;,System.Single,System.Int32,UnityEngine.QueryTriggerInteraction)">
- <summary>
- <para></para>
- </summary>
- <param name="point1">The center of the sphere at the start of the capsule.</param>
- <param name="point2">The center of the sphere at the end of the capsule.</param>
- <param name="radius">The radius of the capsule.</param>
- <param name="direction">The direction into which to sweep the capsule.</param>
- <param name="maxDistance">The max length of the sweep.</param>
- <param name="hitInfo">If true is returned, hitInfo will contain more information about where the collider was hit. (See Also: RaycastHit).</param>
- <param name="layerMask">A that is used to selectively ignore colliders when casting a capsule.</param>
- <param name="queryTriggerInteraction">Specifies whether this query should hit Triggers.</param>
- </member>
- <member name="M:UnityEngine.Physics.CapsuleCastAll(UnityEngine.Vector3,UnityEngine.Vector3,System.Single,UnityEngine.Vector3,System.Single,System.Int32,UnityEngine.QueryTriggerInteraction)">
- <summary>
- <para>Like Physics.CapsuleCast, but this function will return all hits the capsule sweep intersects.</para>
- </summary>
- <param name="point1">The center of the sphere at the start of the capsule.</param>
- <param name="point2">The center of the sphere at the end of the capsule.</param>
- <param name="radius">The radius of the capsule.</param>
- <param name="direction">The direction into which to sweep the capsule.</param>
- <param name="maxDistance">The max length of the sweep.</param>
- <param name="layermask">A that is used to selectively ignore colliders when casting a capsule.</param>
- <param name="queryTriggerInteraction">Specifies whether this query should hit Triggers.</param>
- <param name="layerMask"></param>
- <returns>
- <para>An array of all colliders hit in the sweep.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics.CapsuleCastNonAlloc(UnityEngine.Vector3,UnityEngine.Vector3,System.Single,UnityEngine.Vector3,UnityEngine.RaycastHit[],System.Single,System.Int32,UnityEngine.QueryTriggerInteraction)">
- <summary>
- <para>Casts a capsule against all colliders in the scene and returns detailed information on what was hit into the buffer.</para>
- </summary>
- <param name="point1">The center of the sphere at the start of the capsule.</param>
- <param name="point2">The center of the sphere at the end of the capsule.</param>
- <param name="radius">The radius of the capsule.</param>
- <param name="direction">The direction into which to sweep the capsule.</param>
- <param name="results">The buffer to store the hits into.</param>
- <param name="maxDistance">The max length of the sweep.</param>
- <param name="layermask">A that is used to selectively ignore colliders when casting a capsule.</param>
- <param name="queryTriggerInteraction">Specifies whether this query should hit Triggers.</param>
- <param name="layerMask"></param>
- <returns>
- <para>The amount of hits stored into the buffer.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics.CheckBox(UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.Quaternion,System.Int32,UnityEngine.QueryTriggerInteraction)">
- <summary>
- <para>Check whether the given box overlaps with other colliders or not.</para>
- </summary>
- <param name="center">Center of the box.</param>
- <param name="halfExtents">Half the size of the box in each dimension.</param>
- <param name="orientation">Rotation of the box.</param>
- <param name="layermask">A that is used to selectively ignore colliders when casting a ray.</param>
- <param name="queryTriggerInteraction">Specifies whether this query should hit Triggers.</param>
- <returns>
- <para>True, if the box overlaps with any colliders.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics.CheckCapsule(UnityEngine.Vector3,UnityEngine.Vector3,System.Single,System.Int32,UnityEngine.QueryTriggerInteraction)">
- <summary>
- <para>Checks if any colliders overlap a capsule-shaped volume in world space.</para>
- </summary>
- <param name="start">The center of the sphere at the start of the capsule.</param>
- <param name="end">The center of the sphere at the end of the capsule.</param>
- <param name="radius">The radius of the capsule.</param>
- <param name="layermask">A that is used to selectively ignore colliders when casting a capsule.</param>
- <param name="queryTriggerInteraction">Specifies whether this query should hit Triggers.</param>
- <param name="layerMask"></param>
- </member>
- <member name="M:UnityEngine.Physics.CheckSphere(UnityEngine.Vector3,System.Single,System.Int32,UnityEngine.QueryTriggerInteraction)">
- <summary>
- <para>Returns true if there are any colliders overlapping the sphere defined by position and radius in world coordinates.</para>
- </summary>
- <param name="position">Center of the sphere.</param>
- <param name="radius">Radius of the sphere.</param>
- <param name="layerMask">A that is used to selectively ignore colliders when casting a capsule.</param>
- <param name="queryTriggerInteraction">Specifies whether this query should hit Triggers.</param>
- </member>
- <member name="M:UnityEngine.Physics.ClosestPoint(UnityEngine.Vector3,UnityEngine.Collider,UnityEngine.Vector3,UnityEngine.Quaternion)">
- <summary>
- <para>Returns a point on the given collider that is closest to the specified location.</para>
- </summary>
- <param name="point">Location you want to find the closest point to.</param>
- <param name="collider">The collider that you find the closest point on.</param>
- <param name="position">The position of the collider.</param>
- <param name="rotation">The rotation of the collider.</param>
- <returns>
- <para>The point on the collider that is closest to the specified location.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics.ComputePenetration(UnityEngine.Collider,UnityEngine.Vector3,UnityEngine.Quaternion,UnityEngine.Collider,UnityEngine.Vector3,UnityEngine.Quaternion,UnityEngine.Vector3&amp;,System.Single&amp;)">
- <summary>
- <para>Compute the minimal translation required to separate the given colliders apart at specified poses.</para>
- </summary>
- <param name="colliderA">The first collider.</param>
- <param name="positionA">Position of the first collider.</param>
- <param name="rotationA">Rotation of the first collider.</param>
- <param name="colliderB">The second collider.</param>
- <param name="positionB">Position of the second collider.</param>
- <param name="rotationB">Rotation of the second collider.</param>
- <param name="direction">Direction along which the translation required to separate the colliders apart is minimal.</param>
- <param name="distance">The distance along direction that is required to separate the colliders apart.</param>
- <returns>
- <para>True, if the colliders overlap at the given poses.</para>
- </returns>
- </member>
- <member name="F:UnityEngine.Physics.DefaultRaycastLayers">
- <summary>
- <para>Layer mask constant to select default raycast layers.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Physics.GetIgnoreLayerCollision(System.Int32,System.Int32)">
- <summary>
- <para>Are collisions between layer1 and layer2 being ignored?</para>
- </summary>
- <param name="layer1"></param>
- <param name="layer2"></param>
- </member>
- <member name="M:UnityEngine.Physics.IgnoreCollision(UnityEngine.Collider,UnityEngine.Collider,System.Boolean)">
- <summary>
- <para>Makes the collision detection system ignore all collisions between collider1 and collider2.</para>
- </summary>
- <param name="start">Start point.</param>
- <param name="end">End point.</param>
- <param name="ignore">Ignore collision.</param>
- <param name="collider1"></param>
- <param name="collider2"></param>
- </member>
- <member name="M:UnityEngine.Physics.IgnoreLayerCollision(System.Int32,System.Int32,System.Boolean)">
- <summary>
- <para>Makes the collision detection system ignore all collisions between any collider in layer1 and any collider in layer2.
-
-Note that IgnoreLayerCollision will reset the trigger state of affected colliders, so you might receive OnTriggerExit and OnTriggerEnter messages in response to calling this.</para>
- </summary>
- <param name="layer1"></param>
- <param name="layer2"></param>
- <param name="ignore"></param>
- </member>
- <member name="F:UnityEngine.Physics.IgnoreRaycastLayer">
- <summary>
- <para>Layer mask constant to select ignore raycast layer.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Physics.Linecast(UnityEngine.Vector3,UnityEngine.Vector3,System.Int32,UnityEngine.QueryTriggerInteraction)">
- <summary>
- <para>Returns true if there is any collider intersecting the line between start and end.</para>
- </summary>
- <param name="start">Start point.</param>
- <param name="end">End point.</param>
- <param name="layerMask">A that is used to selectively ignore colliders when casting a ray.</param>
- <param name="queryTriggerInteraction">Specifies whether this query should hit Triggers.</param>
- </member>
- <member name="M:UnityEngine.Physics.Linecast(UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.RaycastHit&amp;,System.Int32,UnityEngine.QueryTriggerInteraction)">
- <summary>
- <para>Returns true if there is any collider intersecting the line between start and end.</para>
- </summary>
- <param name="start">Start point.</param>
- <param name="end">End point.</param>
- <param name="layerMask">A that is used to selectively ignore colliders when casting a ray.</param>
- <param name="queryTriggerInteraction">Specifies whether this query should hit Triggers.</param>
- <param name="hitInfo">If true is returned, hitInfo will contain more information about where the collider was hit. (See Also: RaycastHit).</param>
- </member>
- <member name="M:UnityEngine.Physics.OverlapBox(UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.Quaternion,System.Int32,UnityEngine.QueryTriggerInteraction)">
- <summary>
- <para>Find all colliders touching or inside of the given box.</para>
- </summary>
- <param name="center">Center of the box.</param>
- <param name="halfExtents">Half of the size of the box in each dimension.</param>
- <param name="orientation">Rotation of the box.</param>
- <param name="layerMask">A that is used to selectively ignore colliders when casting a ray.</param>
- <param name="queryTriggerInteraction">Specifies whether this query should hit Triggers.</param>
- <returns>
- <para>Colliders that overlap with the given box.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics.OverlapBoxNonAlloc(UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.Collider[],UnityEngine.Quaternion,System.Int32,UnityEngine.QueryTriggerInteraction)">
- <summary>
- <para>Find all colliders touching or inside of the given box, and store them into the buffer.</para>
- </summary>
- <param name="center">Center of the box.</param>
- <param name="halfExtents">Half of the size of the box in each dimension.</param>
- <param name="results">The buffer to store the results in.</param>
- <param name="orientation">Rotation of the box.</param>
- <param name="layerMask">A that is used to selectively ignore colliders when casting a ray.</param>
- <param name="queryTriggerInteraction">Specifies whether this query should hit Triggers.</param>
- <param name="mask"></param>
- <returns>
- <para>The amount of colliders stored in results.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics.OverlapCapsule(UnityEngine.Vector3,UnityEngine.Vector3,System.Single,System.Int32,UnityEngine.QueryTriggerInteraction)">
- <summary>
- <para>Check the given capsule against the physics world and return all overlapping colliders.</para>
- </summary>
- <param name="point0">The center of the sphere at the start of the capsule.</param>
- <param name="point1">The center of the sphere at the end of the capsule.</param>
- <param name="radius">The radius of the capsule.</param>
- <param name="layerMask">A that is used to selectively ignore colliders when casting a capsule.</param>
- <param name="queryTriggerInteraction">Specifies whether this query should hit Triggers.</param>
- <returns>
- <para>Colliders touching or inside the capsule.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics.OverlapCapsuleNonAlloc(UnityEngine.Vector3,UnityEngine.Vector3,System.Single,UnityEngine.Collider[],System.Int32,UnityEngine.QueryTriggerInteraction)">
- <summary>
- <para>Check the given capsule against the physics world and return all overlapping colliders in the user-provided buffer.</para>
- </summary>
- <param name="point0">The center of the sphere at the start of the capsule.</param>
- <param name="point1">The center of the sphere at the end of the capsule.</param>
- <param name="radius">The radius of the capsule.</param>
- <param name="results">The buffer to store the results into.</param>
- <param name="layerMask">A that is used to selectively ignore colliders when casting a capsule.</param>
- <param name="queryTriggerInteraction">Specifies whether this query should hit Triggers.</param>
- <returns>
- <para>The amount of entries written to the buffer.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics.OverlapSphere(UnityEngine.Vector3,System.Single,System.Int32,UnityEngine.QueryTriggerInteraction)">
- <summary>
- <para>Returns an array with all colliders touching or inside the sphere.</para>
- </summary>
- <param name="position">Center of the sphere.</param>
- <param name="radius">Radius of the sphere.</param>
- <param name="layerMask">A that is used to selectively ignore colliders when casting a ray.</param>
- <param name="queryTriggerInteraction">Specifies whether this query should hit Triggers.</param>
- </member>
- <member name="M:UnityEngine.Physics.OverlapSphereNonAlloc(UnityEngine.Vector3,System.Single,UnityEngine.Collider[],System.Int32,UnityEngine.QueryTriggerInteraction)">
- <summary>
- <para>Computes and stores colliders touching or inside the sphere into the provided buffer.</para>
- </summary>
- <param name="position">Center of the sphere.</param>
- <param name="radius">Radius of the sphere.</param>
- <param name="results">The buffer to store the results into.</param>
- <param name="layerMask">A that is used to selectively ignore colliders when casting a ray.</param>
- <param name="queryTriggerInteraction">Specifies whether this query should hit Triggers.</param>
- <returns>
- <para>The amount of colliders stored into the results buffer.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics.Raycast(UnityEngine.Vector3,UnityEngine.Vector3,System.Single,System.Int32,UnityEngine.QueryTriggerInteraction)">
- <summary>
- <para>Casts a ray, from point origin, in direction direction, of length maxDistance, against all colliders in the scene.</para>
- </summary>
- <param name="origin">The starting point of the ray in world coordinates.</param>
- <param name="direction">The direction of the ray.</param>
- <param name="maxDistance">The max distance the ray should check for collisions.</param>
- <param name="layerMask">A that is used to selectively ignore Colliders when casting a ray.</param>
- <param name="queryTriggerInteraction">Specifies whether this query should hit Triggers.</param>
- <returns>
- <para>True if the ray intersects with a Collider, otherwise false.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics.Raycast(UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.RaycastHit&amp;,System.Single,System.Int32,UnityEngine.QueryTriggerInteraction)">
- <summary>
- <para>Casts a ray against all colliders in the scene and returns detailed information on what was hit.</para>
- </summary>
- <param name="origin">The starting point of the ray in world coordinates.</param>
- <param name="direction">The direction of the ray.</param>
- <param name="hitInfo">If true is returned, hitInfo will contain more information about where the collider was hit. (See Also: RaycastHit).</param>
- <param name="maxDistance">The max distance the ray should check for collisions.</param>
- <param name="layerMask">A that is used to selectively ignore colliders when casting a ray.</param>
- <param name="queryTriggerInteraction">Specifies whether this query should hit Triggers.</param>
- <returns>
- <para>True when the ray intersects any collider, otherwise false.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics.Raycast(UnityEngine.Ray,System.Single,System.Int32,UnityEngine.QueryTriggerInteraction)">
- <summary>
- <para>Same as above using ray.origin and ray.direction instead of origin and direction.</para>
- </summary>
- <param name="ray">The starting point and direction of the ray.</param>
- <param name="maxDistance">The max distance the ray should check for collisions.</param>
- <param name="layerMask">A that is used to selectively ignore colliders when casting a ray.</param>
- <param name="queryTriggerInteraction">Specifies whether this query should hit Triggers.</param>
- <returns>
- <para>True when the ray intersects any collider, otherwise false.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics.Raycast(UnityEngine.Ray,UnityEngine.RaycastHit&amp;,System.Single,System.Int32,UnityEngine.QueryTriggerInteraction)">
- <summary>
- <para>Same as above using ray.origin and ray.direction instead of origin and direction.</para>
- </summary>
- <param name="ray">The starting point and direction of the ray.</param>
- <param name="hitInfo">If true is returned, hitInfo will contain more information about where the collider was hit. (See Also: RaycastHit).</param>
- <param name="maxDistance">The max distance the ray should check for collisions.</param>
- <param name="layerMask">A that is used to selectively ignore colliders when casting a ray.</param>
- <param name="queryTriggerInteraction">Specifies whether this query should hit Triggers.</param>
- <returns>
- <para>True when the ray intersects any collider, otherwise false.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics.RaycastAll(UnityEngine.Ray,System.Single,System.Int32,UnityEngine.QueryTriggerInteraction)">
- <summary>
- <para>Casts a ray through the scene and returns all hits. Note that order is not guaranteed.</para>
- </summary>
- <param name="ray">The starting point and direction of the ray.</param>
- <param name="maxDistance">The max distance the rayhit is allowed to be from the start of the ray.</param>
- <param name="layerMask">A that is used to selectively ignore colliders when casting a ray.</param>
- <param name="queryTriggerInteraction">Specifies whether this query should hit Triggers.</param>
- </member>
- <member name="M:UnityEngine.Physics.RaycastAll(UnityEngine.Vector3,UnityEngine.Vector3,System.Single,System.Int32,UnityEngine.QueryTriggerInteraction)">
- <summary>
- <para>See Also: Raycast.</para>
- </summary>
- <param name="origin">The starting point of the ray in world coordinates.</param>
- <param name="direction">The direction of the ray.</param>
- <param name="maxDistance">The max distance the rayhit is allowed to be from the start of the ray.</param>
- <param name="layermask">A that is used to selectively ignore colliders when casting a ray.</param>
- <param name="queryTriggerInteraction">Specifies whether this query should hit Triggers.</param>
- <param name="layerMask"></param>
- </member>
- <member name="M:UnityEngine.Physics.RaycastNonAlloc(UnityEngine.Ray,UnityEngine.RaycastHit[],System.Single,System.Int32,UnityEngine.QueryTriggerInteraction)">
- <summary>
- <para>Cast a ray through the scene and store the hits into the buffer.</para>
- </summary>
- <param name="ray">The starting point and direction of the ray.</param>
- <param name="results">The buffer to store the hits into.</param>
- <param name="maxDistance">The max distance the rayhit is allowed to be from the start of the ray.</param>
- <param name="layerMask">A that is used to selectively ignore colliders when casting a ray.</param>
- <param name="queryTriggerInteraction">Specifies whether this query should hit Triggers.</param>
- <returns>
- <para>The amount of hits stored into the results buffer.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics.RaycastNonAlloc(UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.RaycastHit[],System.Single,System.Int32,UnityEngine.QueryTriggerInteraction)">
- <summary>
- <para>Cast a ray through the scene and store the hits into the buffer.</para>
- </summary>
- <param name="origin">The starting point and direction of the ray.</param>
- <param name="results">The buffer to store the hits into.</param>
- <param name="direction">The direction of the ray.</param>
- <param name="maxDistance">The max distance the rayhit is allowed to be from the start of the ray.</param>
- <param name="layermask">A that is used to selectively ignore colliders when casting a ray.</param>
- <param name="queryTriggerInteraction">Specifies whether this query should hit Triggers.</param>
- <param name="layerMask"></param>
- <returns>
- <para>The amount of hits stored into the results buffer.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics.RebuildBroadphaseRegions(UnityEngine.Bounds,System.Int32)">
- <summary>
- <para>Rebuild the broadphase interest regions as well as set the world boundaries.</para>
- </summary>
- <param name="worldBounds">Boundaries of the physics world.</param>
- <param name="subdivisions">How many cells to create along x and z axis.</param>
- </member>
- <member name="M:UnityEngine.Physics.Simulate(System.Single)">
- <summary>
- <para>Simulate physics in the scene.</para>
- </summary>
- <param name="step">The time to advance physics by.</param>
- </member>
- <member name="M:UnityEngine.Physics.SphereCast(UnityEngine.Vector3,System.Single,UnityEngine.Vector3,UnityEngine.RaycastHit&amp;,System.Single,System.Int32,UnityEngine.QueryTriggerInteraction)">
- <summary>
- <para>Casts a sphere along a ray and returns detailed information on what was hit.</para>
- </summary>
- <param name="origin">The center of the sphere at the start of the sweep.</param>
- <param name="radius">The radius of the sphere.</param>
- <param name="direction">The direction into which to sweep the sphere.</param>
- <param name="hitInfo">If true is returned, hitInfo will contain more information about where the collider was hit. (See Also: RaycastHit).</param>
- <param name="maxDistance">The max length of the cast.</param>
- <param name="layerMask">A that is used to selectively ignore colliders when casting a capsule.</param>
- <param name="queryTriggerInteraction">Specifies whether this query should hit Triggers.</param>
- <returns>
- <para>True when the sphere sweep intersects any collider, otherwise false.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics.SphereCast(UnityEngine.Ray,System.Single,System.Single,System.Int32,UnityEngine.QueryTriggerInteraction)">
- <summary>
- <para>Casts a sphere along a ray and returns detailed information on what was hit.</para>
- </summary>
- <param name="ray">The starting point and direction of the ray into which the sphere sweep is cast.</param>
- <param name="radius">The radius of the sphere.</param>
- <param name="maxDistance">The max length of the cast.</param>
- <param name="layerMask">A that is used to selectively ignore colliders when casting a capsule.</param>
- <param name="queryTriggerInteraction">Specifies whether this query should hit Triggers.</param>
- <returns>
- <para>True when the sphere sweep intersects any collider, otherwise false.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics.SphereCast(UnityEngine.Ray,System.Single,UnityEngine.RaycastHit&amp;,System.Single,System.Int32,UnityEngine.QueryTriggerInteraction)">
- <summary>
- <para></para>
- </summary>
- <param name="ray">The starting point and direction of the ray into which the sphere sweep is cast.</param>
- <param name="radius">The radius of the sphere.</param>
- <param name="hitInfo">If true is returned, hitInfo will contain more information about where the collider was hit. (See Also: RaycastHit).</param>
- <param name="maxDistance">The max length of the cast.</param>
- <param name="layerMask">A that is used to selectively ignore colliders when casting a capsule.</param>
- <param name="queryTriggerInteraction">Specifies whether this query should hit Triggers.</param>
- </member>
- <member name="M:UnityEngine.Physics.SphereCastAll(UnityEngine.Vector3,System.Single,UnityEngine.Vector3,System.Single,System.Int32,UnityEngine.QueryTriggerInteraction)">
- <summary>
- <para>Like Physics.SphereCast, but this function will return all hits the sphere sweep intersects.</para>
- </summary>
- <param name="origin">The center of the sphere at the start of the sweep.</param>
- <param name="radius">The radius of the sphere.</param>
- <param name="direction">The direction in which to sweep the sphere.</param>
- <param name="maxDistance">The max length of the sweep.</param>
- <param name="layerMask">A that is used to selectively ignore colliders when casting a sphere.</param>
- <param name="queryTriggerInteraction">Specifies whether this query should hit Triggers.</param>
- <returns>
- <para>An array of all colliders hit in the sweep.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics.SphereCastAll(UnityEngine.Ray,System.Single,System.Single,System.Int32,UnityEngine.QueryTriggerInteraction)">
- <summary>
- <para>Like Physics.SphereCast, but this function will return all hits the sphere sweep intersects.</para>
- </summary>
- <param name="ray">The starting point and direction of the ray into which the sphere sweep is cast.</param>
- <param name="radius">The radius of the sphere.</param>
- <param name="maxDistance">The max length of the sweep.</param>
- <param name="layerMask">A that is used to selectively ignore colliders when casting a sphere.</param>
- <param name="queryTriggerInteraction">Specifies whether this query should hit Triggers.</param>
- </member>
- <member name="M:UnityEngine.Physics.SphereCastNonAlloc(UnityEngine.Vector3,System.Single,UnityEngine.Vector3,UnityEngine.RaycastHit[],System.Single,System.Int32,UnityEngine.QueryTriggerInteraction)">
- <summary>
- <para>Cast sphere along the direction and store the results into buffer.</para>
- </summary>
- <param name="origin">The center of the sphere at the start of the sweep.</param>
- <param name="radius">The radius of the sphere.</param>
- <param name="direction">The direction in which to sweep the sphere.</param>
- <param name="results">The buffer to save the hits into.</param>
- <param name="maxDistance">The max length of the sweep.</param>
- <param name="layerMask">A that is used to selectively ignore colliders when casting a sphere.</param>
- <param name="queryTriggerInteraction">Specifies whether this query should hit Triggers.</param>
- <returns>
- <para>The amount of hits stored into the results buffer.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics.SphereCastNonAlloc(UnityEngine.Ray,System.Single,UnityEngine.RaycastHit[],System.Single,System.Int32,UnityEngine.QueryTriggerInteraction)">
- <summary>
- <para>Cast sphere along the direction and store the results into buffer.</para>
- </summary>
- <param name="ray">The starting point and direction of the ray into which the sphere sweep is cast.</param>
- <param name="radius">The radius of the sphere.</param>
- <param name="results">The buffer to save the results to.</param>
- <param name="maxDistance">The max length of the sweep.</param>
- <param name="layerMask">A that is used to selectively ignore colliders when casting a sphere.</param>
- <param name="queryTriggerInteraction">Specifies whether this query should hit Triggers.</param>
- <returns>
- <para>The amount of hits stored into the results buffer.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Physics.SyncTransforms">
- <summary>
- <para>Apply Transform changes to the physics engine.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.QueryTriggerInteraction">
- <summary>
- <para>Overrides the global Physics.queriesHitTriggers.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.QueryTriggerInteraction.Collide">
- <summary>
- <para>Queries always report Trigger hits.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.QueryTriggerInteraction.Ignore">
- <summary>
- <para>Queries never report Trigger hits.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.QueryTriggerInteraction.UseGlobal">
- <summary>
- <para>Queries use the global Physics.queriesHitTriggers setting.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.RaycastCommand">
- <summary>
- <para>Struct used to set up a raycast command to be performed asynchronously during a job.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RaycastCommand.direction">
- <summary>
- <para>The direction of the ray.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RaycastCommand.distance">
- <summary>
- <para>The maximum distance the ray should check for collisions.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RaycastCommand.from">
- <summary>
- <para>The starting point of the ray in world coordinates.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RaycastCommand.layerMask">
- <summary>
- <para>A LayerMask that is used to selectively ignore Colliders when casting a ray.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RaycastCommand.maxHits">
- <summary>
- <para>The maximum number of Colliders the ray can hit.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.RaycastCommand.#ctor(UnityEngine.Vector3,UnityEngine.Vector3,System.Single,System.Int32,System.Int32)">
- <summary>
- <para>Create a RaycastCommand.</para>
- </summary>
- <param name="from">The starting point of the ray in world coordinates.</param>
- <param name="direction">The direction of the ray.</param>
- <param name="distance">The maximum distance the ray should check for collisions.</param>
- <param name="layerMask">A LayerMask that is used to selectively ignore Colliders when casting a ray.</param>
- <param name="maxHits">The maximum number of Colliders the ray can hit.</param>
- </member>
- <member name="M:UnityEngine.RaycastCommand.ScheduleBatch(Unity.Collections.NativeArray`1&lt;UnityEngine.RaycastCommand&gt;,Unity.Collections.NativeArray`1&lt;UnityEngine.RaycastHit&gt;,System.Int32,Unity.Jobs.JobHandle)">
- <summary>
- <para>Schedule a batch of raycasts which are performed in a job.</para>
- </summary>
- <param name="commands">A NativeArray of the RaycastCommands to perform.</param>
- <param name="commands">A NativeArray of the RaycastHits where the results of the commands are stored.</param>
- <param name="minCommandsPerJob">The minimum number of jobs which should be performed in a single job.</param>
- <param name="dependsOn">A JobHandle of a job which must be completed before the raycast starts.</param>
- <param name="results"></param>
- <returns>
- <para>The JobHandle of the job which will perform the raycasts.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.RaycastHit">
- <summary>
- <para>Structure used to get information back from a raycast.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RaycastHit.barycentricCoordinate">
- <summary>
- <para>The barycentric coordinate of the triangle we hit.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RaycastHit.collider">
- <summary>
- <para>The Collider that was hit.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RaycastHit.distance">
- <summary>
- <para>The distance from the ray's origin to the impact point.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RaycastHit.lightmapCoord">
- <summary>
- <para>The uv lightmap coordinate at the impact point.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RaycastHit.normal">
- <summary>
- <para>The normal of the surface the ray hit.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RaycastHit.point">
- <summary>
- <para>The impact point in world space where the ray hit the collider.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RaycastHit.rigidbody">
- <summary>
- <para>The Rigidbody of the collider that was hit. If the collider is not attached to a rigidbody then it is null.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RaycastHit.textureCoord">
- <summary>
- <para>The uv texture coordinate at the collision location.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RaycastHit.textureCoord2">
- <summary>
- <para>The secondary uv texture coordinate at the impact point.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RaycastHit.transform">
- <summary>
- <para>The Transform of the rigidbody or collider that was hit.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.RaycastHit.triangleIndex">
- <summary>
- <para>The index of the triangle that was hit.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Rigidbody">
- <summary>
- <para>Control of an object's position through physics simulation.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rigidbody.angularDrag">
- <summary>
- <para>The angular drag of the object.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rigidbody.angularVelocity">
- <summary>
- <para>The angular velocity vector of the rigidbody measured in radians per second.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rigidbody.centerOfMass">
- <summary>
- <para>The center of mass relative to the transform's origin.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rigidbody.collisionDetectionMode">
- <summary>
- <para>The Rigidbody's collision detection mode.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rigidbody.constraints">
- <summary>
- <para>Controls which degrees of freedom are allowed for the simulation of this Rigidbody.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rigidbody.detectCollisions">
- <summary>
- <para>Should collision detection be enabled? (By default always enabled).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rigidbody.drag">
- <summary>
- <para>The drag of the object.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rigidbody.freezeRotation">
- <summary>
- <para>Controls whether physics will change the rotation of the object.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rigidbody.inertiaTensor">
- <summary>
- <para>The diagonal inertia tensor of mass relative to the center of mass.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rigidbody.inertiaTensorRotation">
- <summary>
- <para>The rotation of the inertia tensor.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rigidbody.interpolation">
- <summary>
- <para>Interpolation allows you to smooth out the effect of running physics at a fixed frame rate.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rigidbody.isKinematic">
- <summary>
- <para>Controls whether physics affects the rigidbody.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rigidbody.mass">
- <summary>
- <para>The mass of the rigidbody.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rigidbody.maxAngularVelocity">
- <summary>
- <para>The maximimum angular velocity of the rigidbody. (Default 7) range { 0, infinity }.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rigidbody.maxDepenetrationVelocity">
- <summary>
- <para>Maximum velocity of a rigidbody when moving out of penetrating state.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rigidbody.position">
- <summary>
- <para>The position of the rigidbody.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rigidbody.rotation">
- <summary>
- <para>The rotation of the rigidbody.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rigidbody.sleepAngularVelocity">
- <summary>
- <para>The angular velocity below which objects start going to sleep. (Default 0.14) range { 0, infinity }.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rigidbody.sleepThreshold">
- <summary>
- <para>The mass-normalized energy threshold, below which objects start going to sleep.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rigidbody.sleepVelocity">
- <summary>
- <para>The linear velocity below which objects start going to sleep. (Default 0.14) range { 0, infinity }.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rigidbody.solverIterations">
- <summary>
- <para>The solverIterations determines how accurately Rigidbody joints and collision contacts are resolved. Overrides Physics.defaultSolverIterations. Must be positive.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rigidbody.solverVelocityIterations">
- <summary>
- <para>The solverVelocityIterations affects how how accurately Rigidbody joints and collision contacts are resolved. Overrides Physics.defaultSolverVelocityIterations. Must be positive.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rigidbody.useConeFriction">
- <summary>
- <para>Force cone friction to be used for this rigidbody.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rigidbody.useGravity">
- <summary>
- <para>Controls whether gravity affects this rigidbody.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rigidbody.velocity">
- <summary>
- <para>The velocity vector of the rigidbody.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Rigidbody.worldCenterOfMass">
- <summary>
- <para>The center of mass of the rigidbody in world space (Read Only).</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Rigidbody.AddExplosionForce(System.Single,UnityEngine.Vector3,System.Single)">
- <summary>
- <para>Applies a force to a rigidbody that simulates explosion effects.</para>
- </summary>
- <param name="explosionForce">The force of the explosion (which may be modified by distance).</param>
- <param name="explosionPosition">The centre of the sphere within which the explosion has its effect.</param>
- <param name="explosionRadius">The radius of the sphere within which the explosion has its effect.</param>
- <param name="upwardsModifier">Adjustment to the apparent position of the explosion to make it seem to lift objects.</param>
- <param name="mode">The method used to apply the force to its targets.</param>
- </member>
- <member name="M:UnityEngine.Rigidbody.AddExplosionForce(System.Single,UnityEngine.Vector3,System.Single,System.Single)">
- <summary>
- <para>Applies a force to a rigidbody that simulates explosion effects.</para>
- </summary>
- <param name="explosionForce">The force of the explosion (which may be modified by distance).</param>
- <param name="explosionPosition">The centre of the sphere within which the explosion has its effect.</param>
- <param name="explosionRadius">The radius of the sphere within which the explosion has its effect.</param>
- <param name="upwardsModifier">Adjustment to the apparent position of the explosion to make it seem to lift objects.</param>
- <param name="mode">The method used to apply the force to its targets.</param>
- </member>
- <member name="M:UnityEngine.Rigidbody.AddExplosionForce(System.Single,UnityEngine.Vector3,System.Single,System.Single,UnityEngine.ForceMode)">
- <summary>
- <para>Applies a force to a rigidbody that simulates explosion effects.</para>
- </summary>
- <param name="explosionForce">The force of the explosion (which may be modified by distance).</param>
- <param name="explosionPosition">The centre of the sphere within which the explosion has its effect.</param>
- <param name="explosionRadius">The radius of the sphere within which the explosion has its effect.</param>
- <param name="upwardsModifier">Adjustment to the apparent position of the explosion to make it seem to lift objects.</param>
- <param name="mode">The method used to apply the force to its targets.</param>
- </member>
- <member name="M:UnityEngine.Rigidbody.AddForce(UnityEngine.Vector3)">
- <summary>
- <para>Adds a force to the Rigidbody.</para>
- </summary>
- <param name="force">Force vector in world coordinates.</param>
- <param name="mode">Type of force to apply.</param>
- </member>
- <member name="M:UnityEngine.Rigidbody.AddForce(UnityEngine.Vector3,UnityEngine.ForceMode)">
- <summary>
- <para>Adds a force to the Rigidbody.</para>
- </summary>
- <param name="force">Force vector in world coordinates.</param>
- <param name="mode">Type of force to apply.</param>
- </member>
- <member name="M:UnityEngine.Rigidbody.AddForce(System.Single,System.Single,System.Single)">
- <summary>
- <para>Adds a force to the Rigidbody.</para>
- </summary>
- <param name="x">Size of force along the world x-axis.</param>
- <param name="y">Size of force along the world y-axis.</param>
- <param name="z">Size of force along the world z-axis.</param>
- <param name="mode">Type of force to apply.</param>
- </member>
- <member name="M:UnityEngine.Rigidbody.AddForce(System.Single,System.Single,System.Single,UnityEngine.ForceMode)">
- <summary>
- <para>Adds a force to the Rigidbody.</para>
- </summary>
- <param name="x">Size of force along the world x-axis.</param>
- <param name="y">Size of force along the world y-axis.</param>
- <param name="z">Size of force along the world z-axis.</param>
- <param name="mode">Type of force to apply.</param>
- </member>
- <member name="M:UnityEngine.Rigidbody.AddForceAtPosition(UnityEngine.Vector3,UnityEngine.Vector3)">
- <summary>
- <para>Applies force at position. As a result this will apply a torque and force on the object.</para>
- </summary>
- <param name="force">Force vector in world coordinates.</param>
- <param name="position">Position in world coordinates.</param>
- <param name="mode"></param>
- </member>
- <member name="M:UnityEngine.Rigidbody.AddForceAtPosition(UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.ForceMode)">
- <summary>
- <para>Applies force at position. As a result this will apply a torque and force on the object.</para>
- </summary>
- <param name="force">Force vector in world coordinates.</param>
- <param name="position">Position in world coordinates.</param>
- <param name="mode"></param>
- </member>
- <member name="M:UnityEngine.Rigidbody.AddRelativeForce(UnityEngine.Vector3)">
- <summary>
- <para>Adds a force to the rigidbody relative to its coordinate system.</para>
- </summary>
- <param name="force">Force vector in local coordinates.</param>
- <param name="mode"></param>
- </member>
- <member name="M:UnityEngine.Rigidbody.AddRelativeForce(UnityEngine.Vector3,UnityEngine.ForceMode)">
- <summary>
- <para>Adds a force to the rigidbody relative to its coordinate system.</para>
- </summary>
- <param name="force">Force vector in local coordinates.</param>
- <param name="mode"></param>
- </member>
- <member name="M:UnityEngine.Rigidbody.AddRelativeForce(System.Single,System.Single,System.Single)">
- <summary>
- <para>Adds a force to the rigidbody relative to its coordinate system.</para>
- </summary>
- <param name="x">Size of force along the local x-axis.</param>
- <param name="y">Size of force along the local y-axis.</param>
- <param name="z">Size of force along the local z-axis.</param>
- <param name="mode"></param>
- </member>
- <member name="M:UnityEngine.Rigidbody.AddRelativeForce(System.Single,System.Single,System.Single,UnityEngine.ForceMode)">
- <summary>
- <para>Adds a force to the rigidbody relative to its coordinate system.</para>
- </summary>
- <param name="x">Size of force along the local x-axis.</param>
- <param name="y">Size of force along the local y-axis.</param>
- <param name="z">Size of force along the local z-axis.</param>
- <param name="mode"></param>
- </member>
- <member name="M:UnityEngine.Rigidbody.AddRelativeTorque(UnityEngine.Vector3)">
- <summary>
- <para>Adds a torque to the rigidbody relative to its coordinate system.</para>
- </summary>
- <param name="torque">Torque vector in local coordinates.</param>
- <param name="mode"></param>
- </member>
- <member name="M:UnityEngine.Rigidbody.AddRelativeTorque(UnityEngine.Vector3,UnityEngine.ForceMode)">
- <summary>
- <para>Adds a torque to the rigidbody relative to its coordinate system.</para>
- </summary>
- <param name="torque">Torque vector in local coordinates.</param>
- <param name="mode"></param>
- </member>
- <member name="M:UnityEngine.Rigidbody.AddRelativeTorque(System.Single,System.Single,System.Single)">
- <summary>
- <para>Adds a torque to the rigidbody relative to its coordinate system.</para>
- </summary>
- <param name="x">Size of torque along the local x-axis.</param>
- <param name="y">Size of torque along the local y-axis.</param>
- <param name="z">Size of torque along the local z-axis.</param>
- <param name="mode"></param>
- </member>
- <member name="M:UnityEngine.Rigidbody.AddRelativeTorque(System.Single,System.Single,System.Single,UnityEngine.ForceMode)">
- <summary>
- <para>Adds a torque to the rigidbody relative to its coordinate system.</para>
- </summary>
- <param name="x">Size of torque along the local x-axis.</param>
- <param name="y">Size of torque along the local y-axis.</param>
- <param name="z">Size of torque along the local z-axis.</param>
- <param name="mode"></param>
- </member>
- <member name="M:UnityEngine.Rigidbody.AddTorque(UnityEngine.Vector3)">
- <summary>
- <para>Adds a torque to the rigidbody.</para>
- </summary>
- <param name="torque">Torque vector in world coordinates.</param>
- <param name="mode"></param>
- </member>
- <member name="M:UnityEngine.Rigidbody.AddTorque(UnityEngine.Vector3,UnityEngine.ForceMode)">
- <summary>
- <para>Adds a torque to the rigidbody.</para>
- </summary>
- <param name="torque">Torque vector in world coordinates.</param>
- <param name="mode"></param>
- </member>
- <member name="M:UnityEngine.Rigidbody.AddTorque(System.Single,System.Single,System.Single)">
- <summary>
- <para>Adds a torque to the rigidbody.</para>
- </summary>
- <param name="x">Size of torque along the world x-axis.</param>
- <param name="y">Size of torque along the world y-axis.</param>
- <param name="z">Size of torque along the world z-axis.</param>
- <param name="mode"></param>
- </member>
- <member name="M:UnityEngine.Rigidbody.AddTorque(System.Single,System.Single,System.Single,UnityEngine.ForceMode)">
- <summary>
- <para>Adds a torque to the rigidbody.</para>
- </summary>
- <param name="x">Size of torque along the world x-axis.</param>
- <param name="y">Size of torque along the world y-axis.</param>
- <param name="z">Size of torque along the world z-axis.</param>
- <param name="mode"></param>
- </member>
- <member name="M:UnityEngine.Rigidbody.ClosestPointOnBounds(UnityEngine.Vector3)">
- <summary>
- <para>The closest point to the bounding box of the attached colliders.</para>
- </summary>
- <param name="position"></param>
- </member>
- <member name="M:UnityEngine.Rigidbody.GetPointVelocity(UnityEngine.Vector3)">
- <summary>
- <para>The velocity of the rigidbody at the point worldPoint in global space.</para>
- </summary>
- <param name="worldPoint"></param>
- </member>
- <member name="M:UnityEngine.Rigidbody.GetRelativePointVelocity(UnityEngine.Vector3)">
- <summary>
- <para>The velocity relative to the rigidbody at the point relativePoint.</para>
- </summary>
- <param name="relativePoint"></param>
- </member>
- <member name="M:UnityEngine.Rigidbody.IsSleeping">
- <summary>
- <para>Is the rigidbody sleeping?</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Rigidbody.MovePosition(UnityEngine.Vector3)">
- <summary>
- <para>Moves the rigidbody to position.</para>
- </summary>
- <param name="position">The new position for the Rigidbody object.</param>
- </member>
- <member name="M:UnityEngine.Rigidbody.MoveRotation(UnityEngine.Quaternion)">
- <summary>
- <para>Rotates the rigidbody to rotation.</para>
- </summary>
- <param name="rot">The new rotation for the Rigidbody.</param>
- </member>
- <member name="M:UnityEngine.Rigidbody.ResetCenterOfMass">
- <summary>
- <para>Reset the center of mass of the rigidbody.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Rigidbody.ResetInertiaTensor">
- <summary>
- <para>Reset the inertia tensor value and rotation.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Rigidbody.SetDensity(System.Single)">
- <summary>
- <para>Sets the mass based on the attached colliders assuming a constant density.</para>
- </summary>
- <param name="density"></param>
- </member>
- <member name="M:UnityEngine.Rigidbody.Sleep">
- <summary>
- <para>Forces a rigidbody to sleep at least one frame.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Rigidbody.SweepTest(UnityEngine.Vector3,UnityEngine.RaycastHit&amp;,System.Single,UnityEngine.QueryTriggerInteraction)">
- <summary>
- <para>Tests if a rigidbody would collide with anything, if it was moved through the scene.</para>
- </summary>
- <param name="direction">The direction into which to sweep the rigidbody.</param>
- <param name="hitInfo">If true is returned, hitInfo will contain more information about where the collider was hit (See Also: RaycastHit).</param>
- <param name="maxDistance">The length of the sweep.</param>
- <param name="queryTriggerInteraction">Specifies whether this query should hit Triggers.</param>
- <returns>
- <para>True when the rigidbody sweep intersects any collider, otherwise false.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Rigidbody.SweepTestAll(UnityEngine.Vector3,System.Single,UnityEngine.QueryTriggerInteraction)">
- <summary>
- <para>Like Rigidbody.SweepTest, but returns all hits.</para>
- </summary>
- <param name="direction">The direction into which to sweep the rigidbody.</param>
- <param name="maxDistance">The length of the sweep.</param>
- <param name="queryTriggerInteraction">Specifies whether this query should hit Triggers.</param>
- <returns>
- <para>An array of all colliders hit in the sweep.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Rigidbody.WakeUp">
- <summary>
- <para>Forces a rigidbody to wake up.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.RigidbodyConstraints">
- <summary>
- <para>Use these flags to constrain motion of Rigidbodies.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RigidbodyConstraints.FreezeAll">
- <summary>
- <para>Freeze rotation and motion along all axes.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RigidbodyConstraints.FreezePosition">
- <summary>
- <para>Freeze motion along all axes.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RigidbodyConstraints.FreezePositionX">
- <summary>
- <para>Freeze motion along the X-axis.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RigidbodyConstraints.FreezePositionY">
- <summary>
- <para>Freeze motion along the Y-axis.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RigidbodyConstraints.FreezePositionZ">
- <summary>
- <para>Freeze motion along the Z-axis.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RigidbodyConstraints.FreezeRotation">
- <summary>
- <para>Freeze rotation along all axes.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RigidbodyConstraints.FreezeRotationX">
- <summary>
- <para>Freeze rotation along the X-axis.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RigidbodyConstraints.FreezeRotationY">
- <summary>
- <para>Freeze rotation along the Y-axis.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RigidbodyConstraints.FreezeRotationZ">
- <summary>
- <para>Freeze rotation along the Z-axis.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RigidbodyConstraints.None">
- <summary>
- <para>No constraints.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.RigidbodyInterpolation">
- <summary>
- <para>Rigidbody interpolation mode.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RigidbodyInterpolation.Extrapolate">
- <summary>
- <para>Extrapolation will predict the position of the rigidbody based on the current velocity.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RigidbodyInterpolation.Interpolate">
- <summary>
- <para>Interpolation will always lag a little bit behind but can be smoother than extrapolation.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RigidbodyInterpolation.None">
- <summary>
- <para>No Interpolation.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.RotationDriveMode">
- <summary>
- <para>Control ConfigurableJoint's rotation with either X &amp; YZ or Slerp Drive.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RotationDriveMode.Slerp">
- <summary>
- <para>Use Slerp drive.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RotationDriveMode.XYAndZ">
- <summary>
- <para>Use XY &amp; Z Drive.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.SoftJointLimit">
- <summary>
- <para>The limits defined by the CharacterJoint.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SoftJointLimit.bounciness">
- <summary>
- <para>When the joint hits the limit, it can be made to bounce off it.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SoftJointLimit.contactDistance">
- <summary>
- <para>Determines how far ahead in space the solver can "see" the joint limit.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SoftJointLimit.damper">
- <summary>
- <para>If spring is greater than zero, the limit is soft.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SoftJointLimit.limit">
- <summary>
- <para>The limit position/angle of the joint (in degrees).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SoftJointLimit.spring">
- <summary>
- <para>If greater than zero, the limit is soft. The spring will pull the joint back.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.SoftJointLimitSpring">
- <summary>
- <para>The configuration of the spring attached to the joint's limits: linear and angular. Used by CharacterJoint and ConfigurableJoint.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SoftJointLimitSpring.damper">
- <summary>
- <para>The damping of the spring limit. In effect when the stiffness of the sprint limit is not zero.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SoftJointLimitSpring.spring">
- <summary>
- <para>The stiffness of the spring limit. When stiffness is zero the limit is hard, otherwise soft.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.SphereCollider">
- <summary>
- <para>A sphere-shaped primitive collider.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SphereCollider.center">
- <summary>
- <para>The center of the sphere in the object's local space.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SphereCollider.radius">
- <summary>
- <para>The radius of the sphere measured in the object's local space.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.SpringJoint">
- <summary>
- <para>The spring joint ties together 2 rigid bodies, spring forces will be automatically applied to keep the object at the given distance.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SpringJoint.damper">
- <summary>
- <para>The damper force used to dampen the spring force.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SpringJoint.maxDistance">
- <summary>
- <para>The maximum distance between the bodies relative to their initial distance.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SpringJoint.minDistance">
- <summary>
- <para>The minimum distance between the bodies relative to their initial distance.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SpringJoint.spring">
- <summary>
- <para>The spring force used to keep the two objects together.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SpringJoint.tolerance">
- <summary>
- <para>The maximum allowed error between the current spring length and the length defined by minDistance and maxDistance.</para>
- </summary>
- </member>
- <member name="A:UnityEngine.PhysicsModule">
- <summary>
- <para>The Physics module implements 3D physics in Unity.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.WheelFrictionCurve">
- <summary>
- <para>WheelFrictionCurve is used by the WheelCollider to describe friction properties of the wheel tire.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.WheelFrictionCurve.asymptoteSlip">
- <summary>
- <para>Asymptote point slip (default 2).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.WheelFrictionCurve.asymptoteValue">
- <summary>
- <para>Force at the asymptote slip (default 10000).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.WheelFrictionCurve.extremumSlip">
- <summary>
- <para>Extremum point slip (default 1).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.WheelFrictionCurve.extremumValue">
- <summary>
- <para>Force at the extremum slip (default 20000).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.WheelFrictionCurve.stiffness">
- <summary>
- <para>Multiplier for the extremumValue and asymptoteValue values (default 1).</para>
- </summary>
- </member>
- </members>
-</doc>
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.ProfilerModule.dll b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.ProfilerModule.dll
deleted file mode 100644
index 7c209cf..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.ProfilerModule.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.ProfilerModule.xml b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.ProfilerModule.xml
deleted file mode 100644
index b4e592c..0000000
--- a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.ProfilerModule.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
-<doc>
- <members>
- <assembly>
- <name>UnityEngine.ProfilerModule</name>
- </assembly>
- </members>
-</doc>
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.ScreenCaptureModule.dll b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.ScreenCaptureModule.dll
deleted file mode 100644
index ddaec60..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.ScreenCaptureModule.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.ScreenCaptureModule.xml b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.ScreenCaptureModule.xml
deleted file mode 100644
index 08274c9..0000000
--- a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.ScreenCaptureModule.xml
+++ /dev/null
@@ -1,68 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
-<doc>
- <members>
- <assembly>
- <name>UnityEngine.ScreenCaptureModule</name>
- </assembly>
- <member name="T:UnityEngine.ScreenCapture">
- <summary>
- <para>Functionality to take Screenshots.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.ScreenCapture.CaptureScreenshot(System.String,System.Int32)">
- <summary>
- <para>Captures a screenshot at path filename as a PNG file.</para>
- </summary>
- <param name="filename">Pathname to save the screenshot file to.</param>
- <param name="superSize">Factor by which to increase resolution.</param>
- <param name="stereoCaptureMode">Specifies the eye texture to capture when stereo rendering is enabled.</param>
- </member>
- <member name="M:UnityEngine.ScreenCapture.CaptureScreenshot(System.String,UnityEngine.ScreenCapture/StereoScreenCaptureMode)">
- <summary>
- <para>Captures a screenshot at path filename as a PNG file.</para>
- </summary>
- <param name="filename">Pathname to save the screenshot file to.</param>
- <param name="superSize">Factor by which to increase resolution.</param>
- <param name="stereoCaptureMode">Specifies the eye texture to capture when stereo rendering is enabled.</param>
- </member>
- <member name="M:UnityEngine.ScreenCapture.CaptureScreenshotAsTexture(System.Int32)">
- <summary>
- <para>Captures a screenshot of the game view into a Texture2D object.</para>
- </summary>
- <param name="superSize">Factor by which to increase resolution.</param>
- <param name="stereoCaptureMode">Specifies the eye texture to capture when stereo rendering is enabled.</param>
- </member>
- <member name="M:UnityEngine.ScreenCapture.CaptureScreenshotAsTexture(UnityEngine.ScreenCapture/StereoScreenCaptureMode)">
- <summary>
- <para>Captures a screenshot of the game view into a Texture2D object.</para>
- </summary>
- <param name="superSize">Factor by which to increase resolution.</param>
- <param name="stereoCaptureMode">Specifies the eye texture to capture when stereo rendering is enabled.</param>
- </member>
- <member name="T:UnityEngine.ScreenCapture.StereoScreenCaptureMode">
- <summary>
- <para>Enumeration specifying the eye texture to capture when using ScreenCapture.CaptureScreenshot and when stereo rendering is enabled.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ScreenCapture.StereoScreenCaptureMode.BothEyes">
- <summary>
- <para>Both the left and right eyes are captured and composited into one image.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ScreenCapture.StereoScreenCaptureMode.LeftEye">
- <summary>
- <para>The Left Eye is captured. This is the default setting for the CaptureScreenshot method.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ScreenCapture.StereoScreenCaptureMode.RightEye">
- <summary>
- <para>The Right Eye is captured.</para>
- </summary>
- </member>
- <member name="A:UnityEngine.ScreenCaptureModule">
- <summary>
- <para>The ScreenCapture module provides functionality to take screen shots using the ScreenCapture class.</para>
- </summary>
- </member>
- </members>
-</doc>
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.SharedInternalsModule.dll b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.SharedInternalsModule.dll
deleted file mode 100644
index 88ca113..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.SharedInternalsModule.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.SharedInternalsModule.xml b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.SharedInternalsModule.xml
deleted file mode 100644
index 5b91a55..0000000
--- a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.SharedInternalsModule.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
-<doc>
- <members>
- <assembly>
- <name>UnityEngine.SharedInternalsModule</name>
- </assembly>
- <member name="A:UnityEngine.SharedInternalsModule">
- <summary>
- <para>SharedInternals is a module used internally to provide low-level functionality needed by other modules.</para>
- </summary>
- </member>
- </members>
-</doc>
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.SpatialTracking.dll b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.SpatialTracking.dll
deleted file mode 100755
index c2ea793..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.SpatialTracking.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.SpatialTrackingModule.dll b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.SpatialTrackingModule.dll
deleted file mode 100644
index 6354c0e..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.SpatialTrackingModule.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.SpatialTrackingModule.xml b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.SpatialTrackingModule.xml
deleted file mode 100644
index 7d5faf4..0000000
--- a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.SpatialTrackingModule.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
-<doc>
- <members>
- <assembly>
- <name>UnityEngine.SpatialTrackingModule</name>
- </assembly>
- </members>
-</doc>
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.SpriteMaskModule.dll b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.SpriteMaskModule.dll
deleted file mode 100644
index ddd105d..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.SpriteMaskModule.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.SpriteMaskModule.xml b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.SpriteMaskModule.xml
deleted file mode 100644
index 76937de..0000000
--- a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.SpriteMaskModule.xml
+++ /dev/null
@@ -1,53 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
-<doc>
- <members>
- <assembly>
- <name>UnityEngine.SpriteMaskModule</name>
- </assembly>
- <member name="T:UnityEngine.SpriteMask">
- <summary>
- <para>A component for masking Sprites and Particles.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SpriteMask.alphaCutoff">
- <summary>
- <para>The minimum alpha value used by the mask to select the area of influence defined over the mask's sprite.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SpriteMask.backSortingLayerID">
- <summary>
- <para>Unique ID of the sorting layer defining the end of the custom range.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SpriteMask.backSortingOrder">
- <summary>
- <para>Order within the back sorting layer defining the end of the custom range.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SpriteMask.frontSortingLayerID">
- <summary>
- <para>Unique ID of the sorting layer defining the start of the custom range.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SpriteMask.frontSortingOrder">
- <summary>
- <para>Order within the front sorting layer defining the start of the custom range.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SpriteMask.isCustomRangeActive">
- <summary>
- <para>Mask sprites from front to back sorting values only.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SpriteMask.sprite">
- <summary>
- <para>The Sprite used to define the mask.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SpriteMask.spriteSortPoint">
- <summary>
- <para>Determines the position of the Sprite used for sorting the SpriteMask.</para>
- </summary>
- </member>
- </members>
-</doc>
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.SpriteShapeModule.dll b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.SpriteShapeModule.dll
deleted file mode 100644
index 041ca54..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.SpriteShapeModule.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.SpriteShapeModule.xml b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.SpriteShapeModule.xml
deleted file mode 100644
index 9b40213..0000000
--- a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.SpriteShapeModule.xml
+++ /dev/null
@@ -1,187 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
-<doc>
- <members>
- <assembly>
- <name>UnityEngine.SpriteShapeModule</name>
- </assembly>
- <member name="T:UnityEngine.Experimental.U2D.AngleRangeInfo">
- <summary>
- <para>Describes the information about the edge and how to tessellate it.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.U2D.AngleRangeInfo.end">
- <summary>
- <para>The maximum angle to be considered within this range.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.U2D.AngleRangeInfo.order">
- <summary>
- <para>The render order of the edges that belong in this range.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.U2D.AngleRangeInfo.sprites">
- <summary>
- <para>The list of Sprites that are associated with this range.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.U2D.AngleRangeInfo.start">
- <summary>
- <para>The minimum angle to be considered within this range.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.U2D.ShapeControlPoint">
- <summary>
- <para>Data that describes the important points of the shape.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.U2D.ShapeControlPoint.leftTangent">
- <summary>
- <para>The position of the left tangent in local space.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.U2D.ShapeControlPoint.mode">
- <summary>
- <para>The various modes of the tangent handles. They could be continuous or broken.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.U2D.ShapeControlPoint.position">
- <summary>
- <para>The position of this point in the object's local space.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.U2D.ShapeControlPoint.rightTangent">
- <summary>
- <para>The position of the right tangent point in the local space.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.U2D.SpriteShapeMetaData">
- <summary>
- <para>Additional data about the shape's control point. This is useful during tessellation of the shape.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.U2D.SpriteShapeMetaData.bevelCutoff">
- <summary>
- <para>The threshold of the angle that decides if it should be tessellated as a curve or a corner.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.U2D.SpriteShapeMetaData.bevelSize">
- <summary>
- <para>The radius of the curve to be tessellated.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.U2D.SpriteShapeMetaData.corner">
- <summary>
- <para>True will indicate that this point should be tessellated as a corner or a continuous line otherwise.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.U2D.SpriteShapeMetaData.height">
- <summary>
- <para>The height of the tessellated edge.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.U2D.SpriteShapeMetaData.spriteIndex">
- <summary>
- <para>The Sprite to be used for a particular edge.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.U2D.SpriteShapeParameters">
- <summary>
- <para>Input parameters for the SpriteShape tessellator.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.U2D.SpriteShapeParameters.adaptiveUV">
- <summary>
- <para>If enabled, the tessellator will adapt the size of the quads based on the height of the edge.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.U2D.SpriteShapeParameters.angleThreshold">
- <summary>
- <para>The threshold of the angle that indicates whether it is a corner or not.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.U2D.SpriteShapeParameters.bevelCutoff">
- <summary>
- <para>The threshold of the angle that decides if it should be tessellated as a curve or a corner.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.U2D.SpriteShapeParameters.bevelSize">
- <summary>
- <para>The radius of the curve to be tessellated.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.U2D.SpriteShapeParameters.borderPivot">
- <summary>
- <para>The local displacement of the Sprite when tessellated.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.U2D.SpriteShapeParameters.carpet">
- <summary>
- <para>If true, the Shape will be tessellated as a closed form.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.U2D.SpriteShapeParameters.fillScale">
- <summary>
- <para>The scale to be used to calculate the UVs of the fill texture.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.U2D.SpriteShapeParameters.fillTexture">
- <summary>
- <para>The texture to be used for the fill of the SpriteShape.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.U2D.SpriteShapeParameters.smartSprite">
- <summary>
- <para>If enabled the tessellator will consider creating corners based on the various input parameters.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.U2D.SpriteShapeParameters.splineDetail">
- <summary>
- <para>The tessellation quality of the input Spline that determines the complexity of the mesh.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.U2D.SpriteShapeParameters.spriteBorders">
- <summary>
- <para>The borders to be used for calculating the uv of the edges based on the border info found in Sprites.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.U2D.SpriteShapeParameters.transform">
- <summary>
- <para>The world space transform of the game object used for calculating the UVs of the fill texture.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.U2D.SpriteShapeRenderer">
- <summary>
- <para>Renders SpriteShapes defined through the SpriteShapeUtility.GenerateSpriteShape API.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.U2D.SpriteShapeUtility">
- <summary>
- <para>A static class that helps tessellate a SpriteShape mesh.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.U2D.SpriteShapeUtility.Generate(UnityEngine.Mesh,UnityEngine.Experimental.U2D.SpriteShapeParameters,UnityEngine.Experimental.U2D.ShapeControlPoint[],UnityEngine.Experimental.U2D.SpriteShapeMetaData[],UnityEngine.Experimental.U2D.AngleRangeInfo[],UnityEngine.Sprite[],UnityEngine.Sprite[])">
- <summary>
- <para>Generate a mesh based on input parameters.</para>
- </summary>
- <param name="mesh">The output mesh.</param>
- <param name="shapeParams">Input parameters for the SpriteShape tessellator.</param>
- <param name="points">A list of control points that describes the shape.</param>
- <param name="metaData">Additional data about the shape's control point. This is useful during tessellation of the shape.</param>
- <param name="sprites">The list of Sprites that could be used for the edges.</param>
- <param name="corners">The list of Sprites that could be used for the corners.</param>
- <param name="angleRange">A parameter that determins how to tessellate each of the edge.</param>
- </member>
- <member name="M:UnityEngine.Experimental.U2D.SpriteShapeUtility.GenerateSpriteShape(UnityEngine.Experimental.U2D.SpriteShapeRenderer,UnityEngine.Experimental.U2D.SpriteShapeParameters,UnityEngine.Experimental.U2D.ShapeControlPoint[],UnityEngine.Experimental.U2D.SpriteShapeMetaData[],UnityEngine.Experimental.U2D.AngleRangeInfo[],UnityEngine.Sprite[],UnityEngine.Sprite[])">
- <summary>
- <para>Generate a mesh based on input parameters.</para>
- </summary>
- <param name="renderer">SpriteShapeRenderer to which the generated geometry is fed to.</param>
- <param name="shapeParams">Input parameters for the SpriteShape tessellator.</param>
- <param name="points">A list of control points that describes the shape.</param>
- <param name="metaData">Additional data about the shape's control point. This is useful during tessellation of the shape.</param>
- <param name="sprites">The list of Sprites that could be used for the edges.</param>
- <param name="corners">The list of Sprites that could be used for the corners.</param>
- <param name="angleRange">A parameter that determins how to tessellate each of the edge.</param>
- </member>
- </members>
-</doc>
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.StandardEvents.dll b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.StandardEvents.dll
deleted file mode 100644
index a97e553..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.StandardEvents.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.StreamingModule.dll b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.StreamingModule.dll
deleted file mode 100644
index db60357..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.StreamingModule.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.StreamingModule.xml b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.StreamingModule.xml
deleted file mode 100644
index e3b92ab..0000000
--- a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.StreamingModule.xml
+++ /dev/null
@@ -1,39 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
-<doc>
- <members>
- <assembly>
- <name>UnityEngine.StreamingModule</name>
- </assembly>
- <member name="T:UnityEngine.StreamingController">
- <summary>
- <para>A StreamingController controls the streaming settings for an individual camera location.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.StreamingController.streamingMipmapBias">
- <summary>
- <para>Offset applied to the mipmap level chosen by the texture streaming system for any textures visible from this camera. This Offset can take either a positive or negative value.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.StreamingController.CancelPreloading">
- <summary>
- <para>Abort preloading.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.StreamingController.IsPreloading">
- <summary>
- <para>Used to find out whether the StreamingController is currently preloading texture mipmaps.</para>
- </summary>
- <returns>
- <para>True if in a preloading state, otherwise False.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.StreamingController.SetPreloading(System.Single,System.Boolean,UnityEngine.Camera)">
- <summary>
- <para>Initiate preloading of streaming data for this camera.</para>
- </summary>
- <param name="timeoutSeconds">Optional timeout before stopping preloading. Set to 0.0f when no timeout is required.</param>
- <param name="activateCameraOnTimeout">Set to True to activate the connected Camera component when timeout expires.</param>
- <param name="disableCameraCuttingFrom">Camera to deactivate on timeout (if Camera.activateCameraOnTime is True). This parameter can be null.</param>
- </member>
- </members>
-</doc>
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.StyleSheetsModule.dll b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.StyleSheetsModule.dll
deleted file mode 100644
index ac71a1a..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.StyleSheetsModule.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.StyleSheetsModule.xml b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.StyleSheetsModule.xml
deleted file mode 100644
index 8d23747..0000000
--- a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.StyleSheetsModule.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
-<doc>
- <members>
- <assembly>
- <name>UnityEngine.StyleSheetsModule</name>
- </assembly>
- </members>
-</doc>
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.SubstanceModule.dll b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.SubstanceModule.dll
deleted file mode 100644
index 25186c7..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.SubstanceModule.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.SubstanceModule.xml b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.SubstanceModule.xml
deleted file mode 100644
index 9271314..0000000
--- a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.SubstanceModule.xml
+++ /dev/null
@@ -1,519 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
-<doc>
- <members>
- <assembly>
- <name>UnityEngine.SubstanceModule</name>
- </assembly>
- <member name="T:UnityEngine.ProceduralCacheSize">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ProceduralCacheSize.Heavy">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ProceduralCacheSize.Medium">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ProceduralCacheSize.NoLimit">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ProceduralCacheSize.None">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ProceduralCacheSize.Tiny">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ProceduralLoadingBehavior">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ProceduralLoadingBehavior.BakeAndDiscard">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ProceduralLoadingBehavior.BakeAndKeep">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ProceduralLoadingBehavior.Cache">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ProceduralLoadingBehavior.DoNothing">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ProceduralLoadingBehavior.DoNothingAndCache">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ProceduralLoadingBehavior.Generate">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ProceduralMaterial">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ProceduralMaterial.animationUpdateRate">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ProceduralMaterial.cacheSize">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ProceduralMaterial.isCachedDataAvailable">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ProceduralMaterial.isFrozen">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ProceduralMaterial.isLoadTimeGenerated">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ProceduralMaterial.isProcessing">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ProceduralMaterial.isReadable">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ProceduralMaterial.isSupported">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ProceduralMaterial.loadingBehavior">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ProceduralMaterial.preset">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ProceduralMaterial.substanceProcessorUsage">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- </member>
- <member name="M:UnityEngine.ProceduralMaterial.CacheProceduralProperty(System.String,System.Boolean)">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- <param name="inputName"></param>
- <param name="value"></param>
- </member>
- <member name="M:UnityEngine.ProceduralMaterial.ClearCache">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- </member>
- <member name="M:UnityEngine.ProceduralMaterial.FreezeAndReleaseSourceData">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- </member>
- <member name="M:UnityEngine.ProceduralMaterial.GetGeneratedTexture(System.String)">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- <param name="textureName"></param>
- </member>
- <member name="M:UnityEngine.ProceduralMaterial.GetGeneratedTextures">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- </member>
- <member name="M:UnityEngine.ProceduralMaterial.GetProceduralBoolean(System.String)">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- <param name="inputName"></param>
- </member>
- <member name="M:UnityEngine.ProceduralMaterial.GetProceduralColor(System.String)">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- <param name="inputName"></param>
- </member>
- <member name="M:UnityEngine.ProceduralMaterial.GetProceduralEnum(System.String)">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- <param name="inputName"></param>
- </member>
- <member name="M:UnityEngine.ProceduralMaterial.GetProceduralFloat(System.String)">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- <param name="inputName"></param>
- </member>
- <member name="M:UnityEngine.ProceduralMaterial.GetProceduralPropertyDescriptions">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- </member>
- <member name="M:UnityEngine.ProceduralMaterial.GetProceduralString(System.String)">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- <param name="inputName"></param>
- </member>
- <member name="M:UnityEngine.ProceduralMaterial.GetProceduralTexture(System.String)">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- <param name="inputName"></param>
- </member>
- <member name="M:UnityEngine.ProceduralMaterial.GetProceduralVector(System.String)">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- <param name="inputName"></param>
- </member>
- <member name="M:UnityEngine.ProceduralMaterial.HasProceduralProperty(System.String)">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- <param name="inputName"></param>
- </member>
- <member name="M:UnityEngine.ProceduralMaterial.IsProceduralPropertyCached(System.String)">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- <param name="inputName"></param>
- </member>
- <member name="M:UnityEngine.ProceduralMaterial.IsProceduralPropertyVisible(System.String)">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- <param name="inputName"></param>
- </member>
- <member name="M:UnityEngine.ProceduralMaterial.RebuildTextures">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- </member>
- <member name="M:UnityEngine.ProceduralMaterial.RebuildTexturesImmediately">
- <summary>
- <para>Triggers an immediate (synchronous) rebuild of this ProceduralMaterial's dirty textures.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.ProceduralMaterial.SetProceduralBoolean(System.String,System.Boolean)">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- <param name="inputName"></param>
- <param name="value"></param>
- </member>
- <member name="M:UnityEngine.ProceduralMaterial.SetProceduralColor(System.String,UnityEngine.Color)">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- <param name="inputName"></param>
- <param name="value"></param>
- </member>
- <member name="M:UnityEngine.ProceduralMaterial.SetProceduralEnum(System.String,System.Int32)">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- <param name="inputName"></param>
- <param name="value"></param>
- </member>
- <member name="M:UnityEngine.ProceduralMaterial.SetProceduralFloat(System.String,System.Single)">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- <param name="inputName"></param>
- <param name="value"></param>
- </member>
- <member name="M:UnityEngine.ProceduralMaterial.SetProceduralString(System.String,System.String)">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- <param name="inputName"></param>
- <param name="value"></param>
- </member>
- <member name="M:UnityEngine.ProceduralMaterial.SetProceduralTexture(System.String,UnityEngine.Texture2D)">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- <param name="inputName"></param>
- <param name="value"></param>
- </member>
- <member name="M:UnityEngine.ProceduralMaterial.SetProceduralVector(System.String,UnityEngine.Vector4)">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- <param name="inputName"></param>
- <param name="value"></param>
- </member>
- <member name="M:UnityEngine.ProceduralMaterial.StopRebuilds">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ProceduralOutputType">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ProceduralOutputType.AmbientOcclusion">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ProceduralOutputType.DetailMask">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ProceduralOutputType.Diffuse">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ProceduralOutputType.Emissive">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ProceduralOutputType.Height">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ProceduralOutputType.Metallic">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ProceduralOutputType.Normal">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ProceduralOutputType.Opacity">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ProceduralOutputType.Roughness">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ProceduralOutputType.Smoothness">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ProceduralOutputType.Specular">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ProceduralOutputType.Unknown">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ProceduralProcessorUsage">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ProceduralProcessorUsage.All">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ProceduralProcessorUsage.Half">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ProceduralProcessorUsage.One">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ProceduralProcessorUsage.Unsupported">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ProceduralPropertyDescription">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ProceduralPropertyDescription.componentLabels">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ProceduralPropertyDescription.enumOptions">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ProceduralPropertyDescription.group">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ProceduralPropertyDescription.hasRange">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ProceduralPropertyDescription.label">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ProceduralPropertyDescription.maximum">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ProceduralPropertyDescription.minimum">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ProceduralPropertyDescription.name">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ProceduralPropertyDescription.step">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ProceduralPropertyDescription.type">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ProceduralPropertyType">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ProceduralPropertyType.Boolean">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ProceduralPropertyType.Color3">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ProceduralPropertyType.Color4">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ProceduralPropertyType.Enum">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ProceduralPropertyType.Float">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ProceduralPropertyType.String">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ProceduralPropertyType.Texture">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ProceduralPropertyType.Vector2">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ProceduralPropertyType.Vector3">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- </member>
- <member name="F:UnityEngine.ProceduralPropertyType.Vector4">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- </member>
- <member name="T:UnityEngine.ProceduralTexture">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ProceduralTexture.format">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- </member>
- <member name="P:UnityEngine.ProceduralTexture.hasAlpha">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- </member>
- <member name="M:UnityEngine.ProceduralTexture.GetPixels32(System.Int32,System.Int32,System.Int32,System.Int32)">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- <param name="x"></param>
- <param name="y"></param>
- <param name="blockWidth"></param>
- <param name="blockHeight"></param>
- </member>
- <member name="M:UnityEngine.ProceduralTexture.GetProceduralOutputType">
- <summary>
- <para>Deprecated feature, no longer available</para>
- </summary>
- </member>
- </members>
-</doc>
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.TLSModule.dll b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.TLSModule.dll
deleted file mode 100644
index 491091f..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.TLSModule.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.TLSModule.xml b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.TLSModule.xml
deleted file mode 100644
index 0ce9028..0000000
--- a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.TLSModule.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
-<doc>
- <members>
- <assembly>
- <name>UnityEngine.TLSModule</name>
- </assembly>
- </members>
-</doc>
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.TerrainModule.dll b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.TerrainModule.dll
deleted file mode 100644
index 2dd32b2..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.TerrainModule.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.TerrainModule.xml b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.TerrainModule.xml
deleted file mode 100644
index eb5be27..0000000
--- a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.TerrainModule.xml
+++ /dev/null
@@ -1,824 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
-<doc>
- <members>
- <assembly>
- <name>UnityEngine.TerrainModule</name>
- </assembly>
- <member name="T:UnityEngine.DetailPrototype">
- <summary>
- <para>Detail prototype used by the Terrain GameObject.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.DetailPrototype.bendFactor">
- <summary>
- <para>Bend factor of the detailPrototype.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.DetailPrototype.dryColor">
- <summary>
- <para>Color when the DetailPrototypes are "dry".</para>
- </summary>
- </member>
- <member name="P:UnityEngine.DetailPrototype.healthyColor">
- <summary>
- <para>Color when the DetailPrototypes are "healthy".</para>
- </summary>
- </member>
- <member name="P:UnityEngine.DetailPrototype.maxHeight">
- <summary>
- <para>Maximum height of the grass billboards (if render mode is GrassBillboard).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.DetailPrototype.maxWidth">
- <summary>
- <para>Maximum width of the grass billboards (if render mode is GrassBillboard).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.DetailPrototype.minHeight">
- <summary>
- <para>Minimum height of the grass billboards (if render mode is GrassBillboard).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.DetailPrototype.minWidth">
- <summary>
- <para>Minimum width of the grass billboards (if render mode is GrassBillboard).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.DetailPrototype.noiseSpread">
- <summary>
- <para>How spread out is the noise for the DetailPrototype.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.DetailPrototype.prototype">
- <summary>
- <para>GameObject used by the DetailPrototype.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.DetailPrototype.prototypeTexture">
- <summary>
- <para>Texture used by the DetailPrototype.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.DetailPrototype.renderMode">
- <summary>
- <para>Render mode for the DetailPrototype.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.DetailRenderMode">
- <summary>
- <para>Render mode for detail prototypes.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.DetailRenderMode.Grass">
- <summary>
- <para>The detail prototype will use the grass shader.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.DetailRenderMode.GrassBillboard">
- <summary>
- <para>The detail prototype will be rendered as billboards that are always facing the camera.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.DetailRenderMode.VertexLit">
- <summary>
- <para>Will show the prototype using diffuse shading.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.PatchExtents">
- <summary>
- <para>Structure containing minimum and maximum terrain patch height values.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.PatchExtents.max">
- <summary>
- <para>Maximum height of a terrain patch.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.PatchExtents.min">
- <summary>
- <para>Minimum height of a terrain patch.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.SplatPrototype">
- <summary>
- <para>A Splat prototype is just a texture that is used by the TerrainData.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SplatPrototype.metallic">
- <summary>
- <para>The metallic value of the splat layer.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SplatPrototype.normalMap">
- <summary>
- <para>Normal map of the splat applied to the Terrain.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SplatPrototype.smoothness">
- <summary>
- <para>The smoothness value of the splat layer when the main texture has no alpha channel.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SplatPrototype.texture">
- <summary>
- <para>Texture of the splat applied to the Terrain.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SplatPrototype.tileOffset">
- <summary>
- <para>Offset of the tile texture of the SplatPrototype.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.SplatPrototype.tileSize">
- <summary>
- <para>Size of the tile used in the texture of the SplatPrototype.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Terrain">
- <summary>
- <para>The Terrain component renders the terrain.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Terrain.activeTerrain">
- <summary>
- <para>The active terrain. This is a convenience function to get to the main terrain in the scene.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Terrain.activeTerrains">
- <summary>
- <para>The active terrains in the scene.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Terrain.basemapDistance">
- <summary>
- <para>Heightmap patches beyond basemap distance will use a precomputed low res basemap.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Terrain.castShadows">
- <summary>
- <para>Should terrain cast shadows?.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Terrain.collectDetailPatches">
- <summary>
- <para>Collect detail patches from memory.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Terrain.detailObjectDensity">
- <summary>
- <para>Density of detail objects.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Terrain.detailObjectDistance">
- <summary>
- <para>Detail objects will be displayed up to this distance.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Terrain.drawHeightmap">
- <summary>
- <para>Specify if terrain heightmap should be drawn.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Terrain.drawTreesAndFoliage">
- <summary>
- <para>Specify if terrain trees and details should be drawn.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Terrain.editorRenderFlags">
- <summary>
- <para>Controls what part of the terrain should be rendered.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Terrain.freeUnusedRenderingResources">
- <summary>
- <para>Whether some per-camera rendering resources for the terrain should be freed after not being used for some frames.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Terrain.heightmapMaximumLOD">
- <summary>
- <para>Lets you essentially lower the heightmap resolution used for rendering.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Terrain.heightmapPixelError">
- <summary>
- <para>An approximation of how many pixels the terrain will pop in the worst case when switching lod.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Terrain.legacyShininess">
- <summary>
- <para>The shininess value of the terrain.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Terrain.legacySpecular">
- <summary>
- <para>The specular color of the terrain.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Terrain.lightmapIndex">
- <summary>
- <para>The index of the baked lightmap applied to this terrain.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Terrain.lightmapScaleOffset">
- <summary>
- <para>The UV scale &amp; offset used for a baked lightmap.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Terrain.materialTemplate">
- <summary>
- <para>The custom material used to render the terrain.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Terrain.materialType">
- <summary>
- <para>The type of the material used to render the terrain. Could be one of the built-in types or custom. See Terrain.MaterialType.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Terrain.patchBoundsMultiplier">
- <summary>
- <para>Set the terrain bounding box scale.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Terrain.preserveTreePrototypeLayers">
- <summary>
- <para>Allows you to specify how Unity chooses the for tree instances.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Terrain.realtimeLightmapIndex">
- <summary>
- <para>The index of the realtime lightmap applied to this terrain.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Terrain.realtimeLightmapScaleOffset">
- <summary>
- <para>The UV scale &amp; offset used for a realtime lightmap.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Terrain.reflectionProbeUsage">
- <summary>
- <para>How reflection probes are used for terrain. See Rendering.ReflectionProbeUsage.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Terrain.terrainData">
- <summary>
- <para>The Terrain Data that stores heightmaps, terrain textures, detail meshes and trees.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Terrain.treeBillboardDistance">
- <summary>
- <para>Distance from the camera where trees will be rendered as billboards only.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Terrain.treeCrossFadeLength">
- <summary>
- <para>Total distance delta that trees will use to transition from billboard orientation to mesh orientation.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Terrain.treeDistance">
- <summary>
- <para>The maximum distance at which trees are rendered.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Terrain.treeLODBiasMultiplier">
- <summary>
- <para>The multiplier to the current LOD bias used for rendering LOD trees (i.e. SpeedTree trees).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Terrain.treeMaximumFullLODCount">
- <summary>
- <para>Maximum number of trees rendered at full LOD.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Terrain.AddTreeInstance(UnityEngine.TreeInstance)">
- <summary>
- <para>Adds a tree instance to the terrain.</para>
- </summary>
- <param name="instance"></param>
- </member>
- <member name="M:UnityEngine.Terrain.ApplyDelayedHeightmapModification">
- <summary>
- <para>Update the terrain's LOD and vegetation information after making changes with TerrainData.SetHeightsDelayLOD.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Terrain.CreateTerrainGameObject(UnityEngine.TerrainData)">
- <summary>
- <para>Creates a Terrain including collider from TerrainData.</para>
- </summary>
- <param name="assignTerrain"></param>
- </member>
- <member name="M:UnityEngine.Terrain.Flush">
- <summary>
- <para>Flushes any change done in the terrain so it takes effect.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Terrain.GetClosestReflectionProbes(System.Collections.Generic.List`1&lt;UnityEngine.Rendering.ReflectionProbeBlendInfo&gt;)">
- <summary>
- <para>Fills the list with reflection probes whose AABB intersects with terrain's AABB. Their weights are also provided. Weight shows how much influence the probe has on the terrain, and is used when the blending between multiple reflection probes occurs.</para>
- </summary>
- <param name="result">[in / out] A list to hold the returned reflection probes and their weights. See ReflectionProbeBlendInfo.</param>
- </member>
- <member name="M:UnityEngine.Terrain.GetPosition">
- <summary>
- <para>Get the position of the terrain.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Terrain.GetSplatMaterialPropertyBlock(UnityEngine.MaterialPropertyBlock)">
- <summary>
- <para>Get the previously set splat material properties by copying to the dest MaterialPropertyBlock object.</para>
- </summary>
- <param name="dest"></param>
- </member>
- <member name="T:UnityEngine.Terrain.MaterialType">
- <summary>
- <para>The type of the material used to render a terrain object. Could be one of the built-in types or custom.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Terrain.MaterialType.BuiltInLegacyDiffuse">
- <summary>
- <para>A built-in material that uses the legacy Lambert (diffuse) lighting model and has optional normal map support.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Terrain.MaterialType.BuiltInLegacySpecular">
- <summary>
- <para>A built-in material that uses the legacy BlinnPhong (specular) lighting model and has optional normal map support.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Terrain.MaterialType.BuiltInStandard">
- <summary>
- <para>A built-in material that uses the standard physically-based lighting model. Inputs supported: smoothness, metallic / specular, normal.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Terrain.MaterialType.Custom">
- <summary>
- <para>Use a custom material given by Terrain.materialTemplate.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Terrain.SampleHeight(UnityEngine.Vector3)">
- <summary>
- <para>Samples the height at the given position defined in world space, relative to the terrain space.</para>
- </summary>
- <param name="worldPosition"></param>
- </member>
- <member name="M:UnityEngine.Terrain.SetNeighbors(UnityEngine.Terrain,UnityEngine.Terrain,UnityEngine.Terrain,UnityEngine.Terrain)">
- <summary>
- <para>Lets you setup the connection between neighboring Terrains.</para>
- </summary>
- <param name="left"></param>
- <param name="top"></param>
- <param name="right"></param>
- <param name="bottom"></param>
- </member>
- <member name="M:UnityEngine.Terrain.SetSplatMaterialPropertyBlock(UnityEngine.MaterialPropertyBlock)">
- <summary>
- <para>Set the additional material properties when rendering the terrain heightmap using the splat material.</para>
- </summary>
- <param name="properties"></param>
- </member>
- <member name="T:UnityEngine.TerrainChangedFlags">
- <summary>
- <para>Indicate the types of changes to the terrain in OnTerrainChanged callback.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TerrainChangedFlags.DelayedHeightmapUpdate">
- <summary>
- <para>Indicates a change to the heightmap data without computing LOD.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TerrainChangedFlags.FlushEverythingImmediately">
- <summary>
- <para>Indicates that a change was made to the terrain that was so significant that the internal rendering data need to be flushed and recreated.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TerrainChangedFlags.Heightmap">
- <summary>
- <para>Indicates a change to the heightmap data.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TerrainChangedFlags.RemoveDirtyDetailsImmediately">
- <summary>
- <para>Indicates a change to the detail data.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TerrainChangedFlags.TreeInstances">
- <summary>
- <para>Indicates a change to the tree data.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TerrainChangedFlags.WillBeDestroyed">
- <summary>
- <para>Indicates that the TerrainData object is about to be destroyed.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.TerrainData">
- <summary>
- <para>The TerrainData class stores heightmaps, detail mesh positions, tree instances, and terrain texture alpha maps.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TerrainData.alphamapHeight">
- <summary>
- <para>Height of the alpha map.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TerrainData.alphamapLayers">
- <summary>
- <para>Number of alpha map layers.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TerrainData.alphamapResolution">
- <summary>
- <para>Resolution of the alpha map.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TerrainData.alphamapTextures">
- <summary>
- <para>Alpha map textures used by the Terrain. Used by Terrain Inspector for undo.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TerrainData.alphamapWidth">
- <summary>
- <para>Width of the alpha map.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TerrainData.baseMapResolution">
- <summary>
- <para>Resolution of the base map used for rendering far patches on the terrain.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TerrainData.bounds">
- <summary>
- <para>The local bounding box of the TerrainData object.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TerrainData.detailHeight">
- <summary>
- <para>Detail height of the TerrainData.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TerrainData.detailPrototypes">
- <summary>
- <para>Contains the detail texture/meshes that the terrain has.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TerrainData.detailResolution">
- <summary>
- <para>Detail Resolution of the TerrainData.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TerrainData.detailWidth">
- <summary>
- <para>Detail width of the TerrainData.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TerrainData.heightmapHeight">
- <summary>
- <para>Height of the terrain in samples (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TerrainData.heightmapResolution">
- <summary>
- <para>Resolution of the heightmap.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TerrainData.heightmapScale">
- <summary>
- <para>The size of each heightmap sample.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TerrainData.heightmapWidth">
- <summary>
- <para>Width of the terrain in samples (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TerrainData.size">
- <summary>
- <para>The total size in world units of the terrain.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TerrainData.splatPrototypes">
- <summary>
- <para>Splat texture used by the terrain.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TerrainData.thickness">
- <summary>
- <para>The thickness of the terrain used for collision detection.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TerrainData.treeInstanceCount">
- <summary>
- <para>Returns the number of tree instances.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TerrainData.treeInstances">
- <summary>
- <para>Contains the current trees placed in the terrain.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TerrainData.treePrototypes">
- <summary>
- <para>The list of tree prototypes this are the ones available in the inspector.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TerrainData.wavingGrassAmount">
- <summary>
- <para>Amount of waving grass in the terrain.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TerrainData.wavingGrassSpeed">
- <summary>
- <para>Speed of the waving grass.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TerrainData.wavingGrassStrength">
- <summary>
- <para>Strength of the waving grass in the terrain.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TerrainData.wavingGrassTint">
- <summary>
- <para>Color of the waving grass that the terrain has.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.TerrainData.GetAlphamaps(System.Int32,System.Int32,System.Int32,System.Int32)">
- <summary>
- <para>Returns the alpha map at a position x, y given a width and height.</para>
- </summary>
- <param name="x">The x offset to read from.</param>
- <param name="y">The y offset to read from.</param>
- <param name="width">The width of the alpha map area to read.</param>
- <param name="height">The height of the alpha map area to read.</param>
- <returns>
- <para>A 3D array of floats, where the 3rd dimension represents the mixing weight of each splatmap at each x,y coordinate.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.TerrainData.GetDetailLayer(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
- <summary>
- <para>Returns a 2D array of the detail object density in the specific location.</para>
- </summary>
- <param name="xBase"></param>
- <param name="yBase"></param>
- <param name="width"></param>
- <param name="height"></param>
- <param name="layer"></param>
- </member>
- <member name="M:UnityEngine.TerrainData.GetHeight(System.Int32,System.Int32)">
- <summary>
- <para>Gets the height at a certain point x,y.</para>
- </summary>
- <param name="x"></param>
- <param name="y"></param>
- </member>
- <member name="M:UnityEngine.TerrainData.GetHeights(System.Int32,System.Int32,System.Int32,System.Int32)">
- <summary>
- <para>Get an array of heightmap samples.</para>
- </summary>
- <param name="xBase">First x index of heightmap samples to retrieve.</param>
- <param name="yBase">First y index of heightmap samples to retrieve.</param>
- <param name="width">Number of samples to retrieve along the heightmap's x axis.</param>
- <param name="height">Number of samples to retrieve along the heightmap's y axis.</param>
- </member>
- <member name="M:UnityEngine.TerrainData.GetInterpolatedHeight(System.Single,System.Single)">
- <summary>
- <para>Gets an interpolated height at a point x,y.</para>
- </summary>
- <param name="x"></param>
- <param name="y"></param>
- </member>
- <member name="M:UnityEngine.TerrainData.GetInterpolatedNormal(System.Single,System.Single)">
- <summary>
- <para>Get an interpolated normal at a given location.</para>
- </summary>
- <param name="x"></param>
- <param name="y"></param>
- </member>
- <member name="M:UnityEngine.TerrainData.GetMaximumHeightError">
- <summary>
- <para>Returns an array of tesselation maximum height error values per renderable terrain patch. The returned array can be modified and passed to OverrideMaximumHeightError.</para>
- </summary>
- <returns>
- <para>Float array of maximum height error values.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.TerrainData.GetPatchMinMaxHeights">
- <summary>
- <para>Returns an array of min max height values for all the renderable patches in a terrain. The returned array can be modified and then passed to OverrideMinMaxPatchHeights.</para>
- </summary>
- <returns>
- <para>Minimum and maximum height values for each patch.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.TerrainData.GetSteepness(System.Single,System.Single)">
- <summary>
- <para>Gets the gradient of the terrain at point (x,y).</para>
- </summary>
- <param name="x"></param>
- <param name="y"></param>
- </member>
- <member name="M:UnityEngine.TerrainData.GetSupportedLayers(System.Int32,System.Int32,System.Int32,System.Int32)">
- <summary>
- <para>Returns an array of all supported detail layer indices in the area.</para>
- </summary>
- <param name="xBase"></param>
- <param name="yBase"></param>
- <param name="totalWidth"></param>
- <param name="totalHeight"></param>
- </member>
- <member name="M:UnityEngine.TerrainData.GetTreeInstance(System.Int32)">
- <summary>
- <para>Get the tree instance at the specified index. It is used as a faster version of treeInstances[index] as this function doesn't create the entire tree instances array.</para>
- </summary>
- <param name="index">The index of the tree instance.</param>
- </member>
- <member name="M:UnityEngine.TerrainData.OverrideMaximumHeightError(System.Single[])">
- <summary>
- <para>Override the maximum tessellation height error with user provided values. Note that the overriden values get reset when the terrain resolution is changed and stays unchanged when the terrain heightmap is painted or changed via script.</para>
- </summary>
- <param name="maxError">Provided maximum height error values.</param>
- </member>
- <member name="M:UnityEngine.TerrainData.OverrideMinMaxPatchHeights(UnityEngine.PatchExtents[])">
- <summary>
- <para>Override the minimum and maximum patch heights for every renderable terrain patch. Note that the overriden values get reset when the terrain resolution is changed and stays unchanged when the terrain heightmap is painted or changed via script.</para>
- </summary>
- <param name="minMaxHeights">Array of minimum and maximum terrain patch height values.</param>
- </member>
- <member name="M:UnityEngine.TerrainData.RefreshPrototypes">
- <summary>
- <para>Reloads all the values of the available prototypes (ie, detail mesh assets) in the TerrainData Object.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.TerrainData.SetAlphamaps(System.Int32,System.Int32,System.Single[,,])">
- <summary>
- <para>Assign all splat values in the given map area.</para>
- </summary>
- <param name="x"></param>
- <param name="y"></param>
- <param name="map"></param>
- </member>
- <member name="M:UnityEngine.TerrainData.SetDetailLayer(System.Int32,System.Int32,System.Int32,System.Int32[,])">
- <summary>
- <para>Sets the detail layer density map.</para>
- </summary>
- <param name="xBase"></param>
- <param name="yBase"></param>
- <param name="layer"></param>
- <param name="details"></param>
- </member>
- <member name="M:UnityEngine.TerrainData.SetDetailResolution(System.Int32,System.Int32)">
- <summary>
- <para>Set the resolution of the detail map.</para>
- </summary>
- <param name="detailResolution">Specifies the number of pixels in the detail resolution map. A larger detailResolution, leads to more accurate detail object painting.</param>
- <param name="resolutionPerPatch">Specifies the size in pixels of each individually rendered detail patch. A larger number reduces draw calls, but might increase triangle count since detail patches are culled on a per batch basis. A recommended value is 16. If you use a very large detail object distance and your grass is very sparse, it makes sense to increase the value.</param>
- </member>
- <member name="M:UnityEngine.TerrainData.SetHeights(System.Int32,System.Int32,System.Single[,])">
- <summary>
- <para>Set an array of heightmap samples.</para>
- </summary>
- <param name="xBase">First x index of heightmap samples to set.</param>
- <param name="yBase">First y index of heightmap samples to set.</param>
- <param name="heights">Array of heightmap samples to set (values range from 0 to 1, array indexed as [y,x]).</param>
- </member>
- <member name="M:UnityEngine.TerrainData.SetHeightsDelayLOD(System.Int32,System.Int32,System.Single[,])">
- <summary>
- <para>Set an array of heightmap samples.</para>
- </summary>
- <param name="xBase">First x index of heightmap samples to set.</param>
- <param name="yBase">First y index of heightmap samples to set.</param>
- <param name="heights">Array of heightmap samples to set (values range from 0 to 1, array indexed as [y,x]).</param>
- </member>
- <member name="M:UnityEngine.TerrainData.SetTreeInstance(System.Int32,UnityEngine.TreeInstance)">
- <summary>
- <para>Set the tree instance with new parameters at the specified index. However, TreeInstance.prototypeIndex and TreeInstance.position can not be changed otherwise an ArgumentException will be thrown.</para>
- </summary>
- <param name="index">The index of the tree instance.</param>
- <param name="instance">The new TreeInstance value.</param>
- </member>
- <member name="T:UnityEngine.TerrainExtensions">
- <summary>
- <para>Extension methods to the Terrain class, used only for the UpdateGIMaterials method used by the Global Illumination System.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.TerrainExtensions.UpdateGIMaterials(UnityEngine.Terrain)">
- <summary>
- <para>Schedules an update of the albedo and emissive Textures of a system that contains the Terrain.</para>
- </summary>
- <param name="terrain"></param>
- <param name="x"></param>
- <param name="y"></param>
- <param name="width"></param>
- <param name="height"></param>
- </member>
- <member name="M:UnityEngine.TerrainExtensions.UpdateGIMaterials(UnityEngine.Terrain,System.Int32,System.Int32,System.Int32,System.Int32)">
- <summary>
- <para>Schedules an update of the albedo and emissive Textures of a system that contains the Terrain.</para>
- </summary>
- <param name="terrain"></param>
- <param name="x"></param>
- <param name="y"></param>
- <param name="width"></param>
- <param name="height"></param>
- </member>
- <member name="T:UnityEngine.TerrainRenderFlags">
- <summary>
- <para>Enum provding terrain rendering options.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TerrainRenderFlags.All">
- <summary>
- <para>Render all options.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TerrainRenderFlags.Details">
- <summary>
- <para>Render terrain details.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TerrainRenderFlags.Heightmap">
- <summary>
- <para>Render heightmap.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TerrainRenderFlags.Trees">
- <summary>
- <para>Render trees.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Tree">
- <summary>
- <para>Tree Component for the tree creator.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Tree.data">
- <summary>
- <para>Data asociated to the Tree.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Tree.hasSpeedTreeWind">
- <summary>
- <para>Tells if there is wind data exported from SpeedTree are saved on this component.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.TreeInstance">
- <summary>
- <para>Contains information about a tree placed in the Terrain game object.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TreeInstance.color">
- <summary>
- <para>Color of this instance.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TreeInstance.heightScale">
- <summary>
- <para>Height scale of this instance (compared to the prototype's size).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TreeInstance.lightmapColor">
- <summary>
- <para>Lightmap color calculated for this instance.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TreeInstance.position">
- <summary>
- <para>Position of the tree.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TreeInstance.prototypeIndex">
- <summary>
- <para>Index of this instance in the TerrainData.treePrototypes array.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TreeInstance.rotation">
- <summary>
- <para>Read-only.
-
-Rotation of the tree on X-Z plane (in radians).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TreeInstance.widthScale">
- <summary>
- <para>Width scale of this instance (compared to the prototype's size).</para>
- </summary>
- </member>
- <member name="T:UnityEngine.TreePrototype">
- <summary>
- <para>Simple class that contains a pointer to a tree prototype.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TreePrototype.bendFactor">
- <summary>
- <para>Bend factor of the tree prototype.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TreePrototype.prefab">
- <summary>
- <para>Retrieves the actual GameObject used by the tree.</para>
- </summary>
- </member>
- <member name="A:UnityEngine.TerrainModule">
- <summary>
- <para>The Terrain module implements Unity's Terrain rendering engine available through the Terrain component.</para>
- </summary>
- </member>
- </members>
-</doc>
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.TerrainPhysicsModule.dll b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.TerrainPhysicsModule.dll
deleted file mode 100644
index 424f3ea..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.TerrainPhysicsModule.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.TerrainPhysicsModule.xml b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.TerrainPhysicsModule.xml
deleted file mode 100644
index e2892dc..0000000
--- a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.TerrainPhysicsModule.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
-<doc>
- <members>
- <assembly>
- <name>UnityEngine.TerrainPhysicsModule</name>
- </assembly>
- <member name="T:UnityEngine.TerrainCollider">
- <summary>
- <para>A heightmap based collider.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TerrainCollider.terrainData">
- <summary>
- <para>The terrain that stores the heightmap.</para>
- </summary>
- </member>
- <member name="A:UnityEngine.TerrainPhysicsModule">
- <summary>
- <para>The TerrainPhysics module connects the Terrain and Physics modules by implementing the TerrainCollider component.</para>
- </summary>
- </member>
- </members>
-</doc>
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.TextRenderingModule.dll b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.TextRenderingModule.dll
deleted file mode 100644
index e22a241..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.TextRenderingModule.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.TextRenderingModule.xml b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.TextRenderingModule.xml
deleted file mode 100644
index 2ebe25c..0000000
--- a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.TextRenderingModule.xml
+++ /dev/null
@@ -1,833 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
-<doc>
- <members>
- <assembly>
- <name>UnityEngine.TextRenderingModule</name>
- </assembly>
- <member name="T:UnityEngine.CharacterInfo">
- <summary>
- <para>Specification for how to render a character from the font texture. See Font.characterInfo.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CharacterInfo.advance">
- <summary>
- <para>The horizontal distance, rounded to the nearest integer, from the origin of this character to the origin of the next character.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CharacterInfo.bearing">
- <summary>
- <para>The horizontal distance from the origin of this glyph to the begining of the glyph image.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.CharacterInfo.flipped">
- <summary>
- <para>Is the character flipped?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CharacterInfo.glyphHeight">
- <summary>
- <para>The height of the glyph image.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CharacterInfo.glyphWidth">
- <summary>
- <para>The width of the glyph image.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.CharacterInfo.index">
- <summary>
- <para>Unicode value of the character.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CharacterInfo.maxX">
- <summary>
- <para>The maximum extend of the glyph image in the x-axis.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CharacterInfo.maxY">
- <summary>
- <para>The maximum extend of the glyph image in the y-axis.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CharacterInfo.minX">
- <summary>
- <para>The minium extend of the glyph image in the x-axis.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CharacterInfo.minY">
- <summary>
- <para>The minimum extend of the glyph image in the y-axis.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.CharacterInfo.size">
- <summary>
- <para>The size of the character or 0 if it is the default font size.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.CharacterInfo.style">
- <summary>
- <para>The style of the character.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.CharacterInfo.uv">
- <summary>
- <para>UV coordinates for the character in the texture.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CharacterInfo.uvBottomLeft">
- <summary>
- <para>The uv coordinate matching the bottom left of the glyph image in the font texture.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CharacterInfo.uvBottomRight">
- <summary>
- <para>The uv coordinate matching the bottom right of the glyph image in the font texture.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CharacterInfo.uvTopLeft">
- <summary>
- <para>The uv coordinate matching the top left of the glyph image in the font texture.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CharacterInfo.uvTopRight">
- <summary>
- <para>The uv coordinate matching the top right of the glyph image in the font texture.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.CharacterInfo.vert">
- <summary>
- <para>Screen coordinates for the character in generated text meshes.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.CharacterInfo.width">
- <summary>
- <para>How far to advance between the beginning of this charcater and the next.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Font">
- <summary>
- <para>Script interface for.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Font.ascent">
- <summary>
- <para>The ascent of the font.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Font.characterInfo">
- <summary>
- <para>Access an array of all characters contained in the font texture.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Font.dynamic">
- <summary>
- <para>Is the font a dynamic font.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Font.fontSize">
- <summary>
- <para>The default size of the font.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Font.lineHeight">
- <summary>
- <para>The line height of the font.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Font.material">
- <summary>
- <para>The material used for the font display.</para>
- </summary>
- </member>
- <member name="?:UnityEngine.Font.textureRebuilt(System.Action`1&lt;UnityEngine.Font&gt;)">
- <summary>
- <para>Set a function to be called when the dynamic font texture is rebuilt.</para>
- </summary>
- <param name="value"></param>
- </member>
- <member name="M:UnityEngine.Font.CreateDynamicFontFromOSFont(System.String,System.Int32)">
- <summary>
- <para>Creates a Font object which lets you render a font installed on the user machine.</para>
- </summary>
- <param name="fontname">The name of the OS font to use for this font object.</param>
- <param name="size">The default character size of the generated font.</param>
- <param name="fontnames">Am array of names of OS fonts to use for this font object. When rendering characters using this font object, the first font which is installed on the machine, which contains the requested character will be used.</param>
- <returns>
- <para>The generate Font object.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Font.CreateDynamicFontFromOSFont(System.String[],System.Int32)">
- <summary>
- <para>Creates a Font object which lets you render a font installed on the user machine.</para>
- </summary>
- <param name="fontname">The name of the OS font to use for this font object.</param>
- <param name="size">The default character size of the generated font.</param>
- <param name="fontnames">Am array of names of OS fonts to use for this font object. When rendering characters using this font object, the first font which is installed on the machine, which contains the requested character will be used.</param>
- <returns>
- <para>The generate Font object.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Font.#ctor">
- <summary>
- <para>Create a new Font.</para>
- </summary>
- <param name="name">The name of the created Font object.</param>
- </member>
- <member name="M:UnityEngine.Font.#ctor(System.String)">
- <summary>
- <para>Create a new Font.</para>
- </summary>
- <param name="name">The name of the created Font object.</param>
- </member>
- <member name="M:UnityEngine.Font.GetCharacterInfo(System.Char,UnityEngine.CharacterInfo&amp;)">
- <summary>
- <para>Get rendering info for a specific character.</para>
- </summary>
- <param name="ch">The character you need rendering information for.</param>
- <param name="info">Returns the CharacterInfo struct with the rendering information for the character (if available).</param>
- <param name="size">The size of the character (default value of zero will use font default size).</param>
- <param name="style">The style of the character.</param>
- </member>
- <member name="M:UnityEngine.Font.GetCharacterInfo(System.Char,UnityEngine.CharacterInfo&amp;,System.Int32)">
- <summary>
- <para>Get rendering info for a specific character.</para>
- </summary>
- <param name="ch">The character you need rendering information for.</param>
- <param name="info">Returns the CharacterInfo struct with the rendering information for the character (if available).</param>
- <param name="size">The size of the character (default value of zero will use font default size).</param>
- <param name="style">The style of the character.</param>
- </member>
- <member name="M:UnityEngine.Font.GetCharacterInfo(System.Char,UnityEngine.CharacterInfo&amp;,System.Int32,UnityEngine.FontStyle)">
- <summary>
- <para>Get rendering info for a specific character.</para>
- </summary>
- <param name="ch">The character you need rendering information for.</param>
- <param name="info">Returns the CharacterInfo struct with the rendering information for the character (if available).</param>
- <param name="size">The size of the character (default value of zero will use font default size).</param>
- <param name="style">The style of the character.</param>
- </member>
- <member name="M:UnityEngine.Font.GetMaxVertsForString(System.String)">
- <summary>
- <para>Returns the maximum number of verts that the text generator may return for a given string.</para>
- </summary>
- <param name="str">Input string.</param>
- </member>
- <member name="M:UnityEngine.Font.GetOSInstalledFontNames">
- <summary>
- <para>Get names of fonts installed on the machine.</para>
- </summary>
- <returns>
- <para>An array of the names of all fonts installed on the machine.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Font.HasCharacter(System.Char)">
- <summary>
- <para>Does this font have a specific character?</para>
- </summary>
- <param name="c">The character to check for.</param>
- <returns>
- <para>Whether or not the font has the character specified.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Font.RequestCharactersInTexture(System.String,System.Int32,UnityEngine.FontStyle)">
- <summary>
- <para>Request characters to be added to the font texture (dynamic fonts only).</para>
- </summary>
- <param name="characters">The characters which are needed to be in the font texture.</param>
- <param name="size">The size of the requested characters (the default value of zero will use the font's default size).</param>
- <param name="style">The style of the requested characters.</param>
- </member>
- <member name="T:UnityEngine.FontStyle">
- <summary>
- <para>Font Style applied to GUI Texts, Text Meshes or GUIStyles.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.FontStyle.Bold">
- <summary>
- <para>Bold style applied to your texts.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.FontStyle.BoldAndItalic">
- <summary>
- <para>Bold and Italic styles applied to your texts.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.FontStyle.Italic">
- <summary>
- <para>Italic style applied to your texts.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.FontStyle.Normal">
- <summary>
- <para>No special style is applied.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.GUIText">
- <summary>
- <para>A text string displayed in a GUI.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUIText.alignment">
- <summary>
- <para>The alignment of the text.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUIText.anchor">
- <summary>
- <para>The anchor of the text.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUIText.color">
- <summary>
- <para>The color used to render the text.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUIText.font">
- <summary>
- <para>The font used for the text.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUIText.fontSize">
- <summary>
- <para>The font size to use (for dynamic fonts).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUIText.fontStyle">
- <summary>
- <para>The font style to use (for dynamic fonts).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUIText.lineSpacing">
- <summary>
- <para>The line spacing multiplier.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUIText.material">
- <summary>
- <para>The Material to use for rendering.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUIText.pixelOffset">
- <summary>
- <para>The pixel offset of the text.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUIText.richText">
- <summary>
- <para>Enable HTML-style tags for Text Formatting Markup.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUIText.tabSize">
- <summary>
- <para>The tab width multiplier.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.GUIText.text">
- <summary>
- <para>The text to display.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.HorizontalWrapMode">
- <summary>
- <para>Wrapping modes for text that reaches the horizontal boundary.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HorizontalWrapMode.Overflow">
- <summary>
- <para>Text can exceed the horizontal boundary.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.HorizontalWrapMode.Wrap">
- <summary>
- <para>Text will word-wrap when reaching the horizontal boundary.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.TextAlignment">
- <summary>
- <para>How multiline text should be aligned.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextAlignment.Center">
- <summary>
- <para>Text lines are centered.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextAlignment.Left">
- <summary>
- <para>Text lines are aligned on the left side.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextAlignment.Right">
- <summary>
- <para>Text lines are aligned on the right side.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.TextAnchor">
- <summary>
- <para>Where the anchor of the text is placed.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextAnchor.LowerCenter">
- <summary>
- <para>Text is anchored in lower side, centered horizontally.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextAnchor.LowerLeft">
- <summary>
- <para>Text is anchored in lower left corner.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextAnchor.LowerRight">
- <summary>
- <para>Text is anchored in lower right corner.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextAnchor.MiddleCenter">
- <summary>
- <para>Text is centered both horizontally and vertically.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextAnchor.MiddleLeft">
- <summary>
- <para>Text is anchored in left side, centered vertically.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextAnchor.MiddleRight">
- <summary>
- <para>Text is anchored in right side, centered vertically.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextAnchor.UpperCenter">
- <summary>
- <para>Text is anchored in upper side, centered horizontally.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextAnchor.UpperLeft">
- <summary>
- <para>Text is anchored in upper left corner.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextAnchor.UpperRight">
- <summary>
- <para>Text is anchored in upper right corner.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.TextGenerationSettings">
- <summary>
- <para>A struct that stores the settings for TextGeneration.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextGenerationSettings.alignByGeometry">
- <summary>
- <para>Use the extents of glyph geometry to perform horizontal alignment rather than glyph metrics.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextGenerationSettings.color">
- <summary>
- <para>The base color for the text generation.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextGenerationSettings.font">
- <summary>
- <para>Font to use for generation.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextGenerationSettings.fontSize">
- <summary>
- <para>Font size.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextGenerationSettings.fontStyle">
- <summary>
- <para>Font style.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextGenerationSettings.generateOutOfBounds">
- <summary>
- <para>Continue to generate characters even if the text runs out of bounds.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextGenerationSettings.generationExtents">
- <summary>
- <para>Extents that the generator will attempt to fit the text in.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextGenerationSettings.horizontalOverflow">
- <summary>
- <para>What happens to text when it reaches the horizontal generation bounds.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextGenerationSettings.lineSpacing">
- <summary>
- <para>The line spacing multiplier.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextGenerationSettings.pivot">
- <summary>
- <para>Generated vertices are offset by the pivot.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextGenerationSettings.resizeTextForBestFit">
- <summary>
- <para>Should the text be resized to fit the configured bounds?</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextGenerationSettings.resizeTextMaxSize">
- <summary>
- <para>Maximum size for resized text.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextGenerationSettings.resizeTextMinSize">
- <summary>
- <para>Minimum size for resized text.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextGenerationSettings.richText">
- <summary>
- <para>Allow rich text markup in generation.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextGenerationSettings.scaleFactor">
- <summary>
- <para>A scale factor for the text. This is useful if the Text is on a Canvas and the canvas is scaled.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextGenerationSettings.textAnchor">
- <summary>
- <para>How is the generated text anchored.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextGenerationSettings.updateBounds">
- <summary>
- <para>Should the text generator update the bounds from the generated text.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.TextGenerationSettings.verticalOverflow">
- <summary>
- <para>What happens to text when it reaches the bottom generation bounds.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.TextGenerator">
- <summary>
- <para>Class that can be used to generate text for rendering.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TextGenerator.characterCount">
- <summary>
- <para>The number of characters that have been generated.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TextGenerator.characterCountVisible">
- <summary>
- <para>The number of characters that have been generated and are included in the visible lines.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TextGenerator.characters">
- <summary>
- <para>Array of generated characters.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TextGenerator.fontSizeUsedForBestFit">
- <summary>
- <para>The size of the font that was found if using best fit mode.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TextGenerator.lineCount">
- <summary>
- <para>Number of text lines generated.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TextGenerator.lines">
- <summary>
- <para>Information about each generated text line.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TextGenerator.rectExtents">
- <summary>
- <para>Extents of the generated text in rect format.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TextGenerator.vertexCount">
- <summary>
- <para>Number of vertices generated.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TextGenerator.verts">
- <summary>
- <para>Array of generated vertices.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.TextGenerator.#ctor">
- <summary>
- <para>Create a TextGenerator.</para>
- </summary>
- <param name="initialCapacity"></param>
- </member>
- <member name="M:UnityEngine.TextGenerator.#ctor(System.Int32)">
- <summary>
- <para>Create a TextGenerator.</para>
- </summary>
- <param name="initialCapacity"></param>
- </member>
- <member name="M:UnityEngine.TextGenerator.GetCharacters(System.Collections.Generic.List`1&lt;UnityEngine.UICharInfo&gt;)">
- <summary>
- <para>Populate the given List with UICharInfo.</para>
- </summary>
- <param name="characters">List to populate.</param>
- </member>
- <member name="M:UnityEngine.TextGenerator.GetCharactersArray">
- <summary>
- <para>Returns the current UICharInfo.</para>
- </summary>
- <returns>
- <para>Character information.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.TextGenerator.GetLines(System.Collections.Generic.List`1&lt;UnityEngine.UILineInfo&gt;)">
- <summary>
- <para>Populate the given list with UILineInfo.</para>
- </summary>
- <param name="lines">List to populate.</param>
- </member>
- <member name="M:UnityEngine.TextGenerator.GetLinesArray">
- <summary>
- <para>Returns the current UILineInfo.</para>
- </summary>
- <returns>
- <para>Line information.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.TextGenerator.GetPreferredHeight(System.String,UnityEngine.TextGenerationSettings)">
- <summary>
- <para>Given a string and settings, returns the preferred height for a container that would hold this text.</para>
- </summary>
- <param name="str">Generation text.</param>
- <param name="settings">Settings for generation.</param>
- <returns>
- <para>Preferred height.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.TextGenerator.GetPreferredWidth(System.String,UnityEngine.TextGenerationSettings)">
- <summary>
- <para>Given a string and settings, returns the preferred width for a container that would hold this text.</para>
- </summary>
- <param name="str">Generation text.</param>
- <param name="settings">Settings for generation.</param>
- <returns>
- <para>Preferred width.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.TextGenerator.GetVertices(System.Collections.Generic.List`1&lt;UnityEngine.UIVertex&gt;)">
- <summary>
- <para>Populate the given list with generated Vertices.</para>
- </summary>
- <param name="vertices">List to populate.</param>
- </member>
- <member name="M:UnityEngine.TextGenerator.GetVerticesArray">
- <summary>
- <para>Returns the current UILineInfo.</para>
- </summary>
- <returns>
- <para>Vertices.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.TextGenerator.Invalidate">
- <summary>
- <para>Mark the text generator as invalid. This will force a full text generation the next time Populate is called.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.TextGenerator.Populate(System.String,UnityEngine.TextGenerationSettings)">
- <summary>
- <para>Will generate the vertices and other data for the given string with the given settings.</para>
- </summary>
- <param name="str">String to generate.</param>
- <param name="settings">Settings.</param>
- </member>
- <member name="M:UnityEngine.TextGenerator.PopulateWithErrors(System.String,UnityEngine.TextGenerationSettings,UnityEngine.GameObject)">
- <summary>
- <para>Will generate the vertices and other data for the given string with the given settings.</para>
- </summary>
- <param name="str">String to generate.</param>
- <param name="settings">Generation settings.</param>
- <param name="context">The object used as context of the error log message, if necessary.</param>
- <returns>
- <para>True if the generation is a success, false otherwise.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.TextMesh">
- <summary>
- <para>A script interface for the.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TextMesh.alignment">
- <summary>
- <para>How lines of text are aligned (Left, Right, Center).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TextMesh.anchor">
- <summary>
- <para>Which point of the text shares the position of the Transform.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TextMesh.characterSize">
- <summary>
- <para>The size of each character (This scales the whole text).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TextMesh.color">
- <summary>
- <para>The color used to render the text.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TextMesh.font">
- <summary>
- <para>The Font used.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TextMesh.fontSize">
- <summary>
- <para>The font size to use (for dynamic fonts).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TextMesh.fontStyle">
- <summary>
- <para>The font style to use (for dynamic fonts).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TextMesh.lineSpacing">
- <summary>
- <para>How much space will be in-between lines of text.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TextMesh.offsetZ">
- <summary>
- <para>How far should the text be offset from the transform.position.z when drawing.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TextMesh.richText">
- <summary>
- <para>Enable HTML-style tags for Text Formatting Markup.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TextMesh.tabSize">
- <summary>
- <para>How much space will be inserted for a tab '\t' character. This is a multiplum of the 'spacebar' character offset.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.TextMesh.text">
- <summary>
- <para>The text that is displayed.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.UICharInfo">
- <summary>
- <para>Class that specifies some information about a renderable character.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.UICharInfo.charWidth">
- <summary>
- <para>Character width.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.UICharInfo.cursorPos">
- <summary>
- <para>Position of the character cursor in local (text generated) space.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.UILineInfo">
- <summary>
- <para>Information about a generated line of text.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.UILineInfo.height">
- <summary>
- <para>Height of the line.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.UILineInfo.leading">
- <summary>
- <para>Space in pixels between this line and the next line.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.UILineInfo.startCharIdx">
- <summary>
- <para>Index of the first character in the line.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.UILineInfo.topY">
- <summary>
- <para>The upper Y position of the line in pixels. This is used for text annotation such as the caret and selection box in the InputField.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.UIVertex">
- <summary>
- <para>Vertex class used by a Canvas for managing vertices.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.UIVertex.color">
- <summary>
- <para>Vertex color.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.UIVertex.normal">
- <summary>
- <para>Normal.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.UIVertex.position">
- <summary>
- <para>Vertex position.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.UIVertex.simpleVert">
- <summary>
- <para>Simple UIVertex with sensible settings for use in the UI system.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.UIVertex.tangent">
- <summary>
- <para>Tangent.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.UIVertex.uv0">
- <summary>
- <para>The first texture coordinate set of the mesh. Used by UI elements by default.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.UIVertex.uv1">
- <summary>
- <para>The second texture coordinate set of the mesh, if present.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.UIVertex.uv2">
- <summary>
- <para>The Third texture coordinate set of the mesh, if present.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.UIVertex.uv3">
- <summary>
- <para>The forth texture coordinate set of the mesh, if present.</para>
- </summary>
- </member>
- <member name="A:UnityEngine.TextRenderingModule">
- <summary>
- <para>The TextRendering module provides access to Unity's text rendering system.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.VerticalWrapMode">
- <summary>
- <para>Wrapping modes for text that reaches the vertical boundary.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.VerticalWrapMode.Overflow">
- <summary>
- <para>Text well continue to generate when reaching vertical boundary.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.VerticalWrapMode.Truncate">
- <summary>
- <para>Text will be clipped when reaching the vertical boundary.</para>
- </summary>
- </member>
- </members>
-</doc>
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.TilemapModule.dll b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.TilemapModule.dll
deleted file mode 100644
index 8044ac2..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.TilemapModule.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.TilemapModule.xml b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.TilemapModule.xml
deleted file mode 100644
index bd84f17..0000000
--- a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.TilemapModule.xml
+++ /dev/null
@@ -1,950 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
-<doc>
- <members>
- <assembly>
- <name>UnityEngine.TilemapModule</name>
- </assembly>
- <member name="T:UnityEngine.CustomGridBrushAttribute">
- <summary>
- <para>Attribute to define the class as a grid brush and to make it available in the palette window.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CustomGridBrushAttribute.defaultBrush">
- <summary>
- <para>If set to true, brush will replace Unity built-in brush as the default brush in palette window.
-
-Only one class at any one time should set defaultBrush to true.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CustomGridBrushAttribute.defaultName">
- <summary>
- <para>Name of the default instance of this brush.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CustomGridBrushAttribute.hideAssetInstances">
- <summary>
- <para>Hide all asset instances of this brush in the tile palette window.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CustomGridBrushAttribute.hideDefaultInstance">
- <summary>
- <para>Hide the default instance of brush in the tile palette window.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.CustomGridBrushAttribute.#ctor">
- <summary>
- <para>Attribute to define the class as a grid brush and to make it available in the palette window.</para>
- </summary>
- <param name="defaultBrush">If set to true, brush will replace Unity built-in brush as the default brush in palette window.</param>
- <param name="defaultName">Name of the default instance of this brush.</param>
- <param name="hideAssetInstanes">Hide all asset instances of this brush in the tile palette window.</param>
- <param name="hideDefaultInstance">Hide the default instance of brush in the tile palette window.</param>
- <param name="hideAssetInstances"></param>
- </member>
- <member name="M:UnityEngine.CustomGridBrushAttribute.#ctor(System.Boolean,System.Boolean,System.Boolean,System.String)">
- <summary>
- <para>Attribute to define the class as a grid brush and to make it available in the palette window.</para>
- </summary>
- <param name="defaultBrush">If set to true, brush will replace Unity built-in brush as the default brush in palette window.</param>
- <param name="defaultName">Name of the default instance of this brush.</param>
- <param name="hideAssetInstanes">Hide all asset instances of this brush in the tile palette window.</param>
- <param name="hideDefaultInstance">Hide the default instance of brush in the tile palette window.</param>
- <param name="hideAssetInstances"></param>
- </member>
- <member name="T:UnityEngine.GridBrushBase">
- <summary>
- <para>Base class for authoring data on a grid with grid painting tools like paint, erase, pick, select and fill.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.GridBrushBase.BoxErase(UnityEngine.GridLayout,UnityEngine.GameObject,UnityEngine.BoundsInt)">
- <summary>
- <para>Erases data on a grid within the given bounds.</para>
- </summary>
- <param name="gridLayout">Grid used for layout.</param>
- <param name="brushTarget">Target of the erase operation. By default the currently selected GameObject.</param>
- <param name="position">The bounds to erase data from.</param>
- </member>
- <member name="M:UnityEngine.GridBrushBase.BoxFill(UnityEngine.GridLayout,UnityEngine.GameObject,UnityEngine.BoundsInt)">
- <summary>
- <para>Box fills tiles and GameObjects into given bounds within the selected layers.</para>
- </summary>
- <param name="gridLayout">Grid used for layout.</param>
- <param name="brushTarget">Target of box fill operation. By default the currently selected GameObject.</param>
- <param name="position">The bounds to box fill data to.</param>
- </member>
- <member name="M:UnityEngine.GridBrushBase.Erase(UnityEngine.GridLayout,UnityEngine.GameObject,UnityEngine.Vector3Int)">
- <summary>
- <para>Erases data on a grid within the given bounds.</para>
- </summary>
- <param name="grid">Grid used for layout.</param>
- <param name="brushTarget">Target of the erase operation. By default the currently selected GameObject.</param>
- <param name="position">The coordinates of the cell to erase data from.</param>
- <param name="gridLayout"></param>
- </member>
- <member name="M:UnityEngine.GridBrushBase.Flip(UnityEngine.GridBrushBase/FlipAxis,UnityEngine.GridLayout/CellLayout)">
- <summary>
- <para>Flips the grid brush in the given FlipAxis.</para>
- </summary>
- <param name="flip">Axis to flip by.</param>
- <param name="layout">CellLayout for flipping.</param>
- </member>
- <member name="T:UnityEngine.GridBrushBase.FlipAxis">
- <summary>
- <para>Axis to flip tiles in the GridBrushBase by.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.GridBrushBase.FlipAxis.X">
- <summary>
- <para>Flip the brush in the X Axis.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.GridBrushBase.FlipAxis.Y">
- <summary>
- <para>Flip the brush in the Y Axis.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.GridBrushBase.FloodFill(UnityEngine.GridLayout,UnityEngine.GameObject,UnityEngine.Vector3Int)">
- <summary>
- <para>Flood fills data onto a grid given the starting coordinates of the cell.</para>
- </summary>
- <param name="gridLayout">Grid used for layout.</param>
- <param name="brushTarget">Targets of flood fill operation. By default the currently selected GameObject.</param>
- <param name="position">Starting position of the flood fill.</param>
- </member>
- <member name="M:UnityEngine.GridBrushBase.Move(UnityEngine.GridLayout,UnityEngine.GameObject,UnityEngine.BoundsInt,UnityEngine.BoundsInt)">
- <summary>
- <para>Move is called when user moves the area previously selected with the selection marquee.</para>
- </summary>
- <param name="grid">Grid used for layout.</param>
- <param name="brushTarget">Target of the move operation. By default the currently selected GameObject.</param>
- <param name="from">Source bounds of the move.</param>
- <param name="to">Target bounds of the move.</param>
- <param name="gridLayout"></param>
- </member>
- <member name="M:UnityEngine.GridBrushBase.MoveEnd(UnityEngine.GridLayout,UnityEngine.GameObject,UnityEngine.BoundsInt)">
- <summary>
- <para>MoveEnd is called when user has ended the move of the area previously selected with the selection marquee.</para>
- </summary>
- <param name="position">Layers affected by the move operation.</param>
- <param name="brushTarget">Target of the move operation. By default the currently selected GameObject.</param>
- <param name="grid">Grid used for layout.</param>
- <param name="gridLayout"></param>
- </member>
- <member name="M:UnityEngine.GridBrushBase.MoveStart(UnityEngine.GridLayout,UnityEngine.GameObject,UnityEngine.BoundsInt)">
- <summary>
- <para>MoveEnd is called when user starts moving the area previously selected with the selection marquee.</para>
- </summary>
- <param name="grid">Grid used for layout.</param>
- <param name="brushTarget">Target of the move operation. By default the currently selected GameObject.</param>
- <param name="position">Position where the move operation has started.</param>
- <param name="gridLayout"></param>
- </member>
- <member name="M:UnityEngine.GridBrushBase.Paint(UnityEngine.GridLayout,UnityEngine.GameObject,UnityEngine.Vector3Int)">
- <summary>
- <para>Paints data into a grid within the given bounds.</para>
- </summary>
- <param name="grid">Grid used for layout.</param>
- <param name="brushTarget">Target of the paint operation. By default the currently selected GameObject.</param>
- <param name="position">The coordinates of the cell to paint data to.</param>
- <param name="gridLayout"></param>
- </member>
- <member name="M:UnityEngine.GridBrushBase.Pick(UnityEngine.GridLayout,UnityEngine.GameObject,UnityEngine.BoundsInt,UnityEngine.Vector3Int)">
- <summary>
- <para>Picks data from a grid given the coordinates of the cells.</para>
- </summary>
- <param name="grid">Grid used for layout.</param>
- <param name="brushTarget">Target of the paint operation. By default the currently selected GameObject.</param>
- <param name="position">The coordinates of the cells to paint data from.</param>
- <param name="pivot">Pivot of the picking brush.</param>
- <param name="gridLayout"></param>
- </member>
- <member name="M:UnityEngine.GridBrushBase.Rotate(UnityEngine.GridBrushBase/RotationDirection,UnityEngine.GridLayout/CellLayout)">
- <summary>
- <para>Rotates all tiles on the grid brush with the given RotationDirection.</para>
- </summary>
- <param name="direction">Direction to rotate by.</param>
- <param name="layout">Cell Layout for rotating.</param>
- </member>
- <member name="T:UnityEngine.GridBrushBase.RotationDirection">
- <summary>
- <para>Direction to rotate tiles in the GridBrushBase by.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.GridBrushBase.RotationDirection.Clockwise">
- <summary>
- <para>Rotates tiles clockwise.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.GridBrushBase.RotationDirection.CounterClockwise">
- <summary>
- <para>Rotates tiles counter-clockwise.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.GridBrushBase.Select(UnityEngine.GridLayout,UnityEngine.GameObject,UnityEngine.BoundsInt)">
- <summary>
- <para>Select an area of a grid.</para>
- </summary>
- <param name="grid">Grid used for layout.</param>
- <param name="brushTarget">Targets of paint operation. By default the currently selected GameObject.</param>
- <param name="position">Area to get selected.</param>
- <param name="gridLayout"></param>
- </member>
- <member name="T:UnityEngine.GridBrushBase.Tool">
- <summary>
- <para>Tool mode for the GridBrushBase.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.GridBrushBase.Tool.Box">
- <summary>
- <para>Box Fill.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.GridBrushBase.Tool.Erase">
- <summary>
- <para>Erase.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.GridBrushBase.Tool.FloodFill">
- <summary>
- <para>Flood Fill.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.GridBrushBase.Tool.Move">
- <summary>
- <para>Move.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.GridBrushBase.Tool.Paint">
- <summary>
- <para>Paint.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.GridBrushBase.Tool.Pick">
- <summary>
- <para>Pick.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.GridBrushBase.Tool.Select">
- <summary>
- <para>Select.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Tilemaps.ITilemap">
- <summary>
- <para>Class passed onto when information is queried from the tiles.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Tilemaps.ITilemap.cellBounds">
- <summary>
- <para>Returns the boundaries of the Tilemap in cell size.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Tilemaps.ITilemap.localBounds">
- <summary>
- <para>Returns the boundaries of the Tilemap in local space size.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Tilemaps.ITilemap.origin">
- <summary>
- <para>The origin of the Tilemap in cell position.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Tilemaps.ITilemap.size">
- <summary>
- <para>The size of the Tilemap in cells.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Tilemaps.ITilemap.GetColor(UnityEngine.Vector3Int)">
- <summary>
- <para>Gets the color of a.</para>
- </summary>
- <param name="position">Position of the Tile on the Tilemap.</param>
- <returns>
- <para>Color of the at the XY coordinate.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Tilemaps.ITilemap.GetComponent">
- <summary>
- <para>Returns the component of type T if the GameObject of the tile map has one attached, null if it doesn't.</para>
- </summary>
- <returns>
- <para>The Component of type T to retrieve.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Tilemaps.ITilemap.GetSprite(UnityEngine.Vector3Int)">
- <summary>
- <para>Gets the.</para>
- </summary>
- <param name="position">Position of the Tile on the Tilemap.</param>
- <returns>
- <para>Sprite at the XY coordinate.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Tilemaps.ITilemap.GetTile(UnityEngine.Vector3Int)">
- <summary>
- <para>Gets the.</para>
- </summary>
- <param name="position">Position of the Tile on the Tilemap.</param>
- <returns>
- <para> placed at the cell.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Tilemaps.ITilemap.GetTile(UnityEngine.Vector3Int)">
- <summary>
- <para>Gets the.</para>
- </summary>
- <param name="position">Position of the Tile on the Tilemap.</param>
- <returns>
- <para> placed at the cell.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Tilemaps.ITilemap.GetTileFlags(UnityEngine.Vector3Int)">
- <summary>
- <para>Gets the TileFlags of the Tile at the given position.</para>
- </summary>
- <param name="position">Position of the Tile on the Tilemap.</param>
- <returns>
- <para>TileFlags from the Tile.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Tilemaps.ITilemap.GetTransformMatrix(UnityEngine.Vector3Int)">
- <summary>
- <para>Gets the transform matrix of a.</para>
- </summary>
- <param name="position">Position of the Tile on the Tilemap.</param>
- <returns>
- <para>The transform matrix.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Tilemaps.ITilemap.RefreshTile(UnityEngine.Vector3Int)">
- <summary>
- <para>Refreshes a.</para>
- </summary>
- <param name="position">Position of the Tile on the Tilemap.</param>
- </member>
- <member name="T:UnityEngine.Tilemaps.Tile">
- <summary>
- <para>Class for a default tile in the Tilemap.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Tilemaps.Tile.color">
- <summary>
- <para>Color of the Tile.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Tilemaps.Tile.flags">
- <summary>
- <para>TileFlags of the Tile.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Tilemaps.Tile.gameObject">
- <summary>
- <para>GameObject of the Tile.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Tilemaps.Tile.sprite">
- <summary>
- <para>Sprite to be rendered at the Tile.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Tilemaps.Tile.transform">
- <summary>
- <para>Matrix4x4|Transform matrix of the Tile.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Tilemaps.Tile.ColliderType">
- <summary>
- <para>Enum for determining what collider shape is generated for this Tile by the TilemapCollider2D.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Tilemaps.Tile.ColliderType.Grid">
- <summary>
- <para>The grid layout boundary outline is used as the collider shape for the Tile by the TilemapCollider2D.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Tilemaps.Tile.ColliderType.None">
- <summary>
- <para>No collider shape is generated for the Tile by the TilemapCollider2D.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Tilemaps.Tile.ColliderType.Sprite">
- <summary>
- <para>The Sprite outline is used as the collider shape for the Tile by the TilemapCollider2D.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Tilemaps.Tile.GetTileData(UnityEngine.Vector3Int,UnityEngine.Tilemaps.ITilemap,UnityEngine.Tilemaps.TileData&amp;)">
- <summary>
- <para>Retrieves the tile rendering data for the Tile.</para>
- </summary>
- <param name="position">Position of the Tile on the Tilemap.</param>
- <param name="tilemap">The Tilemap the tile is present on.</param>
- <param name="tileData">Data to render the tile. This is filled with Tile, Tile.color and Tile.transform.</param>
- <returns>
- <para>Whether the call was successful. This returns true for Tile.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.Tilemaps.TileAnimationData">
- <summary>
- <para>A Struct for the required data for animating a Tile.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Tilemaps.TileAnimationData.animatedSprites">
- <summary>
- <para>The array of that are ordered by appearance in the animation.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Tilemaps.TileAnimationData.animationSpeed">
- <summary>
- <para>The animation speed.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Tilemaps.TileAnimationData.animationStartTime">
- <summary>
- <para>The start time of the animation. The animation will begin at this time offset.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Tilemaps.TileBase">
- <summary>
- <para>Base class for a tile in the Tilemap.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Tilemaps.TileBase.GetTileAnimationData(UnityEngine.Vector3Int,UnityEngine.Tilemaps.ITilemap,UnityEngine.Tilemaps.TileAnimationData&amp;)">
- <summary>
- <para>Retrieves any tile animation data from the scripted tile.</para>
- </summary>
- <param name="position">Position of the Tile on the Tilemap.</param>
- <param name="tilemap">The Tilemap the tile is present on.</param>
- <param name="tileAnimationData">Data to run an animation on the tile.</param>
- <returns>
- <para>Whether the call was successful.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Tilemaps.TileBase.GetTileData(UnityEngine.Vector3Int,UnityEngine.Tilemaps.ITilemap,UnityEngine.Tilemaps.TileData&amp;)">
- <summary>
- <para>Retrieves any tile rendering data from the scripted tile.</para>
- </summary>
- <param name="position">Position of the Tile on the Tilemap.</param>
- <param name="tilemap">The Tilemap the tile is present on.</param>
- <param name="tileData">Data to render the tile.</param>
- <returns>
- <para>Whether the call was successful.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Tilemaps.TileBase.RefreshTile(UnityEngine.Vector3Int,UnityEngine.Tilemaps.ITilemap)">
- <summary>
- <para>This method is called when the tile is refreshed.</para>
- </summary>
- <param name="position">Position of the Tile on the Tilemap.</param>
- <param name="tilemap">The Tilemap the tile is present on.</param>
- </member>
- <member name="M:UnityEngine.Tilemaps.TileBase.StartUp(UnityEngine.Vector3Int,UnityEngine.Tilemaps.ITilemap,UnityEngine.GameObject)">
- <summary>
- <para>StartUp is called on the first frame of the running scene.</para>
- </summary>
- <param name="position">Position of the Tile on the Tilemap.</param>
- <param name="tilemap">The Tilemap the tile is present on.</param>
- <param name="go">The GameObject instantiated for the Tile.</param>
- <returns>
- <para>Whether the call was successful.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.Tilemaps.TileData">
- <summary>
- <para>A Struct for the required data for rendering a Tile.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Tilemaps.TileData.color">
- <summary>
- <para>Color of the Tile.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Tilemaps.TileData.flags">
- <summary>
- <para>TileFlags of the Tile.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Tilemaps.TileData.gameObject">
- <summary>
- <para>GameObject of the Tile.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Tilemaps.TileData.sprite">
- <summary>
- <para>Sprite to be rendered at the Tile.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Tilemaps.TileData.transform">
- <summary>
- <para>Matrix4x4|Transform matrix of the Tile.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Tilemaps.TileFlags">
- <summary>
- <para>Flags controlling behavior for the TileBase.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Tilemaps.TileFlags.InstantiateGameObjectRuntimeOnly">
- <summary>
- <para>TileBase does not instantiate its associated GameObject in editor mode and instantiates it only during play mode.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Tilemaps.TileFlags.LockAll">
- <summary>
- <para>All lock flags.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Tilemaps.TileFlags.LockColor">
- <summary>
- <para>TileBase locks any color set by brushes or the user.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Tilemaps.TileFlags.LockTransform">
- <summary>
- <para>TileBase locks any transform matrix set by brushes or the user.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Tilemaps.TileFlags.None">
- <summary>
- <para>No TileFlags are set.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Tilemaps.Tilemap">
- <summary>
- <para>The tile map stores component.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Tilemaps.Tilemap.animationFrameRate">
- <summary>
- <para>The frame rate for all tile animations in the tile map.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Tilemaps.Tilemap.cellBounds">
- <summary>
- <para>Returns the boundaries of the Tilemap in cell size.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Tilemaps.Tilemap.color">
- <summary>
- <para>The color of the tile map layer.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Tilemaps.Tilemap.layoutGrid">
- <summary>
- <para>Gets the Grid associated with this tile map.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Tilemaps.Tilemap.layoutGrid">
- <summary>
- <para>Gets the Grid associated with this tile map.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Tilemaps.Tilemap.localBounds">
- <summary>
- <para>Returns the boundaries of the Tilemap in local space size.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Tilemaps.Tilemap.orientation">
- <summary>
- <para>Orientation of the tiles in the Tilemap.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Tilemaps.Tilemap.orientationMatrix">
- <summary>
- <para>Orientation Matrix of the orientation of the tiles in the Tilemap.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Tilemaps.Tilemap.origin">
- <summary>
- <para>The origin of the Tilemap in cell position.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Tilemaps.Tilemap.size">
- <summary>
- <para>The size of the Tilemap in cells.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Tilemaps.Tilemap.tileAnchor">
- <summary>
- <para>Gets the anchor point of tiles in the Tilemap.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Tilemaps.Tilemap.AddTileFlags(UnityEngine.Vector3Int,UnityEngine.Tilemaps.TileFlags)">
- <summary>
- <para>Adds the TileFlags onto the Tile at the given position.</para>
- </summary>
- <param name="position">Position of the Tile on the Tilemap.</param>
- <param name="flags">TileFlags to add (with bitwise or) onto the flags provided by Tile.TileBase.</param>
- </member>
- <member name="M:UnityEngine.Tilemaps.Tilemap.BoxFill(UnityEngine.Vector3Int,UnityEngine.Tilemaps.TileBase,System.Int32,System.Int32,System.Int32,System.Int32)">
- <summary>
- <para>Does a box fill with the given. Starts from given coordinates and fills the limits from start to end (inclusive).</para>
- </summary>
- <param name="position">Position of the Tile on the Tilemap.</param>
- <param name="tile"> to place.</param>
- <param name="startX">The minimum X coordinate limit to fill to.</param>
- <param name="startY">The minimum Y coordinate limit to fill to.</param>
- <param name="endX">The maximum X coordinate limit to fill to.</param>
- <param name="endY">The maximum Y coordinate limit to fill to.</param>
- </member>
- <member name="M:UnityEngine.Tilemaps.Tilemap.ClearAllTiles">
- <summary>
- <para>Clears all tiles that are placed in the Tilemap.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Tilemaps.Tilemap.CompressBounds">
- <summary>
- <para>Compresses the origin and size of the Tilemap to bounds where tiles exist.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Tilemaps.Tilemap.ContainsTile(UnityEngine.Tilemaps.TileBase)">
- <summary>
- <para>Returns true if the Tilemap contains the given. Returns false if not.</para>
- </summary>
- <param name="tileAsset">Tile to check.</param>
- <returns>
- <para>Whether the Tilemap contains the tile.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Tilemaps.Tilemap.FloodFill(UnityEngine.Vector3Int,UnityEngine.Tilemaps.TileBase)">
- <summary>
- <para>Does a flood fill with the given starting from the given coordinates.</para>
- </summary>
- <param name="position">Start position of the flood fill on the Tilemap.</param>
- <param name="tile"> to place.</param>
- </member>
- <member name="M:UnityEngine.Tilemaps.Tilemap.GetCellCenterLocal(UnityEngine.Vector3Int)">
- <summary>
- <para>Get the logical center coordinate of a grid cell in local space.</para>
- </summary>
- <param name="position">Grid cell position.</param>
- <returns>
- <para>Center of the cell transformed into local space coordinates.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Tilemaps.Tilemap.GetCellCenterWorld(UnityEngine.Vector3Int)">
- <summary>
- <para>Get the logical center coordinate of a grid cell in world space.</para>
- </summary>
- <param name="position">Grid cell position.</param>
- <returns>
- <para>Center of the cell transformed into world space coordinates.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Tilemaps.Tilemap.GetColliderType(UnityEngine.Vector3Int)">
- <summary>
- <para>Gets the collider type of a.</para>
- </summary>
- <param name="position">Position of the Tile on the Tilemap.</param>
- <returns>
- <para>Collider type of the at the XY coordinate.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Tilemaps.Tilemap.GetColor(UnityEngine.Vector3Int)">
- <summary>
- <para>Gets the color of a.</para>
- </summary>
- <param name="position">Position of the Tile on the Tilemap.</param>
- <returns>
- <para>Color of the at the XY coordinate.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Tilemaps.Tilemap.GetInstantiatedObject(UnityEngine.Vector3Int)">
- <summary>
- <para>Gets the.</para>
- </summary>
- <param name="position">Position of the Tile on the Tilemap.</param>
- <returns>
- <para>GameObject instantiated by the Tile at the position.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Tilemaps.Tilemap.GetSprite(UnityEngine.Vector3Int)">
- <summary>
- <para>Gets the.</para>
- </summary>
- <param name="position">Position of the Tile on the Tilemap.</param>
- <returns>
- <para>Sprite at the XY coordinate.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Tilemaps.Tilemap.GetTile(UnityEngine.Vector3Int)">
- <summary>
- <para>Gets the.</para>
- </summary>
- <param name="position">Position of the Tile on the Tilemap.</param>
- <returns>
- <para>Tilemaps.TileBase placed at the cell.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Tilemaps.Tilemap.GetTile(UnityEngine.Vector3Int)">
- <summary>
- <para>Gets the.</para>
- </summary>
- <param name="position">Position of the Tile on the Tilemap.</param>
- <returns>
- <para>Tilemaps.TileBase|Tile of type T placed at the cell.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Tilemaps.Tilemap.GetTileFlags(UnityEngine.Vector3Int)">
- <summary>
- <para>Gets the TileFlags of the Tile at the given position.</para>
- </summary>
- <param name="position">Position of the Tile on the Tilemap.</param>
- <returns>
- <para>TileFlags from the Tile.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Tilemaps.Tilemap.GetTilesBlock(UnityEngine.BoundsInt)">
- <summary>
- <para>Retrieves an array of tiles with the given bounds.</para>
- </summary>
- <param name="bounds">Bounds to retrieve from.</param>
- <returns>
- <para>An array of at the given bounds.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Tilemaps.Tilemap.GetTransformMatrix(UnityEngine.Vector3Int)">
- <summary>
- <para>Gets the transform matrix of a.</para>
- </summary>
- <param name="position">Position of the Tile on the Tilemap.</param>
- <returns>
- <para>The transform matrix.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Tilemaps.Tilemap.GetUsedTilesCount">
- <summary>
- <para>Get the total number of different.</para>
- </summary>
- <returns>
- <para>The total number of different.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Tilemaps.Tilemap.GetUsedTilesNonAlloc(UnityEngine.Tilemaps.TileBase[])">
- <summary>
- <para>Fills the given array with the total number of different and returns the number of tiles filled.</para>
- </summary>
- <param name="usedTiles">The array to be filled.</param>
- <returns>
- <para>The number of tiles filled.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Tilemaps.Tilemap.HasTile(UnityEngine.Vector3Int)">
- <summary>
- <para>Returns whether there is a tile at the position.</para>
- </summary>
- <param name="position">Position to check.</param>
- <returns>
- <para>True if there is a tile at the position. False if not.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.Tilemaps.Tilemap.Orientation">
- <summary>
- <para>Determines the orientation of.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Tilemaps.Tilemap.Orientation.Custom">
- <summary>
- <para>Use a custom orientation to all tiles in the tile map.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Tilemaps.Tilemap.Orientation.XY">
- <summary>
- <para>Orients tiles in the XY plane.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Tilemaps.Tilemap.Orientation.XZ">
- <summary>
- <para>Orients tiles in the XZ plane.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Tilemaps.Tilemap.Orientation.YX">
- <summary>
- <para>Orients tiles in the YX plane.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Tilemaps.Tilemap.Orientation.YZ">
- <summary>
- <para>Orients tiles in the YZ plane.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Tilemaps.Tilemap.Orientation.ZX">
- <summary>
- <para>Orients tiles in the ZX plane.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Tilemaps.Tilemap.Orientation.ZY">
- <summary>
- <para>Orients tiles in the ZY plane.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Tilemaps.Tilemap.RefreshAllTiles">
- <summary>
- <para>Refreshes all. The tile map will retrieve the rendering data, animation data and other data for all tiles and update all relevant components.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Tilemaps.Tilemap.RefreshTile(UnityEngine.Vector3Int)">
- <summary>
- <para>Refreshes a.</para>
- </summary>
- <param name="position">Position of the Tile on the Tilemap.</param>
- </member>
- <member name="M:UnityEngine.Tilemaps.Tilemap.RemoveTileFlags(UnityEngine.Vector3Int,UnityEngine.Tilemaps.TileFlags)">
- <summary>
- <para>Removes the TileFlags onto the Tile at the given position.</para>
- </summary>
- <param name="position">Position of the Tile on the Tilemap.</param>
- <param name="flags">TileFlags to remove from the Tile.</param>
- </member>
- <member name="M:UnityEngine.Tilemaps.Tilemap.ResizeBounds">
- <summary>
- <para>Resizes tiles in the Tilemap to bounds defined by origin and size.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Tilemaps.Tilemap.SetColliderType(UnityEngine.Vector3Int,UnityEngine.Tilemaps.Tile/ColliderType)">
- <summary>
- <para>Sets the collider type of a.</para>
- </summary>
- <param name="position">Position of the Tile on the Tilemap.</param>
- <param name="colliderType">Collider type to set the to at the XYZ coordinate.</param>
- </member>
- <member name="M:UnityEngine.Tilemaps.Tilemap.SetColor(UnityEngine.Vector3Int,UnityEngine.Color)">
- <summary>
- <para>Sets the color of a.</para>
- </summary>
- <param name="position">Position of the Tile on the Tilemap.</param>
- <param name="color">Color to set the to at the XY coordinate.</param>
- </member>
- <member name="M:UnityEngine.Tilemaps.Tilemap.SetTile(UnityEngine.Vector3Int,UnityEngine.Tilemaps.TileBase)">
- <summary>
- <para>Sets a.</para>
- </summary>
- <param name="position">Position of the Tile on the Tilemap.</param>
- <param name="tile"> to be placed the cell.</param>
- </member>
- <member name="M:UnityEngine.Tilemaps.Tilemap.SetTileFlags(UnityEngine.Vector3Int,UnityEngine.Tilemaps.TileFlags)">
- <summary>
- <para>Sets the TileFlags onto the Tile at the given position.</para>
- </summary>
- <param name="position">Position of the Tile on the Tilemap.</param>
- <param name="flags">TileFlags to add onto the Tile.</param>
- </member>
- <member name="M:UnityEngine.Tilemaps.Tilemap.SetTiles(UnityEngine.Vector3Int[],UnityEngine.Tilemaps.TileBase[])">
- <summary>
- <para>Sets an array of.</para>
- </summary>
- <param name="positionArray">An array of positions of Tiles on the Tilemap.</param>
- <param name="tileArray">An array of to be placed.</param>
- </member>
- <member name="M:UnityEngine.Tilemaps.Tilemap.SetTilesBlock(UnityEngine.BoundsInt,UnityEngine.Tilemaps.TileBase[])">
- <summary>
- <para>Fills bounds with array of tiles.</para>
- </summary>
- <param name="position">Bounds to be filled.</param>
- <param name="tileArray">An array of to be placed.</param>
- </member>
- <member name="M:UnityEngine.Tilemaps.Tilemap.SetTransformMatrix(UnityEngine.Vector3Int,UnityEngine.Matrix4x4)">
- <summary>
- <para>Sets the transform matrix of a tile given the XYZ coordinates of a cell in the.</para>
- </summary>
- <param name="position">Position of the Tile on the Tilemap.</param>
- <param name="transform">The transform matrix.</param>
- </member>
- <member name="M:UnityEngine.Tilemaps.Tilemap.SwapTile(UnityEngine.Tilemaps.TileBase,UnityEngine.Tilemaps.TileBase)">
- <summary>
- <para>Swaps all existing tiles of changeTile to newTile and refreshes all the swapped tiles.</para>
- </summary>
- <param name="changeTile">Tile to swap.</param>
- <param name="newTile">Tile to swap to.</param>
- </member>
- <member name="T:UnityEngine.Tilemaps.TilemapCollider2D">
- <summary>
- <para>Collider for 2D physics representing shapes defined by the corresponding Tilemap.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Tilemaps.TilemapRenderer">
- <summary>
- <para>The tile map renderer is used to render the tile map marked out by a component.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Tilemaps.TilemapRenderer.chunkCullingBounds">
- <summary>
- <para>Bounds used for culling of Tilemap chunks.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Tilemaps.TilemapRenderer.chunkSize">
- <summary>
- <para>Size in number of tiles of each chunk created by the TilemapRenderer.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Tilemaps.TilemapRenderer.detectChunkCullingBounds">
- <summary>
- <para>Returns whether the TilemapRenderer automatically detects the bounds to extend chunk culling by.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Tilemaps.TilemapRenderer.maskInteraction">
- <summary>
- <para>Specifies how the Tilemap interacts with the masks.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Tilemaps.TilemapRenderer.maxChunkCount">
- <summary>
- <para>Maximum number of chunks the TilemapRenderer caches in memory.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Tilemaps.TilemapRenderer.maxFrameAge">
- <summary>
- <para>Maximum number of frames the TilemapRenderer keeps unused chunks in memory.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Tilemaps.TilemapRenderer.sortOrder">
- <summary>
- <para>Active sort order for the TilemapRenderer.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Tilemaps.TilemapRenderer.DetectChunkCullingBounds">
- <summary>
- <para>Returns whether the TilemapRenderer automatically detects the bounds to extend chunk culling by.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Tilemaps.TilemapRenderer.DetectChunkCullingBounds.Auto">
- <summary>
- <para>The TilemapRenderer will automatically detect the bounds of extension by inspecting the Sprite/s used in the Tilemap.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Tilemaps.TilemapRenderer.DetectChunkCullingBounds.Manual">
- <summary>
- <para>The user adds in the values used for extend the bounds for culling of Tilemap chunks.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Tilemaps.TilemapRenderer.SortOrder">
- <summary>
- <para>Sort order for all tiles rendered by the TilemapRenderer.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Tilemaps.TilemapRenderer.SortOrder.BottomLeft">
- <summary>
- <para>Sorts tiles for rendering starting from the tile with the lowest X and the lowest Y cell positions.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Tilemaps.TilemapRenderer.SortOrder.BottomRight">
- <summary>
- <para>Sorts tiles for rendering starting from the tile with the highest X and the lowest Y cell positions.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Tilemaps.TilemapRenderer.SortOrder.TopLeft">
- <summary>
- <para>Sorts tiles for rendering starting from the tile with the lowest X and the highest Y cell positions.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Tilemaps.TilemapRenderer.SortOrder.TopRight">
- <summary>
- <para>Sorts tiles for rendering starting from the tile with the highest X and the lowest Y cell positions.</para>
- </summary>
- </member>
- <member name="A:UnityEngine.TilemapModule">
- <summary>
- <para>The Tilemap module implements the Tilemap class.</para>
- </summary>
- </member>
- </members>
-</doc>
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.Timeline.dll b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.Timeline.dll
deleted file mode 100755
index 930b75d..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.Timeline.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.TimelineModule.dll b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.TimelineModule.dll
deleted file mode 100644
index e2b4905..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.TimelineModule.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.TimelineModule.xml b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.TimelineModule.xml
deleted file mode 100644
index ca18af8..0000000
--- a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.TimelineModule.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
-<doc>
- <members>
- <assembly>
- <name>UnityEngine.TimelineModule</name>
- </assembly>
- </members>
-</doc>
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.UI.dll b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.UI.dll
deleted file mode 100755
index b2d1ef4..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.UI.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.UIElementsModule.dll b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.UIElementsModule.dll
deleted file mode 100644
index eb468a2..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.UIElementsModule.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.UIElementsModule.xml b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.UIElementsModule.xml
deleted file mode 100644
index 58d57d0..0000000
--- a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.UIElementsModule.xml
+++ /dev/null
@@ -1,4963 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
-<doc>
- <members>
- <assembly>
- <name>UnityEngine.UIElementsModule</name>
- </assembly>
- <member name="T:UnityEngine.Experimental.UIElements.ContextualMenu.MenuAction.StatusFlags">
- <summary>
- <para>Status of the menu item.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.UIElements.ContextualMenu.MenuAction.StatusFlags.Checked">
- <summary>
- <para>The item is displayed with a checkmark.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.UIElements.ContextualMenu.MenuAction.StatusFlags.Disabled">
- <summary>
- <para>The item is disabled and is not be selectable by the user.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.UIElements.ContextualMenu.MenuAction.StatusFlags.Hidden">
- <summary>
- <para>The item is not displayed.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.UIElements.ContextualMenu.MenuAction.StatusFlags.Normal">
- <summary>
- <para>The item is displayed normally.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.AttachToPanelEvent">
- <summary>
- <para>Event sent after an element is added to an element that is a descendent of a panel.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.AttachToPanelEvent.#ctor">
- <summary>
- <para>Constructor. Avoid newing events. Instead, use GetPooled() to get an event from a pool of reusable events.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.BaseControl`1">
- <summary>
- <para>Abstract base class for controls.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.BaseControl_1.value">
- <summary>
- <para>The value associated with the control.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.BaseControl`1.BaseControlUxmlTraits">
- <summary>
- <para>UxmlTraits for the BaseControl.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.BaseControl_1.BaseControlUxmlTraits.uxmlChildElementsDescription">
- <summary>
- <para>Returns an empty enumerable, as controls generally do not have children.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.BaseControl_1.BaseControlUxmlTraits.#ctor">
- <summary>
- <para>Constructor.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.BaseTextControl`1">
- <summary>
- <para>Abstract base class for controls containing a text property.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.BaseTextControl_1.text">
- <summary>
- <para>The text associated with the control.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.BaseTextControl_1.value">
- <summary>
- <para>The value associated with the control.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.BaseTextControl`1.BaseTextControlUxmlTraits">
- <summary>
- <para>UxmlTraits for the BaseTextControl.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.BaseTextControl_1.BaseTextControlUxmlTraits.#ctor">
- <summary>
- <para>Constructor.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.BaseTextElement">
- <summary>
- <para>Abstract base class for VisualElement containing text.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.BaseTextElement.text">
- <summary>
- <para>The text associated with the element.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.BaseTextElement.BaseTextElementUxmlTraits">
- <summary>
- <para>UxmlTraits for the BaseTextElement.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.BaseTextElement.BaseTextElementUxmlTraits.uxmlAttributesDescription">
- <summary>
- <para>Returns an enumerable containing attribute descriptions for BasetextElement properties that should be available in UXML.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.BaseTextElement.BaseTextElementUxmlTraits.uxmlChildElementsDescription">
- <summary>
- <para>Returns an empty enumerable, as text elements generally do not have children.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.BaseTextElement.BaseTextElementUxmlTraits.#ctor">
- <summary>
- <para>Constructor.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.BaseTextElement.BaseTextElementUxmlTraits.Init(UnityEngine.Experimental.UIElements.VisualElement,UnityEngine.Experimental.UIElements.IUxmlAttributes,UnityEngine.Experimental.UIElements.CreationContext)">
- <summary>
- <para>Initialize BaseTextElement properties using values from the attribute bag.</para>
- </summary>
- <param name="ve">The object to initialize.</param>
- <param name="bag">The attribute bag.</param>
- <param name="cc">The creation context; unused.</param>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.BlurEvent">
- <summary>
- <para>Event sent immediately after an element has lost focus. Capturable, does not bubbles, non-cancellable.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.BlurEvent.#ctor">
- <summary>
- <para>Constructor. Avoid newing events. Instead, use GetPooled() to get an event from a pool of reusable events.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.Box">
- <summary>
- <para>Styled visual element to match the IMGUI Box Style.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.Box.BoxFactory">
- <summary>
- <para>Instantiates a Box using the data read from a UXML file.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.Box.BoxFactory.#ctor">
- <summary>
- <para>Constructor.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.Button.ButtonFactory">
- <summary>
- <para>Instantiates a Button using the data read from a UXML file.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.Button.ButtonFactory.#ctor">
- <summary>
- <para>Constructor.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.Button.ButtonUxmlTraits">
- <summary>
- <para>UxmlTraits for the Button.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.Button.ButtonUxmlTraits.#ctor">
- <summary>
- <para>Constructor.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.CallbackEventHandler">
- <summary>
- <para>Interface for classes capable of having callbacks to handle events.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.CallbackEventHandler.HandleEvent(UnityEngine.Experimental.UIElements.EventBase)">
- <summary>
- <para>Handle an event, most often by executing the callbacks associated with the event.</para>
- </summary>
- <param name="evt">The event to handle.</param>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.CallbackEventHandler.HasBubbleHandlers">
- <summary>
- <para>Return true if event handlers for the event propagation bubble up phase have been attached on this object.</para>
- </summary>
- <returns>
- <para>True if object has event handlers for the bubble up phase.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.CallbackEventHandler.HasCaptureHandlers">
- <summary>
- <para>Return true if event handlers for the event propagation capture phase have been attached on this object.</para>
- </summary>
- <returns>
- <para>True if object has event handlers for the capture phase.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.CallbackEventHandler.RegisterCallback(UnityEngine.Experimental.UIElements.EventCallback`1&lt;TEventType&gt;,UnityEngine.Experimental.UIElements.Capture)">
- <summary>
- <para>Add an event handler on the instance. If the handler has already been registered on the same phase (capture or bubbling), this will have no effect.</para>
- </summary>
- <param name="callback">The event handler to add.</param>
- <param name="useCapture">By default the callback will be called during the bubbling phase. Pass Capture.Capture to have the callback called during the capture phase instead.</param>
- <param name="userArgs">Data to pass to the callback.</param>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.CallbackEventHandler.RegisterCallback(UnityEngine.Experimental.UIElements.EventCallback`2&lt;TEventType,TUserArgsType&gt;,TUserArgsType,UnityEngine.Experimental.UIElements.Capture)">
- <summary>
- <para>Add an event handler on the instance. If the handler has already been registered on the same phase (capture or bubbling), this will have no effect.</para>
- </summary>
- <param name="callback">The event handler to add.</param>
- <param name="useCapture">By default the callback will be called during the bubbling phase. Pass Capture.Capture to have the callback called during the capture phase instead.</param>
- <param name="userArgs">Data to pass to the callback.</param>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.CallbackEventHandler.UnregisterCallback(UnityEngine.Experimental.UIElements.EventCallback`1&lt;TEventType&gt;,UnityEngine.Experimental.UIElements.Capture)">
- <summary>
- <para>Remove callback from the instance.</para>
- </summary>
- <param name="callback">The callback to remove.</param>
- <param name="useCapture">Select wether the callback should be removed from the capture or the bubbling phase.</param>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.CallbackEventHandler.UnregisterCallback(UnityEngine.Experimental.UIElements.EventCallback`2&lt;TEventType,TUserArgsType&gt;,UnityEngine.Experimental.UIElements.Capture)">
- <summary>
- <para>Remove callback from the instance.</para>
- </summary>
- <param name="callback">The callback to remove.</param>
- <param name="useCapture">Select wether the callback should be removed from the capture or the bubbling phase.</param>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.Capture">
- <summary>
- <para>Used to specify the phases where an event handler should be executed.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.UIElements.Capture.Capture">
- <summary>
- <para>The event handler should be executed during the capture and the target phases.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.UIElements.Capture.NoCapture">
- <summary>
- <para>The event handler should be executed during the target and bubble up phases.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.ChangeEvent`1">
- <summary>
- <para>Sends an event when a value from a field changes.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.ChangeEvent_1.newValue">
- <summary>
- <para>The new value.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.ChangeEvent_1.previousValue">
- <summary>
- <para>The value before the change occured.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.ChangeEvent_1.#ctor">
- <summary>
- <para>Constructor.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.ChangeEvent_1.GetPooled(T,T)">
- <summary>
- <para>Gets an event from the event pool and initializes it with the given values. Use this function instead of creating new events. Events obtained from this method should be released back to the pool using ReleaseEvent().</para>
- </summary>
- <param name="previousValue"></param>
- <param name="newValue"></param>
- <returns>
- <para>An event.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.ChangeEvent_1.Init">
- <summary>
- <para>Sets the event to its initial state.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.ChangeType">
- <summary>
- <para>Enum which describes the various types of changes that can occur on a VisualElement.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.UIElements.ChangeType.All">
- <summary>
- <para>All change types have been flagged.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.UIElements.ChangeType.PersistentData">
- <summary>
- <para>Persistence key or parent has changed on the current VisualElement.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.UIElements.ChangeType.PersistentDataPath">
- <summary>
- <para>Persistence key or parent has changed on some child of the current VisualElement.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.CommandEventBase`1">
- <summary>
- <para>Base class for command events.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.CommandEventBase_1.commandName">
- <summary>
- <para>Name of the command.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.CommandEventBase_1.GetPooled(UnityEngine.Event)">
- <summary>
- <para>Gets an event from the event pool and initializes it with the given values. Use this function instead of creating new events. Events obtained from this method should be released back to the pool using ReleaseEvent().</para>
- </summary>
- <param name="commandName">The command name.</param>
- <param name="systemEvent">An IMGUI command event.</param>
- <returns>
- <para>An event.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.CommandEventBase_1.GetPooled(System.String)">
- <summary>
- <para>Gets an event from the event pool and initializes it with the given values. Use this function instead of creating new events. Events obtained from this method should be released back to the pool using ReleaseEvent().</para>
- </summary>
- <param name="commandName">The command name.</param>
- <param name="systemEvent">An IMGUI command event.</param>
- <returns>
- <para>An event.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.CommandEventBase_1.Init">
- <summary>
- <para>Reset the event members to their initial value.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.ContextClickEvent">
- <summary>
- <para>The event sent when clicking the right mouse button.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.ContextClickEvent.#ctor">
- <summary>
- <para>Constructor.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.ContextualMenu">
- <summary>
- <para>A contextual menu.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.ContextualMenu.AppendAction(System.String,System.Action`1&lt;UnityEngine.Experimental.UIElements.ContextualMenu/MenuAction&gt;,System.Func`2&lt;UnityEngine.Experimental.UIElements.ContextualMenu/MenuAction,UnityEngine.Experimental.UIElements.ContextualMenu/MenuAction/StatusFlags&gt;,System.Object)">
- <summary>
- <para>Add an item that will execute an action in the contextual menu. The item is added at the end of the current item list.</para>
- </summary>
- <param name="actionName">Name of the item. This name will be displayed in the contextual menu.</param>
- <param name="action">Callback to execute when the user selects this item in the menu.</param>
- <param name="actionStatusCallback">Callback to execute to determine the status of the item.</param>
- <param name="userData">An object that will be stored in the userData property of the MenuAction item.</param>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.ContextualMenu.AppendSeparator()">
- <summary>
- <para>Add a separator line in the menu. The separator is added at the end of the current item list.</para>
- </summary>
- <param name="subMenuPath">The submenu path where the separator will be added. Path components are delimited by forward slashes ('/').</param>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.ContextualMenu.AppendSeparator(System.String)">
- <summary>
- <para>Add a separator line in the menu. The separator is added at the end of the current item list.</para>
- </summary>
- <param name="subMenuPath">The submenu path where the separator will be added. Path components are delimited by forward slashes ('/').</param>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.ContextualMenu.#ctor">
- <summary>
- <para>Constructor.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.ContextualMenu.EventInfo">
- <summary>
- <para>A class holding information about the event that triggered the display of the contextual menu.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.ContextualMenu.EventInfo.localMousePosition">
- <summary>
- <para>If the triggering event was a mouse event, this property is the mouse position. The position is expressed using the coordinate system of the element that received the mouse event. Otherwise this property is zero.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.ContextualMenu.EventInfo.modifiers">
- <summary>
- <para>If modifier keys (Alt, Control, Shift, Windows/Command) were pressed to trigger the display of the contextual menu, this property lists the modifier keys.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.ContextualMenu.EventInfo.mousePosition">
- <summary>
- <para>If the triggering event was a mouse event, this property is the mouse position expressed using the global coordinate system. Otherwise this property is zero.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.ContextualMenu.EventInfo.#ctor(UnityEngine.Experimental.UIElements.EventBase)">
- <summary>
- <para>Constructor.</para>
- </summary>
- <param name="e"></param>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.ContextualMenu.InsertAction(System.Int32,System.String,System.Action`1&lt;UnityEngine.Experimental.UIElements.ContextualMenu/MenuAction&gt;,System.Func`2&lt;UnityEngine.Experimental.UIElements.ContextualMenu/MenuAction,UnityEngine.Experimental.UIElements.ContextualMenu/MenuAction/StatusFlags&gt;,System.Object)">
- <summary>
- <para>Add an item that will execute an action in the contextual menu. The item is added at the end of the specified index in the list.</para>
- </summary>
- <param name="actionName">Name of the item. This name will be displayed in the contextual menu.</param>
- <param name="action">Callback to execute when the user selects this item in the menu.</param>
- <param name="actionStatusCallback">Callback to execute to determine the status of the item.</param>
- <param name="atIndex">Index where the item should be inserted.</param>
- <param name="userData">An object that will be stored in the userData property of the MenuAction item. This object is accessible through the action callback.</param>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.ContextualMenu.InsertSeparator(System.String,System.Int32)">
- <summary>
- <para>Add a separator line in the menu. The separator is added at the end of the specified index in the list.</para>
- </summary>
- <param name="atIndex">Index where the separator should be inserted.</param>
- <param name="subMenuPath">The submenu path where the separator is added. Path components are delimited by forward slashes ('/').</param>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.ContextualMenu.MenuAction">
- <summary>
- <para>A menu action item.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.ContextualMenu.MenuAction.eventInfo">
- <summary>
- <para>Provides information on the event that triggered the contextual menu.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.UIElements.ContextualMenu.MenuAction.name">
- <summary>
- <para>The name of the item. The name can be prefixed by its submenu path. Path components are delimited by forward slashes ('/').</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.ContextualMenu.MenuAction.status">
- <summary>
- <para>The status of the item.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.ContextualMenu.MenuAction.userData">
- <summary>
- <para>The userData object stored by the constructor.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.ContextualMenu.MenuAction.AlwaysDisabled(UnityEngine.Experimental.UIElements.ContextualMenu/MenuAction)">
- <summary>
- <para>Status callback that always returns StatusFlags.Disabled.</para>
- </summary>
- <param name="a">Unused parameter.</param>
- <returns>
- <para>Always return StatusFlags.Disabled.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.ContextualMenu.MenuAction.AlwaysEnabled(UnityEngine.Experimental.UIElements.ContextualMenu/MenuAction)">
- <summary>
- <para>Status callback that always returns StatusFlags.Enabled.</para>
- </summary>
- <param name="a">Unused parameter.</param>
- <returns>
- <para>Always return StatusFlags.Enabled.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.ContextualMenu.MenuAction.#ctor(System.String,System.Action`1&lt;UnityEngine.Experimental.UIElements.ContextualMenu/MenuAction&gt;,System.Func`2&lt;UnityEngine.Experimental.UIElements.ContextualMenu/MenuAction,UnityEngine.Experimental.UIElements.ContextualMenu/MenuAction/StatusFlags&gt;,System.Object)">
- <summary>
- <para>Constructor.</para>
- </summary>
- <param name="actionName">The path and name of the menu item. Use the path, delimited by forward slashes ('/'), to place the menu item within a submenu.</param>
- <param name="actionCallback">Action to be executed when the menu item is selected.</param>
- <param name="actionStatusCallback">Function called to determine if the menu item is enabled.</param>
- <param name="userData">An object that will be stored in the userData property.</param>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.ContextualMenu.MenuAction.Execute">
- <summary>
- <para>Execute the callback associated with this item.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.ContextualMenu.MenuAction.UpdateActionStatus(UnityEngine.Experimental.UIElements.ContextualMenu/EventInfo)">
- <summary>
- <para>Update the status flag of this item by calling the item status callback.</para>
- </summary>
- <param name="eventInfo">Information about the event that triggered the display of the context menu, such as the mouse position or the key pressed.</param>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.ContextualMenu.MenuItem">
- <summary>
- <para>An item in a contextual menu.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.ContextualMenu.MenuItems">
- <summary>
- <para>Get the list of menu items.</para>
- </summary>
- <returns>
- <para>The list of items in the menu.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.ContextualMenu.PrepareForDisplay(UnityEngine.Experimental.UIElements.EventBase)">
- <summary>
- <para>Update the status of all items by calling their status callback and remove the separators in excess. This is called just before displaying the menu.</para>
- </summary>
- <param name="e"></param>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.ContextualMenu.RemoveItemAt(System.Int32)">
- <summary>
- <para>Remove the menu item at index.</para>
- </summary>
- <param name="index">The index of the item to remove.</param>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.ContextualMenu.Separator">
- <summary>
- <para>A separator menu item.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.UIElements.ContextualMenu.Separator.subMenuPath">
- <summary>
- <para>The submenu path where the separator will be added. Path components are delimited by forward slashes ('/').</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.ContextualMenu.Separator.#ctor(System.String)">
- <summary>
- <para>Constructor.</para>
- </summary>
- <param name="subMenuPath">The path for the submenu. Path components are delimited by forward slashes ('/').</param>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.ContextualMenuManager">
- <summary>
- <para>Use this class to display a contextual menu.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.ContextualMenuManager.DisplayMenu(UnityEngine.Experimental.UIElements.EventBase,UnityEngine.Experimental.UIElements.IEventHandler)">
- <summary>
- <para>Display the contextual menu.</para>
- </summary>
- <param name="triggerEvent">The event that triggered the display of the menu.</param>
- <param name="target">The element for which the menu is displayed.</param>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.ContextualMenuManager.DisplayMenuIfEventMatches(UnityEngine.Experimental.UIElements.EventBase,UnityEngine.Experimental.UIElements.IEventHandler)">
- <summary>
- <para>Check if the event is an event that triggers the display of the menu and display it if it needs to.</para>
- </summary>
- <param name="eventHandler">The element for which the menu is displayed.</param>
- <param name="evt">The event to inspect.</param>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.ContextualMenuManager.DoDisplayMenu(UnityEngine.Experimental.UIElements.ContextualMenu,UnityEngine.Experimental.UIElements.EventBase)">
- <summary>
- <para>Display the contextual menu.</para>
- </summary>
- <param name="menu">The menu to display.</param>
- <param name="triggerEvent">The event that triggered the display of the contextual menu.</param>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.ContextualMenuManipulator">
- <summary>
- <para>Manipulator that displays a contextual menu when the user clicks the right mouse button or presses the menu key on the keyboard.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.ContextualMenuManipulator.#ctor(System.Action`1&lt;UnityEngine.Experimental.UIElements.ContextualMenuPopulateEvent&gt;)">
- <summary>
- <para>Constructor.</para>
- </summary>
- <param name="menuBuilder"></param>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.ContextualMenuManipulator.RegisterCallbacksOnTarget">
- <summary>
- <para>Register the event callbacks on the manipulator target.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.ContextualMenuManipulator.UnregisterCallbacksFromTarget">
- <summary>
- <para>Unregister the event callbacks from the manipulator target.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.ContextualMenuPopulateEvent">
- <summary>
- <para>An event sent when a contextual menu needs to be filled with menu item.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.ContextualMenuPopulateEvent.menu">
- <summary>
- <para>The menu to populate.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.ContextualMenuPopulateEvent.#ctor">
- <summary>
- <para>Constructor.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.ContextualMenuPopulateEvent.GetPooled(UnityEngine.Experimental.UIElements.EventBase,UnityEngine.Experimental.UIElements.ContextualMenu,UnityEngine.Experimental.UIElements.IEventHandler)">
- <summary>
- <para>Retrieves an event from the event pool. Use this method to retrieve a mouse event and initialize the event, instead of creating a new mouse event.</para>
- </summary>
- <param name="triggerEvent">The event that triggered the display of the contextual menu.</param>
- <param name="menu">The menu to populate.</param>
- <param name="target">The element that triggered the display of the contextual menu.</param>
- <returns>
- <para>The event.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.ContextualMenuPopulateEvent.Init">
- <summary>
- <para>Reset the event members to their initial value.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.CreationContext">
- <summary>
- <para>This class is used during UXML template instantiation.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.CursorStyle">
- <summary>
- <para>Script interface for VisualElement cursor style property IStyle.cursor.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.CursorStyle.hotspot">
- <summary>
- <para>The offset from the top left of the texture to use as the target point (must be within the bounds of the cursor).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.CursorStyle.texture">
- <summary>
- <para>The texture to use for the cursor style. To use a texture as a cursor, import the texture with "Read/Write enabled" in the texture importer (or using the "Cursor" defaults).</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.DetachFromPanelEvent">
- <summary>
- <para>Event sent just before an element is detach from its parent, if the parent is the descendant of a panel.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.DetachFromPanelEvent.#ctor">
- <summary>
- <para>Constructor. Avoid newing events. Instead, use GetPooled() to get an event from a pool of reusable events.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.DragAndDropEventBase`1">
- <summary>
- <para>Base class for drag and drop events.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.DragEnterEvent">
- <summary>
- <para>Use the DragEnterEvent class to manage events that occur when dragging enters an element or one of its descendants. The DragEnterEvent can be cancelled, cannot be captured, and does not bubble.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.DragEnterEvent.#ctor">
- <summary>
- <para>Constructor. Avoid renewing events. Instead, use GetPooled() to get an event from a pool of reusable events.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.DragEnterEvent.Init">
- <summary>
- <para>Resets the event members to their initial values.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.DragExitedEvent">
- <summary>
- <para>The event sent to a dragged element when the drag and drop process ends.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.DragExitedEvent.#ctor">
- <summary>
- <para>Constructor.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.DragExitedEvent.Init">
- <summary>
- <para>Resets the event members to their initial values.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.DragLeaveEvent">
- <summary>
- <para>Use the DragLeaveEvent class to manage events sent when dragging leaves an element or one of its descendants. The DragLeaveEvent can be cancelled, cannot be captured, and does not bubble.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.DragLeaveEvent.#ctor">
- <summary>
- <para>Constructor. Avoid renewing events. Instead, use GetPooled() to get an event from a pool of reusable events.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.DragLeaveEvent.Init">
- <summary>
- <para>Resets the event members to their initial values.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.DragPerformEvent">
- <summary>
- <para>The event sent to an element when another element is dragged and dropped on the element.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.DragPerformEvent.#ctor">
- <summary>
- <para>Constructor.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.DragUpdatedEvent">
- <summary>
- <para>The event sent when the element being dragged enters a possible drop target.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.DragUpdatedEvent.#ctor">
- <summary>
- <para>Constructor.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.EventBase">
- <summary>
- <para>The base class for all UIElements events.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.EventBase.bubbles">
- <summary>
- <para>Returns whether this event type bubbles up in the event propagation path.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.EventBase.capturable">
- <summary>
- <para>Return whether this event is sent down the event propagation path during the capture phase.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.EventBase.currentTarget">
- <summary>
- <para>The current target of the event. The current target is the element in the propagation path for which event handlers are currently being executed.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.EventBase.dispatch">
- <summary>
- <para>Return whether the event is currently being dispatched to visual element. An event can not be redispatched while being dispatched. If you need to recursively redispatch an event, you should use a copy.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.EventBase.flags">
- <summary>
- <para>Flags for the event.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.EventBase.imguiEvent">
- <summary>
- <para>The IMGUIEvent at the source of this event. This can be null as not all events are generated by IMGUI.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.EventBase.isDefaultPrevented">
- <summary>
- <para>Return true if the default actions should not be executed for this event.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.EventBase.isImmediatePropagationStopped">
- <summary>
- <para>Return true if StopImmediatePropagation() has been called for this event.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.EventBase.isPropagationStopped">
- <summary>
- <para>Return true if StopPropagation() has been called for this event.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.EventBase.originalMousePosition">
- <summary>
- <para>The original mouse position of the IMGUI event, before it is transformed to the local element coordinates. </para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.EventBase.propagationPhase">
- <summary>
- <para>The current propagation phase.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.EventBase.target">
- <summary>
- <para>The target for this event. The is the visual element that received the event. Unlike currentTarget, target does not change when the event is sent to elements along the propagation path.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.EventBase.timestamp">
- <summary>
- <para>The time at which the event was created.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.EventBase.Dispose">
- <summary>
- <para>Implementation of IDisposable.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.EventBase.EventFlags">
- <summary>
- <para>Flags to describe the characteristics of an event.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.UIElements.EventBase.EventFlags.Bubbles">
- <summary>
- <para>Event will bubble up the propagation path (i.e. from the target parent up to the visual tree root).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.UIElements.EventBase.EventFlags.Cancellable">
- <summary>
- <para>Execution of default behavior for this event can be cancelled.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.UIElements.EventBase.EventFlags.Capturable">
- <summary>
- <para>Event will be sent down the propagation path during the capture phase (i.e. from the visual tree root down to the target parent).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.UIElements.EventBase.EventFlags.None">
- <summary>
- <para>Empty value.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.UIElements.EventBase.EventFlags.Pooled">
- <summary>
- <para>Event has been instanciated from the event pool.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.EventBase.GetEventTypeId">
- <summary>
- <para>Get the type id for this event instance.</para>
- </summary>
- <returns>
- <para>The type ID.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.EventBase.Init">
- <summary>
- <para>Reset the event members to their initial value.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.EventBase.PreventDefault">
- <summary>
- <para>Call this function to prevent the execution of the default actions for this event.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.EventBase.RegisterEventType">
- <summary>
- <para>Register an event class to the event type system.</para>
- </summary>
- <returns>
- <para>The type ID.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.EventBase.StopImmediatePropagation">
- <summary>
- <para>Immediately stop the propagation of this event. The event will not be sent to any further event handlers on the current target or on any other element in the propagation path.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.EventBase.StopPropagation">
- <summary>
- <para>Stop the propagation of this event. The event will not be sent to any further element in the propagation path. Further event handlers on the current target will be executed.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.EventBase`1">
- <summary>
- <para>Generic base class for events, implementing event pooling and automatic registration to the event type system.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.EventBase_1.Dispose">
- <summary>
- <para>Implementation of IDispose.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.EventBase_1.GetEventTypeId">
- <summary>
- <para>Get the type id for this event instance.</para>
- </summary>
- <returns>
- <para>The type ID.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.EventBase_1.GetPooled">
- <summary>
- <para>Get an event from the event pool. Use this function instead of creating new events. Events obtained from this method should be released back to the pool using ReleaseEvent().</para>
- </summary>
- <returns>
- <para>An event.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.EventBase_1.ReleasePooled(T)">
- <summary>
- <para>Release an event obtained from GetPooled().</para>
- </summary>
- <param name="evt">The event to release.</param>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.EventBase_1.TypeId">
- <summary>
- <para>Get the type id for this event instance.</para>
- </summary>
- <returns>
- <para>The event instance type id.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.ExecuteCommandEvent">
- <summary>
- <para>The event sent when an element should execute a command.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.ExecuteCommandEvent.#ctor">
- <summary>
- <para>Constructor.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.Focusable">
- <summary>
- <para>Base class for objects that can get the focus.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.Focusable.canGrabFocus">
- <summary>
- <para>Return true if the element can be focused.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.Focusable.focusController">
- <summary>
- <para>Return the focus controller for this element.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.Focusable.focusIndex">
- <summary>
- <para>An integer used to sort focusables in the focus ring. A negative value means that the element can not be focused.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.Focusable.Blur">
- <summary>
- <para>Tell the element to release the focus.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.Focusable.Focus">
- <summary>
- <para>Attempt to give the focus to this element.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.FocusChangeDirection">
- <summary>
- <para>Base class for defining in which direction the focus moves in a focus ring.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.FocusChangeDirection.lastValue">
- <summary>
- <para>Last value for the direction defined by this class.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.FocusChangeDirection.none">
- <summary>
- <para>The null direction. This is usually used when the focus stays on the same element.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.FocusChangeDirection.unspecified">
- <summary>
- <para>Focus came from an unspecified direction, for example after a mouse down.</para>
- </summary>
- </member>
- <member name="?:UnityEngine.Experimental.UIElements.FocusChangeDirection.implop_int(FocusChangeDirection)(UnityEngine.Experimental.UIElements.FocusChangeDirection)">
- <summary>
- <para>The underlying integer value for this direction.</para>
- </summary>
- <param name="fcd"></param>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.FocusController">
- <summary>
- <para>Class in charge of managing the focus inside a Panel.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.FocusController.focusedElement">
- <summary>
- <para>The currently focused element.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.FocusController.#ctor(UnityEngine.Experimental.UIElements.IFocusRing)">
- <summary>
- <para>Constructor.</para>
- </summary>
- <param name="focusRing"></param>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.FocusController.SwitchFocusOnEvent(UnityEngine.Experimental.UIElements.EventBase)">
- <summary>
- <para>Ask the controller to change the focus according to the event. The focus controller will use its focus ring to choose the next element to be focused.</para>
- </summary>
- <param name="e"></param>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.FocusEvent">
- <summary>
- <para>Event sent immediately after an element has gained focus. Capturable, does not bubbles, non-cancellable.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.FocusEvent.#ctor">
- <summary>
- <para>Constructor. Avoid newing events. Instead, use GetPooled() to get an event from a pool of reusable events.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.FocusEventBase`1">
- <summary>
- <para>Base class for focus related events.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.FocusEventBase_1.direction">
- <summary>
- <para>Direction of the focus change.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.FocusEventBase_1.relatedTarget">
- <summary>
- <para>For FocusOut and Blur events, the element gaining the focus. For FocusIn and Focus events, the element losing the focus.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.FocusEventBase_1.GetPooled(UnityEngine.Experimental.UIElements.IEventHandler,UnityEngine.Experimental.UIElements.Focusable,UnityEngine.Experimental.UIElements.FocusChangeDirection)">
- <summary>
- <para>Get an event from the event pool and initialize it with the given values. Use this function instead of creating new events. Events obtained from this method should be released back to the pool using ReleaseEvent().</para>
- </summary>
- <param name="target">The event target.</param>
- <param name="relatedTarget">The related target.</param>
- <param name="direction">The direction of the focus change.</param>
- <returns>
- <para>An event.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.FocusEventBase_1.Init">
- <summary>
- <para>Reset the event members to their initial value.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.FocusInEvent">
- <summary>
- <para>Event sent immediately before an element gains focus. Capturable, bubbles, non-cancellable.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.FocusInEvent.#ctor">
- <summary>
- <para>Constructor.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.FocusInEvent.Init">
- <summary>
- <para>Reset the event members to their initial value.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.FocusOutEvent">
- <summary>
- <para>Event sent immediately before an element loses focus. Capturable, bubbles, non-cancellable.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.FocusOutEvent.#ctor">
- <summary>
- <para>Constructor. Avoid newing events. Instead, use GetPooled() to get an event from a pool of reusable events.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.FocusOutEvent.Init">
- <summary>
- <para>Reset the event members to their initial value.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.GeometryChangedEvent">
- <summary>
- <para>Event sent after layout calculations, when the position or the dimension of an element changes. This event cannot be captured, cannot be cancelled, and it does not bubble.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.GeometryChangedEvent.newRect">
- <summary>
- <para>The new dimensions of the element.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.GeometryChangedEvent.oldRect">
- <summary>
- <para>The old dimensions of the element.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.GeometryChangedEvent.#ctor">
- <summary>
- <para>Constructor.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.GeometryChangedEvent.GetPooled(UnityEngine.Rect,UnityEngine.Rect)">
- <summary>
- <para>Gets an event from the event pool and initializes the event with the specified values. Use this method instead of instancing new events. Use Dispose() to release events back to the event pool.</para>
- </summary>
- <param name="oldRect">The old dimensions of the element.</param>
- <param name="newRect">The new dimensions of the element.</param>
- <returns>
- <para>Returns an event from the pool.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.GeometryChangedEvent.Init">
- <summary>
- <para>Resets the event values to their initial values.</para>
- </summary>
- </member>
- <member name="?:UnityEngine.Experimental.UIElements.IChangeEvent">
- <summary>
- <para>Base interface for ChangeEvent.</para>
- </summary>
- </member>
- <member name="?:UnityEngine.Experimental.UIElements.ICommandEvent">
- <summary>
- <para>Interface for Command events.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.ICommandEvent.commandName">
- <summary>
- <para>Name of the command.</para>
- </summary>
- </member>
- <member name="?:UnityEngine.Experimental.UIElements.IDragAndDropEvent">
- <summary>
- <para>Interface for drag and drop events.</para>
- </summary>
- </member>
- <member name="?:UnityEngine.Experimental.UIElements.IEventDispatcher">
- <summary>
- <para>Interface for event dispatchers.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.IEventDispatcher.DispatchEvent(UnityEngine.Experimental.UIElements.EventBase,UnityEngine.Experimental.UIElements.IPanel)">
- <summary>
- <para>Dispatch an event to the panel.</para>
- </summary>
- <param name="evt">The event to dispatch.</param>
- <param name="panel">The panel where the event will be dispatched.</param>
- </member>
- <member name="?:UnityEngine.Experimental.UIElements.IEventHandler">
- <summary>
- <para>Interface for class capable of handling events.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.IEventHandler.HandleEvent(UnityEngine.Experimental.UIElements.EventBase)">
- <summary>
- <para>Handle an event.</para>
- </summary>
- <param name="evt">The event to handle.</param>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.IEventHandler.HasBubbleHandlers">
- <summary>
- <para>Return true if event handlers for the event propagation bubble up phase have been attached on this object.</para>
- </summary>
- <returns>
- <para>True if object has event handlers for the bubble up phase.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.IEventHandler.HasCaptureHandlers">
- <summary>
- <para>Return true if event handlers for the event propagation capture phase have been attached on this object.</para>
- </summary>
- <returns>
- <para>True if object has event handlers for the capture phase.</para>
- </returns>
- </member>
- <member name="?:UnityEngine.Experimental.UIElements.IFocusEvent">
- <summary>
- <para>Interface for focus events.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IFocusEvent.direction">
- <summary>
- <para>Direction of the focus change.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IFocusEvent.relatedTarget">
- <summary>
- <para>Related target. See implementation for specific meaning.</para>
- </summary>
- </member>
- <member name="?:UnityEngine.Experimental.UIElements.IFocusRing">
- <summary>
- <para>Interface for classes implementing focus rings.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.IFocusRing.GetFocusChangeDirection(UnityEngine.Experimental.UIElements.Focusable,UnityEngine.Experimental.UIElements.EventBase)">
- <summary>
- <para>Get the direction of the focus change for the given event. For example, when the Tab key is pressed, focus should be given to the element to the right.</para>
- </summary>
- <param name="currentFocusable"></param>
- <param name="e"></param>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.IFocusRing.GetNextFocusable(UnityEngine.Experimental.UIElements.Focusable,UnityEngine.Experimental.UIElements.FocusChangeDirection)">
- <summary>
- <para>Get the next element in the given direction.</para>
- </summary>
- <param name="currentFocusable"></param>
- <param name="direction"></param>
- </member>
- <member name="?:UnityEngine.Experimental.UIElements.IKeyboardEvent">
- <summary>
- <para>Interface for keyboard events.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IKeyboardEvent.altKey">
- <summary>
- <para>Return true if the Alt key is pressed.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IKeyboardEvent.character">
- <summary>
- <para>The character.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IKeyboardEvent.commandKey">
- <summary>
- <para>Return true if the Windows/Command key is pressed.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IKeyboardEvent.ctrlKey">
- <summary>
- <para>Return true if the Control key is pressed.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IKeyboardEvent.keyCode">
- <summary>
- <para>The key code.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IKeyboardEvent.modifiers">
- <summary>
- <para>Flag set holding the pressed modifier keys (Alt, Control, Shift, Windows/Command).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IKeyboardEvent.shiftKey">
- <summary>
- <para>Return true if the Shift key is pressed.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.Image">
- <summary>
- <para>A VisualElement representing a source texture.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.Image.image">
- <summary>
- <para>The source texture of the Image element.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.Image.sourceRect">
- <summary>
- <para>The source rectangle inside the texture relative to the top left corner.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.Image.uv">
- <summary>
- <para>The base texture coordinates of the Image relative to the bottom left corner.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.Image.ImageFactory">
- <summary>
- <para>Instantiates an Image using the data read from a UXML file.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.Image.ImageFactory.#ctor">
- <summary>
- <para>Constructor.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.Image.ImageUxmlTraits">
- <summary>
- <para>UxmlTraits for the Image.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.Image.ImageUxmlTraits.uxmlChildElementsDescription">
- <summary>
- <para>Returns an empty enumerable, as images generally do not have children.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.Image.ImageUxmlTraits.#ctor">
- <summary>
- <para>Constructor.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.IMGUIContainer.IMGUIContainerFactory">
- <summary>
- <para>Instantiates an IMGUIContainer using the data read from a UXML file.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.IMGUIContainer.IMGUIContainerFactory.#ctor">
- <summary>
- <para>Constructor.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.IMGUIContainer.IMGUIContainerUxmlTraits">
- <summary>
- <para>UxmlTraits for the IMGUIContainer.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IMGUIContainer.IMGUIContainerUxmlTraits.uxmlChildElementsDescription">
- <summary>
- <para>Returns an empty enumerable, as IMGUIContainer cannot have VisualElement children.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.IMGUIContainer.IMGUIContainerUxmlTraits.#ctor">
- <summary>
- <para>Constructor.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.IMGUIEvent">
- <summary>
- <para>Class used to dispatch IMGUI event types that have no equivalent in UIElements events.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.IMGUIEvent.#ctor">
- <summary>
- <para>Constructor. Avoid newing events. Instead, use GetPooled() to get an event from a pool of reusable events.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.IMGUIEvent.GetPooled(UnityEngine.Event)">
- <summary>
- <para>Get an event from the event pool and initialize it with the given values. Use this function instead of creating new events. Events obtained from this method should be released back to the pool using ReleaseEvent().</para>
- </summary>
- <param name="systemEvent">The IMGUI event used to initialize the event.</param>
- <returns>
- <para>An event.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.IMGUIEvent.Init">
- <summary>
- <para>Reset the event members to their initial value.</para>
- </summary>
- </member>
- <member name="?:UnityEngine.Experimental.UIElements.IMouseCaptureEvent">
- <summary>
- <para>Interface for mouse capture events.</para>
- </summary>
- </member>
- <member name="?:UnityEngine.Experimental.UIElements.IMouseEvent">
- <summary>
- <para>Interface for mouse events.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IMouseEvent.altKey">
- <summary>
- <para>Return true if the Alt key is pressed.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IMouseEvent.button">
- <summary>
- <para>Integer representing the pressed mouse button: 0 is left, 1 is right, 2 is center.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IMouseEvent.clickCount">
- <summary>
- <para>Number of clicks.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IMouseEvent.commandKey">
- <summary>
- <para>Return true if the Windows/Command key is pressed.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IMouseEvent.ctrlKey">
- <summary>
- <para>Return true if the Control key is pressed.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IMouseEvent.localMousePosition">
- <summary>
- <para>The mouse position in the current target coordinate system.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IMouseEvent.modifiers">
- <summary>
- <para>Flag set holding the pressed modifier keys (Alt, Control, Shift, Windows/Command).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IMouseEvent.mouseDelta">
- <summary>
- <para>Mouse position difference between the last mouse event and this one.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IMouseEvent.mousePosition">
- <summary>
- <para>The mouse position in the panel coordinate system.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IMouseEvent.shiftKey">
- <summary>
- <para>Return true if the Shift key is pressed.</para>
- </summary>
- </member>
- <member name="?:UnityEngine.Experimental.UIElements.INotifyValueChanged_1">
- <summary>
- <para>Interface for controls that hold a value and can notify when it is changed by user input.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.INotifyValueChanged_1.value">
- <summary>
- <para>The Value held by the control.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.INotifyValueChanged_1.OnValueChanged(UnityEngine.Experimental.UIElements.EventCallback`1&lt;UnityEngine.Experimental.UIElements.ChangeEvent`1&lt;T&gt;&gt;)">
- <summary>
- <para>Registers this callback to receive ChangeEvent&lt;T&gt; when value was changed by user input.</para>
- </summary>
- <param name="callback"></param>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.INotifyValueChanged_1.SetValueAndNotify(T)">
- <summary>
- <para>Set the value and, if different, notifies registers callbacks with a ChangeEvent&lt;T&gt;</para>
- </summary>
- <param name="newValue">The new value to be set.</param>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.InputEvent">
- <summary>
- <para>Sends an event when text from a TextField changes.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.InputEvent.newData">
- <summary>
- <para>The new text.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.InputEvent.previousData">
- <summary>
- <para>The text before the change occured.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.InputEvent.#ctor">
- <summary>
- <para>Constructor.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.InputEvent.GetPooled(System.String,System.String)">
- <summary>
- <para>Gets an event from the event pool and initializes it with the given values. Use this function instead of creating new events. Events obtained from this method should be released back to the pool using ReleaseEvent().</para>
- </summary>
- <param name="newData">The new text.</param>
- <param name="previousData">The text before the change occured.</param>
- <returns>
- <para>An event.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.InputEvent.Init">
- <summary>
- <para>Sets the event to its initial state.</para>
- </summary>
- </member>
- <member name="?:UnityEngine.Experimental.UIElements.IPanel">
- <summary>
- <para>Interface for classes implementing UI panels.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IPanel.focusController">
- <summary>
- <para>Return the focus controller for this panel.</para>
- </summary>
- </member>
- <member name="?:UnityEngine.Experimental.UIElements.IScheduledItem">
- <summary>
- <para>A reference to a scheduled action.</para>
- </summary>
- </member>
- <member name="?:UnityEngine.Experimental.UIElements.IScheduler">
- <summary>
- <para>A scheduler allows you to register actions to be executed at a later point.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.IScheduler.Schedule(UnityEngine.Experimental.UIElements.IScheduledItem)">
- <summary>
- <para>Add this item to the list of scheduled tasks.</para>
- </summary>
- <param name="item">The item to register.</param>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.IScheduler.ScheduleForDuration(System.Action`1&lt;UnityEngine.Experimental.UIElements.TimerState&gt;,System.Int64,System.Int64,System.Int64)">
- <summary>
- <para>Schedule this action to be executed later. The item will be automatically unscheduled after it has ran for the amount of time specified with the durationMs parameter.</para>
- </summary>
- <param name="timerUpdateEvent">Action to be executed.</param>
- <param name="delayMs">The minimum delay in milliseconds before executing the action.</param>
- <param name="intervalMs">The minimum interval in milliseconds between each execution.</param>
- <param name="durationMs">The total duration in milliseconds where this item will be active.</param>
- <returns>
- <para>Internal reference to the scheduled action.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.IScheduler.ScheduleOnce(System.Action`1&lt;UnityEngine.Experimental.UIElements.TimerState&gt;,System.Int64)">
- <summary>
- <para>Schedule this action to be executed later. After the execution, the item will be automatically unscheduled.</para>
- </summary>
- <param name="timerUpdateEvent">Action to be executed.</param>
- <param name="delayMs">The minimum delay in milliseconds before executing the action.</param>
- <returns>
- <para>Internal reference to the scheduled action.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.IScheduler.ScheduleUntil(System.Action`1&lt;UnityEngine.Experimental.UIElements.TimerState&gt;,System.Int64,System.Int64,System.Func`1&lt;System.Boolean&gt;)">
- <summary>
- <para>Schedule this action to be executed later. Item will be unscheduled when condition is met.</para>
- </summary>
- <param name="timerUpdateEvent">Action to be executed.</param>
- <param name="delayMs">The minimum delay in milliseconds before executing the action.</param>
- <param name="intervalMs">The minimum interval in milliseconds bettwen each execution.</param>
- <param name="stopCondition">When condition returns true, the item will be unscheduled.</param>
- <returns>
- <para>Internal reference to the scheduled action.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.IScheduler.Unschedule(UnityEngine.Experimental.UIElements.IScheduledItem)">
- <summary>
- <para>Manually unschedules a previously scheduled action.</para>
- </summary>
- <param name="item">The item to be removed from this scheduler.</param>
- </member>
- <member name="?:UnityEngine.Experimental.UIElements.IStyle">
- <summary>
- <para>This interface provides access to a VisualElement style data.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IStyle.alignContent">
- <summary>
- <para>Alignment of the whole area of children on the cross axis if they span over multiple lines in this container.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IStyle.alignItems">
- <summary>
- <para>Alignment of children on the cross axis of this container.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IStyle.alignSelf">
- <summary>
- <para>Similar to align-items, but only for this specific element.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IStyle.backgroundColor">
- <summary>
- <para>Background color to paint in the element's box.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IStyle.backgroundImage">
- <summary>
- <para>Background image to paint in the element's box.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IStyle.backgroundSize">
- <summary>
- <para>Background image scaling in the element's box.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IStyle.borderBottom">
- <summary>
- <para>Space reserved for the bottom edge of the border during the layout phase.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IStyle.borderBottomLeftRadius">
- <summary>
- <para>This is the radius of the bottom-left corner when a rounded rectangle is drawn in the element's box.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IStyle.borderBottomRightRadius">
- <summary>
- <para>This is the radius of the bottom-right corner when a rounded rectangle is drawn in the element's box.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IStyle.borderBottomWidth">
- <summary>
- <para>Space reserved for the bottom edge of the border during the layout phase.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IStyle.borderColor">
- <summary>
- <para>Color of the border to paint inside the element's box.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IStyle.borderLeft">
- <summary>
- <para>Space reserved for the left edge of the border during the layout phase.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IStyle.borderLeftWidth">
- <summary>
- <para>Space reserved for the left edge of the border during the layout phase.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IStyle.borderRadius">
- <summary>
- <para>This is the radius of every corner when a rounded rectangle is drawn in the element's box.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IStyle.borderRight">
- <summary>
- <para>Space reserved for the right edge of the border during the layout phase.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IStyle.borderRightWidth">
- <summary>
- <para>Space reserved for the right edge of the border during the layout phase.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IStyle.borderTop">
- <summary>
- <para>Space reserved for the top edge of the border during the layout phase.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IStyle.borderTopLeftRadius">
- <summary>
- <para>This is the radius of the top-left corner when a rounded rectangle is drawn in the element's box.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IStyle.borderTopRightRadius">
- <summary>
- <para>This is the radius of the top-right corner when a rounded rectangle is drawn in the element's box.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IStyle.borderTopWidth">
- <summary>
- <para>Space reserved for the top edge of the border during the layout phase.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IStyle.cursor">
- <summary>
- <para>Mouse cursor to display when the mouse pointer is over an element.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IStyle.flex">
- <summary>
- <para>Ration of this element in its parent during the layout phase.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IStyle.flexBasis">
- <summary>
- <para>Initial main size of a flex item, on the main flex axis. The final layout mught be smaller or larger, according to the flex shrinking and growing determined by the flex property.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IStyle.flexDirection">
- <summary>
- <para>Direction of the main axis to layout children in a container.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IStyle.flexGrow">
- <summary>
- <para>Specifies how much the item will grow relative to the rest of the flexible items inside the same container.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IStyle.flexShrink">
- <summary>
- <para>Specifies how the item will shrink relative to the rest of the flexible items inside the same container.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IStyle.flexWrap">
- <summary>
- <para>Placement of children over multiple lines if not enough space is available in this container.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IStyle.font">
- <summary>
- <para>Font to draw the element's text.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IStyle.fontSize">
- <summary>
- <para>Font size to draw the element's text.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IStyle.fontStyle">
- <summary>
- <para>Font style to draw the element's text.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IStyle.height">
- <summary>
- <para>Fixed height of an element for the layout.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IStyle.justifyContent">
- <summary>
- <para>Justification of children on the main axis of this container.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IStyle.marginBottom">
- <summary>
- <para>Space reserved for the bottom edge of the margin during the layout phase.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IStyle.marginLeft">
- <summary>
- <para>Space reserved for the left edge of the margin during the layout phase.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IStyle.marginRight">
- <summary>
- <para>Space reserved for the right edge of the margin during the layout phase.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IStyle.marginTop">
- <summary>
- <para>Space reserved for the top edge of the margin during the layout phase.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IStyle.maxHeight">
- <summary>
- <para>Maximum height for an element, when it is flexible or measures its own size.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IStyle.maxWidth">
- <summary>
- <para>Maximum width for an element, when it is flexible or measures its own size.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IStyle.minHeight">
- <summary>
- <para>Minimum height for an element, when it is flexible or measures its own size.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IStyle.minWidth">
- <summary>
- <para>Minimum height for an element, when it is flexible or measures its own size.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IStyle.paddingBottom">
- <summary>
- <para>Space reserved for the bottom edge of the padding during the layout phase.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IStyle.paddingLeft">
- <summary>
- <para>Space reserved for the left edge of the padding during the layout phase.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IStyle.paddingRight">
- <summary>
- <para>Space reserved for the right edge of the padding during the layout phase.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IStyle.paddingTop">
- <summary>
- <para>Space reserved for the top edge of the padding during the layout phase.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IStyle.positionBottom">
- <summary>
- <para>Bottom distance from the element's box during layout.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IStyle.positionLeft">
- <summary>
- <para>Left distance from the element's box during layout.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IStyle.positionRight">
- <summary>
- <para>Right distance from the element's box during layout.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IStyle.positionTop">
- <summary>
- <para>Top distance from the element's box during layout.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IStyle.positionType">
- <summary>
- <para>Element's positioning in its parent container.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IStyle.sliceBottom">
- <summary>
- <para>Size of the 9-slice's bottom edge when painting an element's background image.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IStyle.sliceLeft">
- <summary>
- <para>Size of the 9-slice's left edge when painting an element's background image.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IStyle.sliceRight">
- <summary>
- <para>Size of the 9-slice's right edge when painting an element's background image.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IStyle.sliceTop">
- <summary>
- <para>Size of the 9-slice's top edge when painting an element's background image.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IStyle.textAlignment">
- <summary>
- <para>Text alignment in the element's box.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IStyle.textClipping">
- <summary>
- <para>Clipping if the text does not fit in the element's box.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IStyle.textColor">
- <summary>
- <para>Color to use when drawing the text of an element.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IStyle.visibility">
- <summary>
- <para>Specifies whether or not an element is visible.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IStyle.width">
- <summary>
- <para>Fixed width of an element for the layout.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IStyle.wordWrap">
- <summary>
- <para>Word wrapping over multiple lines if not enough space is available to draw the text of an element.</para>
- </summary>
- </member>
- <member name="?:UnityEngine.Experimental.UIElements.ITransform">
- <summary>
- <para>This interface provides access to a VisualElement transform data.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.ITransform.matrix">
- <summary>
- <para>Transformation matrix calculated from the position, rotation and scale of the transform (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.ITransform.position">
- <summary>
- <para>The position of the VisualElement's transform.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.ITransform.rotation">
- <summary>
- <para>The rotation of the VisualElement's transform stored as a Quaternion.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.ITransform.scale">
- <summary>
- <para>The scale of the VisualElement's transform.</para>
- </summary>
- </member>
- <member name="?:UnityEngine.Experimental.UIElements.IUIElementDataWatch">
- <summary>
- <para>Interface allowing access to this elements datawatch.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.IUIElementDataWatch.RegisterWatch(UnityEngine.Object,System.Action`1&lt;UnityEngine.Object&gt;)">
- <summary>
- <para>Starts watching an object. When watched, all changes on an object will trigger the callback to be invoked.</para>
- </summary>
- <param name="toWatch">The object to watch.</param>
- <param name="watchNotification">Callback.</param>
- <returns>
- <para>A reference to this datawatch request. Disposing it will ensure any native resources will also be released.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.IUIElementDataWatch.UnregisterWatch(UnityEngine.Experimental.UIElements.IUIElementDataWatchRequest)">
- <summary>
- <para>Unregisters a previously watched request.</para>
- </summary>
- <param name="requested">The registered request.</param>
- </member>
- <member name="?:UnityEngine.Experimental.UIElements.IUIElementDataWatchRequest">
- <summary>
- <para>An internal reference to a data watch request.</para>
- </summary>
- </member>
- <member name="?:UnityEngine.Experimental.UIElements.IUxmlAttributes">
- <summary>
- <para>This type allows UXML attribute value retrieval during the VisualElement instantiation. An instance will be provided to the factory method - see UXMLFactoryAttribute.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.IUxmlAttributes.GetPropertyBool(System.String,System.Boolean)">
- <summary>
- <para>Return the value of an attribute as a bool, or the defaultValue if the property is not found.</para>
- </summary>
- <param name="propertyName">Attribute name.</param>
- <param name="defaultValue">Default value if the property is not found.</param>
- <returns>
- <para>The attribute value or the default value if not found.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.IUxmlAttributes.GetPropertyColor(System.String,UnityEngine.Color)">
- <summary>
- <para>Return the value of an attribute as a Color, or the defaultValue if the property is not found.</para>
- </summary>
- <param name="propertyName">Attribute name.</param>
- <param name="defaultValue">Default value if the property is not found.</param>
- <returns>
- <para>The attribute value or the default value if not found.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.IUxmlAttributes.GetPropertyDouble(System.String,System.Double)">
- <summary>
- <para>Return the value of an attribute as a double, or the defaultValue if the property is not found.</para>
- </summary>
- <param name="defaultValue">Default value if the property is not found.</param>
- <param name="propertyName">AttributeName.</param>
- <returns>
- <para>The attribute value or the default value if not found.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.IUxmlAttributes.GetPropertyEnum(System.String,T)">
- <summary>
- <para>Return the value of an attribute as a T, or the defaultValue if the property is not found.</para>
- </summary>
- <param name="propertyName">Attribute name.</param>
- <param name="defaultValue">Default value if the property is not found.</param>
- <returns>
- <para>The attribute value or the default value if not found.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.IUxmlAttributes.GetPropertyFloat(System.String,System.Single)">
- <summary>
- <para>Return the value of an attribute as a float, or the defaultValue if the property is not found.</para>
- </summary>
- <param name="propertyName">Attribute name.</param>
- <param name="defaultValue">Default value if the property is not found.</param>
- <returns>
- <para>The attribute value or the default value if not found.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.IUxmlAttributes.GetPropertyInt(System.String,System.Int32)">
- <summary>
- <para>Return the value of an attribute as an int, or the defaultValue if the property is not found.</para>
- </summary>
- <param name="propertyName">Attribute name.</param>
- <param name="defaultValue">Default value if the property is not found.</param>
- <returns>
- <para>The attribute value or the default value if not found.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.IUxmlAttributes.GetPropertyLong(System.String,System.Int64)">
- <summary>
- <para>Return the value of an attribute as a long, or the defaultValue if the property is not found.</para>
- </summary>
- <param name="propertyName">Attribute name.</param>
- <param name="defaultValue">Default value if the property is not found.</param>
- <returns>
- <para>The attribute value or the default value if not found.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.IUxmlAttributes.GetPropertyString(System.String,System.String)">
- <summary>
- <para>Return the value of an attribute as a string, or the defaultValue if the property is not found.</para>
- </summary>
- <param name="propertyName">Attribute name.</param>
- <param name="defaultValue">Default value if the property is not found.</param>
- <returns>
- <para>The attribute value or the default value if not found.</para>
- </returns>
- </member>
- <member name="?:UnityEngine.Experimental.UIElements.IUxmlFactory">
- <summary>
- <para>Interface for UXML factories. While it is not strictly required, concrete factories should derive from the generic class UxmlFactory.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IUxmlFactory.canHaveAnyAttribute">
- <summary>
- <para>Must return true if the UXML element attributes are not restricted to the values enumerated by uxmlAttributesDescription.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IUxmlFactory.substituteForTypeName">
- <summary>
- <para>The type of element for which this element type can substitute for.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IUxmlFactory.substituteForTypeNamespace">
- <summary>
- <para>The UXML namespace for the type returned by substituteForTypeName.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IUxmlFactory.substituteForTypeQualifiedName">
- <summary>
- <para>The fully qualified XML name for the type returned by substituteForTypeName.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IUxmlFactory.uxmlAttributesDescription">
- <summary>
- <para>Describes the UXML attributes expected by the element. The attributes enumerated here will appear in the UXML schema.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IUxmlFactory.uxmlChildElementsDescription">
- <summary>
- <para>Describes the types of element that can appear as children of this element in a UXML file.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IUxmlFactory.uxmlName">
- <summary>
- <para>The name of the UXML element read by the factory.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IUxmlFactory.uxmlNamespace">
- <summary>
- <para>The namespace of the UXML element read by the factory.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IUxmlFactory.uxmlQualifiedName">
- <summary>
- <para>The fully qualified name of the UXML element read by the factory.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.IUxmlFactory.AcceptsAttributeBag(UnityEngine.Experimental.UIElements.IUxmlAttributes)">
- <summary>
- <para>Returns true if the factory accepts the content of the attribute bag.</para>
- </summary>
- <param name="bag">The attribute bag.</param>
- <returns>
- <para>True if the factory accepts the content of the attribute bag. False otherwise.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.IUxmlFactory.Create(UnityEngine.Experimental.UIElements.IUxmlAttributes,UnityEngine.Experimental.UIElements.CreationContext)">
- <summary>
- <para>Instanciate and initialize an object of type T0.</para>
- </summary>
- <param name="bag">A bag of name-value pairs, one for each attribute of the UXML element. This can be used to initialize the properties of the created object.</param>
- <param name="cc">When the element is created as part of a template instance inserted in another document, this contains information about the insertion point.</param>
- <returns>
- <para>The created object.</para>
- </returns>
- </member>
- <member name="?:UnityEngine.Experimental.UIElements.IVisualElementScheduledItem">
- <summary>
- <para>Represents a scheduled task created with a VisualElement's schedule interface.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IVisualElementScheduledItem.element">
- <summary>
- <para>Returns the VisualElement this object is associated with.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.IVisualElementScheduledItem.isActive">
- <summary>
- <para>Will be true when this item is scheduled. Note that an item's callback will only be executed when it's VisualElement is attached to a panel.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.IVisualElementScheduledItem.Every(System.Int64)">
- <summary>
- <para>Repeats this action after a specified time.</para>
- </summary>
- <param name="intervalMs">Minimum amount of time in milliseconds between each action execution.</param>
- <returns>
- <para>This ScheduledItem.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.IVisualElementScheduledItem.ExecuteLater(System.Int64)">
- <summary>
- <para>Cancels any previously scheduled execution of this item and re-schedules the item.</para>
- </summary>
- <param name="delayMs">Minimum time in milliseconds before this item will be executed.</param>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.IVisualElementScheduledItem.ForDuration(System.Int64)">
- <summary>
- <para>After specified duration, the item will be automatically unscheduled.</para>
- </summary>
- <param name="durationMs">The total duration in milliseconds where this item will be active.</param>
- <returns>
- <para>This ScheduledItem.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.IVisualElementScheduledItem.Pause">
- <summary>
- <para>Removes this item from its VisualElement's scheduler.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.IVisualElementScheduledItem.Resume">
- <summary>
- <para>If not already active, will schedule this item on its VisualElement's scheduler.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.IVisualElementScheduledItem.StartingIn(System.Int64)">
- <summary>
- <para>Adds a delay to the first invokation.</para>
- </summary>
- <param name="delayMs">The minimum number of milliseconds after activation where this item's action will be executed.</param>
- <returns>
- <para>This ScheduledItem.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.IVisualElementScheduledItem.Until(System.Func`1&lt;System.Boolean&gt;)">
- <summary>
- <para>Item will be unscheduled automatically when specified condition is met.</para>
- </summary>
- <param name="stopCondition">When condition returns true, the item will be unscheduled.</param>
- <returns>
- <para>This ScheduledItem.</para>
- </returns>
- </member>
- <member name="?:UnityEngine.Experimental.UIElements.IVisualElementScheduler">
- <summary>
- <para>A scheduler allows you to register actions to be executed at a later point.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.IVisualElementScheduler.Execute(System.Action`1&lt;UnityEngine.Experimental.UIElements.TimerState&gt;)">
- <summary>
- <para>Schedule this action to be executed later.</para>
- </summary>
- <param name="timerUpdateEvent">The action to be executed.</param>
- <param name="updateEvent">The action to be executed.</param>
- <returns>
- <para>Reference to the scheduled action.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.IVisualElementScheduler.Execute(System.Action)">
- <summary>
- <para>Schedule this action to be executed later.</para>
- </summary>
- <param name="timerUpdateEvent">The action to be executed.</param>
- <param name="updateEvent">The action to be executed.</param>
- <returns>
- <para>Reference to the scheduled action.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.KeyboardEventBase`1">
- <summary>
- <para>Base class for keyboard events.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.KeyboardEventBase_1.altKey">
- <summary>
- <para>Return true if the Alt key is pressed.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.KeyboardEventBase_1.character">
- <summary>
- <para>The character.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.KeyboardEventBase_1.commandKey">
- <summary>
- <para>Return true if the Windows/Command key is pressed.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.KeyboardEventBase_1.ctrlKey">
- <summary>
- <para>Return true if the Control key is pressed.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.KeyboardEventBase_1.keyCode">
- <summary>
- <para>The key code.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.KeyboardEventBase_1.modifiers">
- <summary>
- <para>Flag set holding the pressed modifier keys (Alt, Control, Shift, Windows/Command).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.KeyboardEventBase_1.shiftKey">
- <summary>
- <para>Return true if the Shift key is pressed.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.KeyboardEventBase_1.GetPooled(System.Char,UnityEngine.KeyCode,UnityEngine.EventModifiers)">
- <summary>
- <para>Get an event from the event pool and initialize it with the given values. Use this function instead of creating new events. Events obtained from this method should be released back to the pool using ReleaseEvent().</para>
- </summary>
- <param name="c">The character for this event.</param>
- <param name="keyCode">The keyCode for this event.</param>
- <param name="modifiers">Event modifier keys that are active for this event.</param>
- <param name="systemEvent">A keyboard IMGUI event.</param>
- <returns>
- <para>A keyboard event.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.KeyboardEventBase_1.GetPooled(UnityEngine.Event)">
- <summary>
- <para>Get an event from the event pool and initialize it with the given values. Use this function instead of creating new events. Events obtained from this method should be released back to the pool using ReleaseEvent().</para>
- </summary>
- <param name="c">The character for this event.</param>
- <param name="keyCode">The keyCode for this event.</param>
- <param name="modifiers">Event modifier keys that are active for this event.</param>
- <param name="systemEvent">A keyboard IMGUI event.</param>
- <returns>
- <para>A keyboard event.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.KeyboardEventBase_1.Init">
- <summary>
- <para>Reset the event members to their initial value.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.KeyDownEvent">
- <summary>
- <para>Event sent when a key is pressed on the keyboard. Capturable, bubbles, cancellable.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.KeyDownEvent.#ctor">
- <summary>
- <para>Constructor. Avoid newing events. Instead, use GetPooled() to get an event from a pool of reusable events.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.KeyUpEvent">
- <summary>
- <para>Event sent when a key is released on the keyboard. Capturable, bubbles, cancellable.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.KeyUpEvent.#ctor">
- <summary>
- <para>Constructor. Avoid newing events. Instead, use GetPooled() to get an event from a pool of reusable events.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.Label.LabelFactory">
- <summary>
- <para>Instantiates a Label using the data read from a UXML file.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.Label.LabelFactory.#ctor">
- <summary>
- <para>Constructor.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.Label.LabelUxmlTraits">
- <summary>
- <para>UxmlTraits for the Label.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.Label.LabelUxmlTraits.#ctor">
- <summary>
- <para>Constructor.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.ListView">
- <summary>
- <para>A vertically scrollable area that only creates visual elements for visible items while allowing the binding of many more items. As the user scrolls, visual elements are recycled and re-bound to new data items.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.ListView.bindItem">
- <summary>
- <para>Callback for binding a data item to the visual element.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.ListView.itemHeight">
- <summary>
- <para>ListView requires all visual elements to have the same height so that it can calculate a sensible scroller size. This property must be set for the list view to function.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.ListView.itemsSource">
- <summary>
- <para>The items data source. This property must be set for the list view to function.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.ListView.makeItem">
- <summary>
- <para>Callback for constructing the VisualElement that will serve as the template for each recycled and re-bound element in the list. This property must be set for the list view to function.</para>
- </summary>
- </member>
- <member name="?:UnityEngine.Experimental.UIElements.ListView.onItemChosen(System.Action`1&lt;System.Object&gt;)">
- <summary>
- <para>Callback for when an item is chosen (double-click). This is different from just a selection.</para>
- </summary>
- <param name="value">The chosen item.</param>
- </member>
- <member name="?:UnityEngine.Experimental.UIElements.ListView.onSelectionChanged(System.Action`1&lt;System.Collections.Generic.List`1&lt;System.Object&gt;&gt;)">
- <summary>
- <para>Callback for a selection change.</para>
- </summary>
- <param name="value">List of selected items.</param>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.ListView.selectedIndex">
- <summary>
- <para>Currently selected item index in the items source. If multiple items are selected, this will return the first selected item's index.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.ListView.selectedItem">
- <summary>
- <para>The currently selected item from the items source. If multiple items are selected, this will return the first selected item.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.ListView.selectionType">
- <summary>
- <para>Controls the selection state, whether: selections are disabled, there is only one selectable item, or if there are multiple selectable items.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.ListView.ListViewFactory">
- <summary>
- <para>Instantiates a ListView using the data read from a UXML file.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.ListView.ListViewFactory.#ctor">
- <summary>
- <para>Constructor.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.ListView.ListViewUxmlTraits">
- <summary>
- <para>UxmlTraits for the ListView.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.ListView.ListViewUxmlTraits.uxmlAttributesDescription">
- <summary>
- <para>Returns an enumerable containing attribute descriptions for ListView properties that should be available in UXML.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.ListView.ListViewUxmlTraits.uxmlChildElementsDescription">
- <summary>
- <para>Returns an empty enumerable, as list views generally do not have children.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.ListView.ListViewUxmlTraits.#ctor">
- <summary>
- <para>Constructor.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.ListView.ListViewUxmlTraits.Init(UnityEngine.Experimental.UIElements.VisualElement,UnityEngine.Experimental.UIElements.IUxmlAttributes,UnityEngine.Experimental.UIElements.CreationContext)">
- <summary>
- <para>Initialize ListView properties using values from the attribute bag.</para>
- </summary>
- <param name="ve">The object to initialize.</param>
- <param name="bag">The attribute bag.</param>
- <param name="cc">The creation context; unused.</param>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.ListView.Refresh">
- <summary>
- <para>Clear, recreate all visible visual elements, and rebind all items. This should be called whenever the items source changes.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.ListView.ScrollTo(UnityEngine.Experimental.UIElements.VisualElement)">
- <summary>
- <para>Scroll to a specific visual element.</para>
- </summary>
- <param name="visualElement">Element to scroll to.</param>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.ListView.ScrollToItem(System.Int32)">
- <summary>
- <para>Scroll so that a specific item index from the items source is visible.</para>
- </summary>
- <param name="index">Item index to scroll to.</param>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.ManipulatorActivationFilter">
- <summary>
- <para>Used by manipulators to match events against their requirements.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.UIElements.ManipulatorActivationFilter.button">
- <summary>
- <para>The button that activates the manipulation.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.UIElements.ManipulatorActivationFilter.clickCount">
- <summary>
- <para>Number of mouse clicks required to activate the manipulator.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.UIElements.ManipulatorActivationFilter.modifiers">
- <summary>
- <para>Any modifier keys (ie. ctrl, alt, ...) that are needed to activate the manipulation.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.ManipulatorActivationFilter.Matches(UnityEngine.Experimental.UIElements.IMouseEvent)">
- <summary>
- <para>Returns true if the current mouse event satisfies the activation requirements.</para>
- </summary>
- <param name="e">The mouse event.</param>
- <returns>
- <para>True if the event matches the requirements.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.MouseCaptureController">
- <summary>
- <para>Class that manages capturing mouse events.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.MouseCaptureController.HasMouseCapture(UnityEngine.Experimental.UIElements.IEventHandler)">
- <summary>
- <para>Checks if the event handler is capturing the mouse.</para>
- </summary>
- <param name="handler">Event handler to check.</param>
- <returns>
- <para>True if the handler captures the mouse.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.MouseCaptureController.IsMouseCaptureTaken">
- <summary>
- <para>Checks if there is a handler assigned to capturing the mouse.</para>
- </summary>
- <returns>
- <para>Returns true if a handler is assigned to capture the mouse, false otherwise.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.MouseCaptureController.ReleaseMouseCapture(UnityEngine.Experimental.UIElements.IEventHandler)">
- <summary>
- <para>Stops an event handler from capturing the mouse.</para>
- </summary>
- <param name="handler">The event handler to stop capturing the mouse. If this handler is not assigned to capturing the mouse, nothing happens.</param>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.MouseCaptureController.ReleaseMouseCapture">
- <summary>
- <para>Stops an event handler from capturing the mouse.</para>
- </summary>
- <param name="handler">The event handler to stop capturing the mouse. If this handler is not assigned to capturing the mouse, nothing happens.</param>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.MouseCaptureController.TakeMouseCapture(UnityEngine.Experimental.UIElements.IEventHandler)">
- <summary>
- <para>Assigns an event handler to capture the mouse.</para>
- </summary>
- <param name="handler">The event handler to capture the mouse.</param>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.MouseCaptureEvent">
- <summary>
- <para>Event sent after a handler starts capturing the mouse.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.MouseCaptureEvent.#ctor">
- <summary>
- <para>Constructor.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.MouseCaptureEventBase`1">
- <summary>
- <para>Event sent when the handler capturing the mouse changes.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.MouseCaptureEventBase_1.GetPooled(UnityEngine.Experimental.UIElements.IEventHandler)">
- <summary>
- <para>Retrieves an event from the event pool. Use this method to retrieve a mouse event and initialize the event, instead of creating a new mouse event.</para>
- </summary>
- <param name="target">The handler taking or releasing the mouse capture.</param>
- <returns>
- <para>A IMouseCaptureEvent.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.MouseCaptureEventBase_1.Init">
- <summary>
- <para>Reset the event members to their initial value.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.MouseCaptureOutEvent">
- <summary>
- <para>Event sent before a handler stops capturing the mouse.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.MouseCaptureOutEvent.#ctor">
- <summary>
- <para>Constructor.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.MouseDownEvent">
- <summary>
- <para>Mouse down event.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.MouseDownEvent.#ctor">
- <summary>
- <para>Constructor. Avoid newing events. Instead, use GetPooled() to get an event from a pool of reusable events.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.MouseEnterEvent">
- <summary>
- <para>Event sent when the mouse pointer enters an element or one of its descendent elements. The event is cancellable, non-capturable, and does not bubble.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.MouseEnterEvent.#ctor">
- <summary>
- <para>Constructor. Avoid newing events. Instead, use GetPooled() to get an event from a pool of reusable events.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.MouseEnterEvent.Init">
- <summary>
- <para>Resets the event members to their initial value.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.MouseEnterWindowEvent">
- <summary>
- <para>Event sent when the mouse pointer enters a window. Cancellable, non-capturable, does not bubbles.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.MouseEnterWindowEvent.#ctor">
- <summary>
- <para>Constructor. Avoid newing events. Instead, use GetPooled() to get an event from a pool of reusable events.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.MouseEnterWindowEvent.Init">
- <summary>
- <para>Resets the event members to their initial value.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.MouseEventBase`1">
- <summary>
- <para>The base class for mouse events.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.MouseEventBase_1.altKey">
- <summary>
- <para>Return true if the Alt key is pressed.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.MouseEventBase_1.button">
- <summary>
- <para>Integer representing the pressed mouse button: 0 is left, 1 is right, 2 is center.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.MouseEventBase_1.clickCount">
- <summary>
- <para>Number of clicks.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.MouseEventBase_1.commandKey">
- <summary>
- <para>Return true if the Windows/Command key is pressed.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.MouseEventBase_1.ctrlKey">
- <summary>
- <para>Return true if the Control key is pressed.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.MouseEventBase_1.currentTarget">
- <summary>
- <para>The current target of the event. The current target is the element in the propagation path for which event handlers are currently being executed.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.MouseEventBase_1.localMousePosition">
- <summary>
- <para>The mouse position in the current target coordinate system.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.MouseEventBase_1.modifiers">
- <summary>
- <para>Flag set holding the pressed modifier keys (Alt, Control, Shift, Windows/Command).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.MouseEventBase_1.mouseDelta">
- <summary>
- <para>Mouse position difference between the last mouse event and this one.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.MouseEventBase_1.mousePosition">
- <summary>
- <para>The mouse position in the screen coordinate system.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.MouseEventBase_1.shiftKey">
- <summary>
- <para>Return true if the Shift key is pressed.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.MouseEventBase_1.GetPooled(UnityEngine.Event)">
- <summary>
- <para>Get an event from the event pool and initialize it with the given values. Use this function instead of creating new events. Events obtained from this method should be released back to the pool using ReleaseEvent().</para>
- </summary>
- <param name="systemEvent">A mouse IMGUI event.</param>
- <returns>
- <para>A mouse event.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.MouseEventBase_1.Init">
- <summary>
- <para>Reset the event members to their initial value.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.MouseLeaveEvent">
- <summary>
- <para>Event sent when the mouse pointer exits an element and all its descendent elements. The event is cancellable, non-capturable, and does not bubble.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.MouseLeaveEvent.#ctor">
- <summary>
- <para>Constructor. Avoid newing events. Instead, use GetPooled() to get an event from a pool of reusable events.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.MouseLeaveEvent.Init">
- <summary>
- <para>Resets the event members to their initial value.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.MouseLeaveWindowEvent">
- <summary>
- <para>Event sent when the mouse pointer exits a window. Cancellable, non-capturable, does not bubbles.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.MouseLeaveWindowEvent.#ctor">
- <summary>
- <para>Constructor. Avoid newing events. Instead, use GetPooled() to get an event from a pool of reusable events.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.MouseLeaveWindowEvent.Init">
- <summary>
- <para>Reset the event members to their initial value.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.MouseMoveEvent">
- <summary>
- <para>Mouse move event.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.MouseMoveEvent.#ctor">
- <summary>
- <para>Constructor. Avoid newing events. Instead, use GetPooled() to get an event from a pool of reusable events.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.MouseOutEvent">
- <summary>
- <para>Event sent when the mouse pointer exits an element. Capturable, bubbles, cancellable.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.MouseOutEvent.#ctor">
- <summary>
- <para>Constructor. Avoid newing events. Instead, use GetPooled() to get an event from a pool of reusable events.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.MouseOverEvent">
- <summary>
- <para>Event sent when the mouse pointer enters an element. Capturable, bubbles, cancellable.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.MouseOverEvent.#ctor">
- <summary>
- <para>Constructor. Avoid newing events. Instead, use GetPooled() to get an event from a pool of reusable events.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.MouseUpEvent">
- <summary>
- <para>Mouse up event.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.MouseUpEvent.#ctor">
- <summary>
- <para>Constructor. Avoid newing events. Instead, use GetPooled() to get an event from a pool of reusable events.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.PopupWindow">
- <summary>
- <para>Styled visual element that matches the EditorGUILayout.Popup IMGUI element.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.PopupWindow.PopupWindowFactory">
- <summary>
- <para>Instantiates a PopupWindow using the data read from a UXML file.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.PopupWindow.PopupWindowFactory.#ctor">
- <summary>
- <para>Constructor.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.PopupWindow.PopupWindowUxmlTraits">
- <summary>
- <para>UxmlTraits for the PopupWindow.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.PopupWindow.PopupWindowUxmlTraits.uxmlChildElementsDescription">
- <summary>
- <para>Returns an empty enumerable, as popup windows generally do not have children.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.PopupWindow.PopupWindowUxmlTraits.#ctor">
- <summary>
- <para>Constructor.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.PropagationPhase">
- <summary>
- <para>The propagation phases of an event.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.UIElements.PropagationPhase.AtTarget">
- <summary>
- <para>The event is being sent to the event target.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.UIElements.PropagationPhase.BubbleUp">
- <summary>
- <para>The event is being sent to the event target parent element up to the root element.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.UIElements.PropagationPhase.Capture">
- <summary>
- <para>The event is being sent to the root element down to the event target parent element.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.UIElements.PropagationPhase.DefaultAction">
- <summary>
- <para>The event is being sent to the target element for it to execute its default actions for this event. Event handlers do not get the events in this phase. Instead, ExecuteDefaultAction is called on the target.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.UIElements.PropagationPhase.None">
- <summary>
- <para>The event is not being propagated.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.RepeatButton">
- <summary>
- <para>A button that executes an action repeatedly while it is pressed.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.RepeatButton.#ctor">
- <summary>
- <para>Constructor.</para>
- </summary>
- <param name="clickEvent">The action to execute when the button is pressed.</param>
- <param name="delay">The initial delay before the action is executed for the first time.</param>
- <param name="interval">The interval between each execution of the action.</param>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.RepeatButton.#ctor(System.Action,System.Int64,System.Int64)">
- <summary>
- <para>Constructor.</para>
- </summary>
- <param name="clickEvent">The action to execute when the button is pressed.</param>
- <param name="delay">The initial delay before the action is executed for the first time.</param>
- <param name="interval">The interval between each execution of the action.</param>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.RepeatButton.RepeatButtonFactory">
- <summary>
- <para>Instantiates a RepeatButton using the data read from a UXML file.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.RepeatButton.RepeatButtonFactory.#ctor">
- <summary>
- <para>Constructor.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.RepeatButton.RepeatButtonUxmlTraits">
- <summary>
- <para>UxmlTraits for the RepeatButton.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.RepeatButton.RepeatButtonUxmlTraits.uxmlAttributesDescription">
- <summary>
- <para>Returns an enumerable containing attribute descriptions for RepeatButton properties that should be available in UXML.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.RepeatButton.RepeatButtonUxmlTraits.#ctor">
- <summary>
- <para>Constructor.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.RepeatButton.RepeatButtonUxmlTraits.Init(UnityEngine.Experimental.UIElements.VisualElement,UnityEngine.Experimental.UIElements.IUxmlAttributes,UnityEngine.Experimental.UIElements.CreationContext)">
- <summary>
- <para>Initialize RepeatButton properties using values from the attribute bag.</para>
- </summary>
- <param name="ve">The object to initialize.</param>
- <param name="bag">The attribute bag.</param>
- <param name="cc">The creation context; unused.</param>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.RepeatButton.SetAction(System.Action,System.Int64,System.Int64)">
- <summary>
- <para>Set the action that should be executed when the button is pressed.</para>
- </summary>
- <param name="clickEvent">The action to execute.</param>
- <param name="delay">The initial delay before the action is executed for the first time.</param>
- <param name="interval">The interval between each execution of the action.</param>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.Scroller.ScrollerFactory">
- <summary>
- <para>Instantiates a Scroller using the data read from a UXML file.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.Scroller.ScrollerFactory.#ctor">
- <summary>
- <para>Constructor.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.Scroller.ScrollerUxmlTraits">
- <summary>
- <para>UxmlTraits for the Scroller.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.Scroller.ScrollerUxmlTraits.uxmlAttributesDescription">
- <summary>
- <para>Returns an enumerable containing attribute descriptions for Scroller properties that should be available in UXML.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.Scroller.ScrollerUxmlTraits.uxmlChildElementsDescription">
- <summary>
- <para>Returns an empty enumerable, as scrollers do not have children.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.Scroller.ScrollerUxmlTraits.#ctor">
- <summary>
- <para>Constructor.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.Scroller.ScrollerUxmlTraits.Init(UnityEngine.Experimental.UIElements.VisualElement,UnityEngine.Experimental.UIElements.IUxmlAttributes,UnityEngine.Experimental.UIElements.CreationContext)">
- <summary>
- <para>Initialize Scroller properties using values from the attribute bag.</para>
- </summary>
- <param name="ve">The object to initialize.</param>
- <param name="bag">The attribute bag.</param>
- <param name="cc">The creation context; unused.</param>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.ScrollerButton.ScrollerButtonFactory">
- <summary>
- <para>Instantiates a ScrollerButton using the data read from a UXML file.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.ScrollerButton.ScrollerButtonFactory.#ctor">
- <summary>
- <para>Constructor.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.ScrollerButton.ScrollerButtonUxmlTraits">
- <summary>
- <para>UxmlTraits for the ScrollerButton.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.ScrollerButton.ScrollerButtonUxmlTraits.uxmlAttributesDescription">
- <summary>
- <para>Returns an enumerable containing attribute descriptions for ScrollerButton properties that should be available in UXML.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.ScrollerButton.ScrollerButtonUxmlTraits.uxmlChildElementsDescription">
- <summary>
- <para>Returns an empty enumerable, as buttons generally do not have children.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.ScrollerButton.ScrollerButtonUxmlTraits.#ctor">
- <summary>
- <para>Constructor.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.ScrollerButton.ScrollerButtonUxmlTraits.Init(UnityEngine.Experimental.UIElements.VisualElement,UnityEngine.Experimental.UIElements.IUxmlAttributes,UnityEngine.Experimental.UIElements.CreationContext)">
- <summary>
- <para>Initialize ScrollerButton properties using values from the attribute bag.</para>
- </summary>
- <param name="ve">The object to initialize.</param>
- <param name="bag">The attribute bag.</param>
- <param name="cc">The creation context; unused.</param>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.ScrollView.stretchContentWidth">
- <summary>
- <para>Indicates whether the content of ScrollView should fill the width of its viewport. The default value is false.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.ScrollView.ScrollTo(UnityEngine.Experimental.UIElements.VisualElement)">
- <summary>
- <para>Scroll to a specific child element.</para>
- </summary>
- <param name="child">The child to scroll to.</param>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.ScrollView.ScrollViewFactory">
- <summary>
- <para>Instantiates a ScrollView using the data read from a UXML file.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.ScrollView.ScrollViewFactory.#ctor">
- <summary>
- <para>Constructor.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.ScrollView.ScrollViewUxmlTraits">
- <summary>
- <para>UxmlTraits for the ScrollView.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.ScrollView.ScrollViewUxmlTraits.uxmlAttributesDescription">
- <summary>
- <para>Returns an enumerable containing attribute descriptions for ScrollView properties that should be available in UXML.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.ScrollView.ScrollViewUxmlTraits.#ctor">
- <summary>
- <para>Constructor.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.ScrollView.ScrollViewUxmlTraits.Init(UnityEngine.Experimental.UIElements.VisualElement,UnityEngine.Experimental.UIElements.IUxmlAttributes,UnityEngine.Experimental.UIElements.CreationContext)">
- <summary>
- <para>Initialize ScrollView properties using values from the attribute bag.</para>
- </summary>
- <param name="ve">The object to initialize.</param>
- <param name="bag">The attribute bag.</param>
- <param name="cc">The creation context; unused.</param>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.SelectionType">
- <summary>
- <para>Controls how many items can be selected at once.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.UIElements.SelectionType.Multiple">
- <summary>
- <para>Multiple items are selectable at once.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.UIElements.SelectionType.None">
- <summary>
- <para>Selections are disabled.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.UIElements.SelectionType.Single">
- <summary>
- <para>Only one item is selectable.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.Slider.OnPersistentDataReady">
- <summary>
- <para>Called when the persistent data is accessible and/or when the data or persistence key have changed (VisualElement is properly parented).</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.Slider.SliderFactory">
- <summary>
- <para>Instantiates a Slider using the data read from a UXML file.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.Slider.SliderFactory.#ctor">
- <summary>
- <para>Constructor.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.Slider.SliderUxmlTraits">
- <summary>
- <para>UxmlTraits for the Slider.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.Slider.SliderUxmlTraits.uxmlAttributesDescription">
- <summary>
- <para>Returns an enumerable containing attribute descriptions for Slider properties that should be available in UXML.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.Slider.SliderUxmlTraits.uxmlChildElementsDescription">
- <summary>
- <para>Returns an empty enumerable, as sliders generally do not have children.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.Slider.SliderUxmlTraits.#ctor">
- <summary>
- <para>Constructor.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.Slider.SliderUxmlTraits.Init(UnityEngine.Experimental.UIElements.VisualElement,UnityEngine.Experimental.UIElements.IUxmlAttributes,UnityEngine.Experimental.UIElements.CreationContext)">
- <summary>
- <para>Initialize Slider properties using values from the attribute bag.</para>
- </summary>
- <param name="ve">The object to initialize.</param>
- <param name="bag">The attribute bag.</param>
- <param name="cc">The creation context; unused.</param>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.StyleEnums.Align">
- <summary>
- <para>This enumeration contains values to control how an element is aligned in its parent during the layout phase.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.UIElements.StyleEnums.Align.Auto">
- <summary>
- <para>Default value (currently FlexStart).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.UIElements.StyleEnums.Align.Center">
- <summary>
- <para>Items are centered on the cross axis.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.UIElements.StyleEnums.Align.FlexEnd">
- <summary>
- <para>Items are aligned at the end on the cross axis.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.UIElements.StyleEnums.Align.FlexStart">
- <summary>
- <para>Items are aligned at the beginning on the cross axis.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.UIElements.StyleEnums.Align.Stretch">
- <summary>
- <para>Stretches items on the cross axis.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.StyleEnums.FlexDirection">
- <summary>
- <para>This enumeration defines values used to control in which direction a container will place its children during layout.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.UIElements.StyleEnums.FlexDirection.Column">
- <summary>
- <para>Vertical layout.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.UIElements.StyleEnums.FlexDirection.ColumnReverse">
- <summary>
- <para>Vertical layout in reverse order.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.UIElements.StyleEnums.FlexDirection.Row">
- <summary>
- <para>Horizontal layout.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.UIElements.StyleEnums.FlexDirection.RowReverse">
- <summary>
- <para>Horizontal layout in reverse order.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.StyleEnums.Justify">
- <summary>
- <para>This enumeration contains values to control how children are justified during layout.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.UIElements.StyleEnums.Justify.Center">
- <summary>
- <para>Items are centered.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.UIElements.StyleEnums.Justify.FlexEnd">
- <summary>
- <para>Items are justified towards the end of the layout direction.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.UIElements.StyleEnums.Justify.FlexStart">
- <summary>
- <para>Items are justified towards the beginning of the main axis.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.UIElements.StyleEnums.Justify.SpaceAround">
- <summary>
- <para>Items are evenly distributed in the line with extra space on each end of the line.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.UIElements.StyleEnums.Justify.SpaceBetween">
- <summary>
- <para>Items are evenly distributed in the line; first item is at the beginning of the line, last item is at the end.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.StyleEnums.PositionType">
- <summary>
- <para>This enumeration contains values to control how an element is positioned in its parent container.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.UIElements.StyleEnums.PositionType.Absolute">
- <summary>
- <para>The element is positioned in relation to its parent box and does not contribute to the layout anymore.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.UIElements.StyleEnums.PositionType.Relative">
- <summary>
- <para>The element is positioned in relation to its default box as calculated by layout.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.StyleEnums.Visibility">
- <summary>
- <para>This enumeration contains values to specify whether or not an element is visible.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.UIElements.StyleEnums.Visibility.Hidden">
- <summary>
- <para>The picking and rendering of this element is skipped. It still takes space in the layout.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.UIElements.StyleEnums.Visibility.Visible">
- <summary>
- <para>The element is drawn normally (default).</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.StyleEnums.Wrap">
- <summary>
- <para>This enumeration contains values to control how elements are placed in a container if not enough space is available.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.UIElements.StyleEnums.Wrap.NoWrap">
- <summary>
- <para>All elements are placed on the same line.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.UIElements.StyleEnums.Wrap.Wrap">
- <summary>
- <para>Elements are placed over multiple lines.</para>
- </summary>
- </member>
- <member name="?:UnityEngine.Experimental.UIElements.StyleSheets.ICustomStyle">
- <summary>
- <para>This interface exposes methods to read custom style properties applied from USS files to visual elements.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.StyleSheets.ICustomStyle.ApplyCustomProperty(System.String,UnityEngine.Experimental.UIElements.StyleSheets.StyleValue`1&lt;System.Single&gt;&amp;)">
- <summary>
- <para>Read a style property value into the specified StyleValue&lt;T&gt;.</para>
- </summary>
- <param name="propertyName">Name of the property in USS.</param>
- <param name="target">Target StyleValue&lt;T&gt; field or variable to write to.</param>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.StyleSheets.ICustomStyle.ApplyCustomProperty(System.String,UnityEngine.Experimental.UIElements.StyleSheets.StyleValue`1&lt;System.Int32&gt;&amp;)">
- <summary>
- <para>Read a style property value into the specified StyleValue&lt;T&gt;.</para>
- </summary>
- <param name="propertyName">Name of the property in USS.</param>
- <param name="target">Target StyleValue&lt;T&gt; field or variable to write to.</param>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.StyleSheets.ICustomStyle.ApplyCustomProperty(System.String,UnityEngine.Experimental.UIElements.StyleSheets.StyleValue`1&lt;System.Boolean&gt;&amp;)">
- <summary>
- <para>Read a style property value into the specified StyleValue&lt;T&gt;.</para>
- </summary>
- <param name="propertyName">Name of the property in USS.</param>
- <param name="target">Target StyleValue&lt;T&gt; field or variable to write to.</param>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.StyleSheets.ICustomStyle.ApplyCustomProperty(System.String,UnityEngine.Experimental.UIElements.StyleSheets.StyleValue`1&lt;UnityEngine.Color&gt;&amp;)">
- <summary>
- <para>Read a style property value into the specified StyleValue&lt;T&gt;.</para>
- </summary>
- <param name="propertyName">Name of the property in USS.</param>
- <param name="target">Target StyleValue&lt;T&gt; field or variable to write to.</param>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.StyleSheets.ICustomStyle.ApplyCustomProperty(System.String,UnityEngine.Experimental.UIElements.StyleSheets.StyleValue`1&lt;T&gt;&amp;)">
- <summary>
- <para>Read a style property value into the specified StyleValue&lt;T&gt;.</para>
- </summary>
- <param name="propertyName">Name of the property in USS.</param>
- <param name="target">Target StyleValue&lt;T&gt; field or variable to write to.</param>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.StyleSheets.ICustomStyle.ApplyCustomProperty(System.String,UnityEngine.Experimental.UIElements.StyleSheets.StyleValue`1&lt;System.String&gt;&amp;)">
- <summary>
- <para>Read a style property value into the specified StyleValue&lt;T&gt;.</para>
- </summary>
- <param name="propertyName">Name of the property in USS.</param>
- <param name="target">Target StyleValue&lt;T&gt; field or variable to write to.</param>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.StyleSheets.StyleValue`1">
- <summary>
- <para>This generic structure encodes a value type that can come from USS or be specified programmatically.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.StyleSheets.StyleValue_1.nil">
- <summary>
- <para>This represents the default value for a StyleValue&lt;T&gt; of the according generic type.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.UIElements.StyleSheets.StyleValue_1.value">
- <summary>
- <para>The actual value of the StyleValue&lt;T&gt;.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.StyleSheets.StyleValue_1.Create(T)">
- <summary>
- <para>Creates a StyleValue of the according generic type directly from a value.</para>
- </summary>
- <param name="value">Value to be used as inline style.</param>
- <returns>
- <para>The result StyleValue&lt;T&gt;</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.StyleSheets.StyleValue_1.#ctor(T)">
- <summary>
- <para>This constructor can be used to specified an alternate default value but it is recommended to use StyleValue&lt;T&gt;.nil.</para>
- </summary>
- <param name="value">Default starting value.</param>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.StyleSheets.StyleValue_1.GetSpecifiedValueOrDefault(T)">
- <summary>
- <para>Utility function to be used when reading custom styles values and provide a default value in one step.</para>
- </summary>
- <param name="defaultValue">Default value to be returned if no value is set.</param>
- <returns>
- <para>The value to be used for the custom style.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.TemplateContainer.TemplateContainerFactory">
- <summary>
- <para>Instantiates and clones a TemplateContainer using the data read from a UXML file.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.TemplateContainer.TemplateContainerFactory.#ctor">
- <summary>
- <para>Constructor.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.TemplateContainer.TemplateContainerUxmlTraits">
- <summary>
- <para>UxmlTraits for the TemplateContainer.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.TemplateContainer.TemplateContainerUxmlTraits.uxmlAttributesDescription">
- <summary>
- <para>Returns an enumerable containing attribute descriptions for TemplateContainer properties that should be available in UXML.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.TemplateContainer.TemplateContainerUxmlTraits.uxmlChildElementsDescription">
- <summary>
- <para>Returns an empty enumerable, as template instance do not have children.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.TemplateContainer.TemplateContainerUxmlTraits.#ctor">
- <summary>
- <para>Constructor.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.TemplateContainer.TemplateContainerUxmlTraits.Init(UnityEngine.Experimental.UIElements.VisualElement,UnityEngine.Experimental.UIElements.IUxmlAttributes,UnityEngine.Experimental.UIElements.CreationContext)">
- <summary>
- <para>Initialize TemplateContainer properties using values from the attribute bag.</para>
- </summary>
- <param name="ve">The object to initialize.</param>
- <param name="bag">The attribute bag.</param>
- <param name="cc">The creation context; unused.</param>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.TextField">
- <summary>
- <para>A textfield is a rectangular area where the user can edit a string.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.TextField.isPasswordField">
- <summary>
- <para>Set this to true to mask the characters and false if otherwise.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.TextField.multiline">
- <summary>
- <para>Set this to true to allow multiple lines in the textfield and false if otherwise.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.TextField.value">
- <summary>
- <para>The string currently being exposed by the field.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.TextField.#ctor">
- <summary>
- <para>Creates a new textfield.</para>
- </summary>
- <param name="maxLength">The maximum number of characters this textfield can hold. If 0, there is no limit.</param>
- <param name="multiline">Set this to true to allow multiple lines in the textfield and false if otherwise.</param>
- <param name="isPasswordField">Set this to true to mask the characters and false if otherwise.</param>
- <param name="maskChar">The character used for masking in a password field.</param>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.TextField.#ctor(System.Int32,System.Boolean,System.Boolean,System.Char)">
- <summary>
- <para>Creates a new textfield.</para>
- </summary>
- <param name="maxLength">The maximum number of characters this textfield can hold. If 0, there is no limit.</param>
- <param name="multiline">Set this to true to allow multiple lines in the textfield and false if otherwise.</param>
- <param name="isPasswordField">Set this to true to mask the characters and false if otherwise.</param>
- <param name="maskChar">The character used for masking in a password field.</param>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.TextField.OnPersistentDataReady">
- <summary>
- <para>Called when the persistent data is accessible and/or when the data or persistence key have changed (VisualElement is properly parented).</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.TextField.TextFieldFactory">
- <summary>
- <para>Instantiates a TextField using the data read from a UXML file.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.TextField.TextFieldFactory.#ctor">
- <summary>
- <para>Constructor.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.TextField.TextFieldUxmlTraits">
- <summary>
- <para>UxmlTraits for the TextField.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.TextField.TextFieldUxmlTraits.uxmlAttributesDescription">
- <summary>
- <para>Returns an enumerable containing attribute descriptions for TextField properties that should be available in UXML.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.TextField.TextFieldUxmlTraits.#ctor">
- <summary>
- <para>Constructor.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.TextField.TextFieldUxmlTraits.Init(UnityEngine.Experimental.UIElements.VisualElement,UnityEngine.Experimental.UIElements.IUxmlAttributes,UnityEngine.Experimental.UIElements.CreationContext)">
- <summary>
- <para>Initialize TextField properties using values from the attribute bag.</para>
- </summary>
- <param name="ve">The object to initialize.</param>
- <param name="bag">The attribute bag.</param>
- <param name="cc">The creation context; unused.</param>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.TextInputFieldBase`1">
- <summary>
- <para>Abstract base class used for all text-based fields.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.TextInputFieldBase_1.cursorColor">
- <summary>
- <para>Color of the cursor.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.TextInputFieldBase_1.cursorIndex">
- <summary>
- <para>The current cursor position index in the text input field.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.TextInputFieldBase_1.doubleClickSelectsWord">
- <summary>
- <para>Controls whether double clicking selects the word under the mouse pointer or not.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.TextInputFieldBase_1.isDelayed">
- <summary>
- <para>If set to true, the value property is not updated until either the user presses Enter or the text field loses focus.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.TextInputFieldBase_1.isPasswordField">
- <summary>
- <para>Returns true if the field is used to edit a password.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.TextInputFieldBase_1.maskChar">
- <summary>
- <para>The character used for masking in a password field.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.TextInputFieldBase_1.maxLength">
- <summary>
- <para>Maximum number of characters for the field.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.TextInputFieldBase_1.selectionColor">
- <summary>
- <para>Background color of selected text.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.TextInputFieldBase_1.tripleClickSelectsLine">
- <summary>
- <para>Controls whether triple clicking selects the entire line under the mouse pointer or not.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.TextInputFieldBase_1.BuildContextualMenu(UnityEngine.Experimental.UIElements.ContextualMenuPopulateEvent)">
- <summary>
- <para>Add menu items to the text field contextual menu.</para>
- </summary>
- <param name="evt">The event holding the menu to populate.</param>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.TextInputFieldBase_1.#ctor(System.Int32,System.Char)">
- <summary>
- <para>Constructor.</para>
- </summary>
- <param name="maxLength">Maximum number of characters for the field.</param>
- <param name="maskChar">The character used for masking in a password field.</param>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.TextInputFieldBase_1.SelectAll">
- <summary>
- <para>Selects all the text.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.TextInputFieldBase`1.TextInputFieldBaseUxmlTraits">
- <summary>
- <para>UxmlTraits for the TextInputFieldBase.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.TextInputFieldBase_1.TextInputFieldBaseUxmlTraits.uxmlAttributesDescription">
- <summary>
- <para>Returns an enumerable containing attribute descriptions for TextInputFieldBase properties that should be available in UXML.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.TextInputFieldBase_1.TextInputFieldBaseUxmlTraits.Init(UnityEngine.Experimental.UIElements.VisualElement,UnityEngine.Experimental.UIElements.IUxmlAttributes,UnityEngine.Experimental.UIElements.CreationContext)">
- <summary>
- <para>Initialize TextInputFieldBase properties using values from the attribute bag.</para>
- </summary>
- <param name="ve">The object to initialize.</param>
- <param name="bag">The attribute bag.</param>
- <param name="cc">The creation context; unused.</param>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.Toggle.text">
- <summary>
- <para>Optional text after the toggle.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.Toggle.value">
- <summary>
- <para>Return whether the toggle is on or not.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.Toggle.OnToggle(System.Action)">
- <summary>
- <para>Sets the event callback for this toggle button.</para>
- </summary>
- <param name="clickEvent">The action to be called when this Toggle is clicked.</param>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.Toggle.ToggleFactory">
- <summary>
- <para>Instantiates a Toggle using the data read from a UXML file.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.Toggle.ToggleFactory.#ctor">
- <summary>
- <para>Constructor.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.Toggle.ToggleUxmlTraits">
- <summary>
- <para>UxmlTraits for the Toggle.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.Toggle.ToggleUxmlTraits.uxmlAttributesDescription">
- <summary>
- <para>Returns an enumerable containing attribute descriptions for Toggle properties that should be available in UXML.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.Toggle.ToggleUxmlTraits.#ctor">
- <summary>
- <para>Constructor.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.Toggle.ToggleUxmlTraits.Init(UnityEngine.Experimental.UIElements.VisualElement,UnityEngine.Experimental.UIElements.IUxmlAttributes,UnityEngine.Experimental.UIElements.CreationContext)">
- <summary>
- <para>Initialize Toggle properties using values from the attribute bag.</para>
- </summary>
- <param name="ve">The object to initialize.</param>
- <param name="bag">The attribute bag.</param>
- <param name="cc">The creation context; unused.</param>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.UQuery">
- <summary>
- <para>UQuery is a set of extension methods allowing you to select individual or collection of visualElements inside a complex hierarchy.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.UQuery.QueryBuilder`1">
- <summary>
- <para>Utility Object that contructs a set of selection rules to be ran on a root visual element.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UQuery.QueryBuilder_1.Active">
- <summary>
- <para>Selects all elements that are active.</para>
- </summary>
- <returns>
- <para>A QueryBuilder with the selection rules.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UQuery.QueryBuilder_1.AtIndex(System.Int32)">
- <summary>
- <para>Convenience overload, shorthand for Build().AtIndex().</para>
- </summary>
- <param name="index"></param>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UQuery.QueryBuilder_1.Build">
- <summary>
- <para>Compiles the selection rules into a QueryState object.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UQuery.QueryBuilder_1.Checked">
- <summary>
- <para>Selects all elements that are checked.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UQuery.QueryBuilder_1.Children(System.String,System.String[])">
- <summary>
- <para>Selects all direct child elements of elements matching the previous rules.</para>
- </summary>
- <param name="name"></param>
- <param name="classes"></param>
- <param name="className"></param>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UQuery.QueryBuilder_1.Children(System.String,System.String)">
- <summary>
- <para>Selects all direct child elements of elements matching the previous rules.</para>
- </summary>
- <param name="name"></param>
- <param name="classes"></param>
- <param name="className"></param>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UQuery.QueryBuilder_1.Class(System.String)">
- <summary>
- <para>Selects all elements with the given class. Not to be confused with Type (see OfType&lt;&gt;()).</para>
- </summary>
- <param name="classname"></param>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UQuery.QueryBuilder_1.#ctor(UnityEngine.Experimental.UIElements.VisualElement)">
- <summary>
- <para>Initializes a QueryBuilder.</para>
- </summary>
- <param name="visualElement">The root element on which to condfuct the search query.</param>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UQuery.QueryBuilder_1.Descendents(System.String,System.String[])">
- <summary>
- <para>Selects all elements that are descendants of currently matching ancestors.</para>
- </summary>
- <param name="name"></param>
- <param name="classNames"></param>
- <param name="classname"></param>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UQuery.QueryBuilder_1.Descendents(System.String,System.String)">
- <summary>
- <para>Selects all elements that are descendants of currently matching ancestors.</para>
- </summary>
- <param name="name"></param>
- <param name="classNames"></param>
- <param name="classname"></param>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UQuery.QueryBuilder_1.Enabled">
- <summary>
- <para>Selects all elements that are enabled.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UQuery.QueryBuilder_1.First">
- <summary>
- <para>Convenience overload, shorthand for Build().First().</para>
- </summary>
- <returns>
- <para>The first element matching all the criteria, or null if none was found.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UQuery.QueryBuilder_1.Focused">
- <summary>
- <para>Selects all elements that are enabled.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UQuery.QueryBuilder_1.ForEach(System.Action`1&lt;T&gt;)">
- <summary>
- <para>Convenience overload, shorthand for Build().ForEach().</para>
- </summary>
- <param name="funcCall">The function to be invoked with each matching element.</param>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UQuery.QueryBuilder_1.ForEach(System.Collections.Generic.List`1&lt;T2&gt;,System.Func`2&lt;T,T2&gt;)">
- <summary>
- <para>Convenience overload, shorthand for Build().ForEach().</para>
- </summary>
- <param name="funcCall">The function to be invoked with each matching element.</param>
- <param name="result">Each return value will be added to this list.</param>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UQuery.QueryBuilder_1.ForEach(System.Func`2&lt;T,T2&gt;)">
- <summary>
- <para>Convenience overload, shorthand for Build().ForEach().</para>
- </summary>
- <param name="funcCall">The function to be invoked with each matching element.</param>
- <returns>
- <para>Returns a list of all the results of the function calls.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UQuery.QueryBuilder_1.Hovered">
- <summary>
- <para>Selects all elements that are hovered.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UQuery.QueryBuilder_1.Last">
- <summary>
- <para>Convenience overload, shorthand for Build().Last().</para>
- </summary>
- <returns>
- <para>The last element matching all the criteria, or null if none was found.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UQuery.QueryBuilder_1.Name(System.String)">
- <summary>
- <para>Selects element with this name.</para>
- </summary>
- <param name="id"></param>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UQuery.QueryBuilder_1.NotActive">
- <summary>
- <para>Selects all elements that are not active.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UQuery.QueryBuilder_1.NotChecked">
- <summary>
- <para>Selects all elements that npot checked.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UQuery.QueryBuilder_1.NotEnabled">
- <summary>
- <para>Selects all elements that are not enabled.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UQuery.QueryBuilder_1.NotFocused">
- <summary>
- <para>Selects all elements that don't currently own the focus.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UQuery.QueryBuilder_1.NotHovered">
- <summary>
- <para>Selects all elements that are not hovered.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UQuery.QueryBuilder_1.NotSelected">
- <summary>
- <para>Selects all elements that are not selected.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UQuery.QueryBuilder_1.NotVisible">
- <summary>
- <para>Selects all elements that are not visible.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UQuery.QueryBuilder_1.OfType(System.String,System.String[])">
- <summary>
- <para>Selects all elements of the specified Type (eg: Label, Button, ScrollView, etc).</para>
- </summary>
- <param name="name">If specified, will select elements with this name.</param>
- <param name="classes">If specified, will select elements with the given class (not to be confused with Type).</param>
- <param name="className">If specified, will select elements with the given class (not to be confused with Type).</param>
- <returns>
- <para>QueryBuilder configured with the associated selection rules.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UQuery.QueryBuilder_1.OfType(System.String,System.String)">
- <summary>
- <para>Selects all elements of the specified Type (eg: Label, Button, ScrollView, etc).</para>
- </summary>
- <param name="name">If specified, will select elements with this name.</param>
- <param name="classes">If specified, will select elements with the given class (not to be confused with Type).</param>
- <param name="className">If specified, will select elements with the given class (not to be confused with Type).</param>
- <returns>
- <para>QueryBuilder configured with the associated selection rules.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UQuery.QueryBuilder_1.Selected">
- <summary>
- <para>Selects all elements that are selected.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UQuery.QueryBuilder_1.ToList">
- <summary>
- <para>Convenience method. shorthand for Build().ToList.</para>
- </summary>
- <returns>
- <para>Returns a list containing elements satisfying selection rules.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UQuery.QueryBuilder_1.ToList(System.Collections.Generic.List`1&lt;T&gt;)">
- <summary>
- <para>Convenience method. Shorthand gor Build().ToList().</para>
- </summary>
- <param name="results">Adds all elements satisfying selection rules to the list.</param>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UQuery.QueryBuilder_1.Visible">
- <summary>
- <para>Selects all elements that are visible.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UQuery.QueryBuilder_1.Where(System.Func`2&lt;T,System.Boolean&gt;)">
- <summary>
- <para>Selects all elements satifying the predicate.</para>
- </summary>
- <param name="selectorPredicate">Predicate that must return true for selected elements.</param>
- <returns>
- <para>QueryBuilder configured with the associated selection rules.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.UQuery.QueryState`1">
- <summary>
- <para>Query object containing all the selection rules. Can be saved and rerun later without re-allocating memory.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UQuery.QueryState_1.AtIndex(System.Int32)">
- <summary>
- <para>Selects the n th element matching all the criteria, or null if not enough elements were found.</para>
- </summary>
- <param name="index">The index of the matched element.</param>
- <returns>
- <para>The match element at the specified index.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UQuery.QueryState_1.First">
- <summary>
- <para>The first element matching all the criteria, or null if none was found.</para>
- </summary>
- <returns>
- <para>The first element matching all the criteria, or null if none was found.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UQuery.QueryState_1.ForEach(System.Action`1&lt;T&gt;)">
- <summary>
- <para>Invokes function on all elements matching the query.</para>
- </summary>
- <param name="funcCall">The action to be invoked with each matching element.</param>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UQuery.QueryState_1.ForEach(System.Collections.Generic.List`1&lt;T2&gt;,System.Func`2&lt;T,T2&gt;)">
- <summary>
- <para>Invokes function on all elements matching the query.</para>
- </summary>
- <param name="result">Each return value will be added to this list.</param>
- <param name="funcCall">The function to be invoked with each matching element.</param>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UQuery.QueryState_1.ForEach(System.Func`2&lt;T,T2&gt;)">
- <summary>
- <para>Invokes function on all elements matching the query. Overloaded for convenience.</para>
- </summary>
- <param name="funcCall">The function to be invoked with each matching element.</param>
- <returns>
- <para>Returns a list of all the results of the function calls.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UQuery.QueryState_1.Last">
- <summary>
- <para>The last element matching all the criteria, or null if none was found.</para>
- </summary>
- <returns>
- <para>The last element matching all the criteria, or null if none was found.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UQuery.QueryState_1.RebuildOn(UnityEngine.Experimental.UIElements.VisualElement)">
- <summary>
- <para>Creates a new QueryState with the same selection rules, applied on another VisualElement.</para>
- </summary>
- <param name="element">The element on which to apply the selection rules.</param>
- <returns>
- <para>A new QueryState with the same selection rules, applied on this element.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UQuery.QueryState_1.ToList">
- <summary>
- <para>Returns a list containing elements satisfying selection rules.</para>
- </summary>
- <returns>
- <para>Returns a list containing elements satisfying selection rules.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UQuery.QueryState_1.ToList(System.Collections.Generic.List`1&lt;T&gt;)">
- <summary>
- <para>Adds all elements satisfying selection rules to the list.</para>
- </summary>
- <param name="results">Adds all elements satisfying selection rules to the list.</param>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.UQueryExtensions">
- <summary>
- <para>UQuery is a set of extension methods allowing you to select individual or collection of visualElements inside a complex hierarchy.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UQueryExtensions.Q(UnityEngine.Experimental.UIElements.VisualElement,System.String,System.String)">
- <summary>
- <para>Convenience overload, shorthand for Query&lt;T&gt;.Build().First().</para>
- </summary>
- <param name="e">Root VisualElement on which the selector will be applied.</param>
- <param name="name">If specified, will select elements with this name.</param>
- <param name="classes">If specified, will select elements with the given class (not to be confused with Type).</param>
- <param name="className">If specified, will select elements with the given class (not to be confused with Type).</param>
- <returns>
- <para>The first element matching all the criteria, or null if none was found.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UQueryExtensions.Q(UnityEngine.Experimental.UIElements.VisualElement,System.String,System.String[])">
- <summary>
- <para>Convenience overload, shorthand for Query&lt;T&gt;.Build().First().</para>
- </summary>
- <param name="e">Root VisualElement on which the selector will be applied.</param>
- <param name="name">If specified, will select elements with this name.</param>
- <param name="classes">If specified, will select elements with the given class (not to be confused with Type).</param>
- <param name="className">If specified, will select elements with the given class (not to be confused with Type).</param>
- <returns>
- <para>The first element matching all the criteria, or null if none was found.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UQueryExtensions.Query(UnityEngine.Experimental.UIElements.VisualElement,System.String,System.String)">
- <summary>
- <para>Initializes a QueryBuilder with the specified selection rules.</para>
- </summary>
- <param name="e">Root VisualElement on which the selector will be applied.</param>
- <param name="name">If specified, will select elements with this name.</param>
- <param name="className">If specified, will select elements with the given class (not to be confused with Type).</param>
- <param name="classes">If specified, will select elements with the given class (not to be confused with Type).</param>
- <returns>
- <para>QueryBuilder configured with the associated selection rules.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UQueryExtensions.Query(UnityEngine.Experimental.UIElements.VisualElement,System.String,System.String[])">
- <summary>
- <para>Initializes a QueryBuilder with the specified selection rules.</para>
- </summary>
- <param name="e">Root VisualElement on which the selector will be applied.</param>
- <param name="name">If specified, will select elements with this name.</param>
- <param name="className">If specified, will select elements with the given class (not to be confused with Type).</param>
- <param name="classes">If specified, will select elements with the given class (not to be confused with Type).</param>
- <returns>
- <para>QueryBuilder configured with the associated selection rules.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UQueryExtensions.Query(UnityEngine.Experimental.UIElements.VisualElement,System.String,System.String[])">
- <summary>
- <para>Initializes a QueryBuilder with the specified selection rules. Template parameter specifies the type of elements the selector applies to (ie: Label, Button, etc).</para>
- </summary>
- <param name="e">Root VisualElement on which the selector will be applied.</param>
- <param name="name">If specified, will select elements with this name.</param>
- <param name="classes">If specified, will select elements with the given class (not to be confused with Type).</param>
- <param name="className">If specified, will select elements with the given class (not to be confused with Type).</param>
- <returns>
- <para>QueryBuilder configured with the associated selection rules.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UQueryExtensions.Query(UnityEngine.Experimental.UIElements.VisualElement,System.String,System.String)">
- <summary>
- <para>Initializes a QueryBuilder with the specified selection rules. Template parameter specifies the type of elements the selector applies to (ie: Label, Button, etc).</para>
- </summary>
- <param name="e">Root VisualElement on which the selector will be applied.</param>
- <param name="name">If specified, will select elements with this name.</param>
- <param name="classes">If specified, will select elements with the given class (not to be confused with Type).</param>
- <param name="className">If specified, will select elements with the given class (not to be confused with Type).</param>
- <returns>
- <para>QueryBuilder configured with the associated selection rules.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UQueryExtensions.Query(UnityEngine.Experimental.UIElements.VisualElement)">
- <summary>
- <para>Initializes an empty QueryBuilder on a specified root element.</para>
- </summary>
- <param name="e">Root VisualElement on which the selector will be applied.</param>
- <returns>
- <para>An empty QueryBuilder on a specified root element.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.UxmlAttributeDescription">
- <summary>
- <para>Base class for describing an XML attribute.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.UxmlAttributeDescription.defaultValueAsString">
- <summary>
- <para>The default value for the attribute, as a string.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.UxmlAttributeDescription.name">
- <summary>
- <para>The attribute name.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.UxmlAttributeDescription.restriction">
- <summary>
- <para>Restrictions on the possible values of the attribute.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.UxmlAttributeDescription.type">
- <summary>
- <para>Attribute type.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.UxmlAttributeDescription.typeNamespace">
- <summary>
- <para>Attribute namespace.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.UxmlAttributeDescription.use">
- <summary>
- <para>Whether the attribute is optional, required or prohibited.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UxmlAttributeDescription.#ctor">
- <summary>
- <para>Constructor.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.UIElements.UxmlAttributeDescription.Use.None">
- <summary>
- <para>There is no restriction on the use of this attribute with the element.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.UIElements.UxmlAttributeDescription.Use.Optional">
- <summary>
- <para>The attribute is optional for the element.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.UIElements.UxmlAttributeDescription.Use.Prohibited">
- <summary>
- <para>The attribute should not appear for the element.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.UIElements.UxmlAttributeDescription.Use.Required">
- <summary>
- <para>The attribute must appear in the element tag.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.UxmlBoolAttributeDescription">
- <summary>
- <para>Describes a XML bool attribute.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.UxmlBoolAttributeDescription.defaultValue">
- <summary>
- <para>The default value for the attribute.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.UxmlBoolAttributeDescription.defaultValueAsString">
- <summary>
- <para>The default value for the attribute, as a string.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UxmlBoolAttributeDescription.#ctor">
- <summary>
- <para>Constructor.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UxmlBoolAttributeDescription.GetValueFromBag(UnityEngine.Experimental.UIElements.IUxmlAttributes)">
- <summary>
- <para>Retrieves the value of this attribute from the attribute bag. Returns it if it is found, otherwise return defaultValue.</para>
- </summary>
- <param name="bag">The bag of attributes.</param>
- <returns>
- <para>The value of the attribute.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.UxmlChildElementDescription">
- <summary>
- <para>Describe an allowed child element for an element.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.UxmlChildElementDescription.elementName">
- <summary>
- <para>The name of the allowed child element.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.UxmlChildElementDescription.elementNamespace">
- <summary>
- <para>The namespace name of the allowed child element.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UxmlChildElementDescription.#ctor(System.Type)">
- <summary>
- <para>Constructor.</para>
- </summary>
- <param name="t"></param>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.UxmlColorAttributeDescription">
- <summary>
- <para>Describes a XML attribute representing a Color as a string.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.UxmlColorAttributeDescription.defaultValue">
- <summary>
- <para>The default value for the attribute.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.UxmlColorAttributeDescription.defaultValueAsString">
- <summary>
- <para>The default value for the attribute, as a string.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UxmlColorAttributeDescription.#ctor">
- <summary>
- <para>Constructor.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UxmlColorAttributeDescription.GetValueFromBag(UnityEngine.Experimental.UIElements.IUxmlAttributes)">
- <summary>
- <para>Retrieves the value of this attribute from the attribute bag. Returns it if it is found, otherwise return defaultValue.</para>
- </summary>
- <param name="bag">The bag of attributes.</param>
- <returns>
- <para>The value of the attribute.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.UxmlDoubleAttributeDescription">
- <summary>
- <para>Describes a XML double attribute.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.UxmlDoubleAttributeDescription.defaultValue">
- <summary>
- <para>The default value for the attribute.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.UxmlDoubleAttributeDescription.defaultValueAsString">
- <summary>
- <para>The default value for the attribute, as a string.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UxmlDoubleAttributeDescription.#ctor">
- <summary>
- <para>Constructor.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UxmlDoubleAttributeDescription.GetValueFromBag(UnityEngine.Experimental.UIElements.IUxmlAttributes)">
- <summary>
- <para>Retrieves the value of this attribute from the attribute bag. Returns it if it is found, otherwise return defaultValue.</para>
- </summary>
- <param name="bag">The bag of attributes.</param>
- <returns>
- <para>The value of the attribute.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.UxmlEnumAttributeDescription`1">
- <summary>
- <para>Describes a XML attribute representing an enum as a string.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.UxmlEnumAttributeDescription_1.defaultValue">
- <summary>
- <para>The default value for the attribute.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.UxmlEnumAttributeDescription_1.defaultValueAsString">
- <summary>
- <para>The default value for the attribute, as a string.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UxmlEnumAttributeDescription_1.#ctor">
- <summary>
- <para>Constructor.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UxmlEnumAttributeDescription_1.GetValueFromBag(UnityEngine.Experimental.UIElements.IUxmlAttributes)">
- <summary>
- <para>Retrieves the value of this attribute from the attribute bag. Returns it if it is found, otherwise return defaultValue.</para>
- </summary>
- <param name="bag">The bag of attributes.</param>
- <returns>
- <para>The value of the attribute.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.UxmlEnumeration">
- <summary>
- <para>Restricts the value of an attribute to be taken from a list of values.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.UIElements.UxmlEnumeration.values">
- <summary>
- <para>The list of values the attribute can take.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UxmlEnumeration.#ctor">
- <summary>
- <para>Constructor.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UxmlEnumeration.Equals(UnityEngine.Experimental.UIElements.UxmlTypeRestriction)">
- <summary>
- <para>Indicates whether the current UxmlEnumeration object is equal to another object of the same type.</para>
- </summary>
- <param name="other">The object to compare with.</param>
- <returns>
- <para>True if the otheer object is equal to this one.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.UxmlFactory`1">
- <summary>
- <para>UxmlFactory specialization for classes that derive from VisualElement and that shares its traits, VisualElementTraits.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UxmlFactory_1.#ctor">
- <summary>
- <para>Constructor.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.UxmlFactory`2">
- <summary>
- <para>Generic base class for UXML factories, which instantiate a VisualElement using the data read from a UXML file.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.UxmlFactory_2.canHaveAnyAttribute">
- <summary>
- <para>Returns UxmlTraits.canHaveAnyAttribute (where UxmlTraits is the argument for T1).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.UxmlFactory_2.substituteForTypeName">
- <summary>
- <para>Returns an empty string if T0 is not VisualElement; otherwise, returns "VisualElement".</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.UxmlFactory_2.substituteForTypeNamespace">
- <summary>
- <para>Returns the namespace for substituteForTypeName.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.UxmlFactory_2.substituteForTypeQualifiedName">
- <summary>
- <para>Returns the fully qualified name for substituteForTypeName.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.UxmlFactory_2.uxmlAttributesDescription">
- <summary>
- <para>Returns an empty enumerable.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.UxmlFactory_2.uxmlChildElementsDescription">
- <summary>
- <para>Returns an empty enumerable.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.UxmlFactory_2.uxmlName">
- <summary>
- <para>Returns the type name of T0.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.UxmlFactory_2.uxmlNamespace">
- <summary>
- <para>Returns the namespace name of T0.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.UxmlFactory_2.uxmlQualifiedName">
- <summary>
- <para>Returns the typefully qualified name of T0.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UxmlFactory_2.AcceptsAttributeBag(UnityEngine.Experimental.UIElements.IUxmlAttributes)">
- <summary>
- <para>Returns true.</para>
- </summary>
- <param name="bag">The attribute bag.</param>
- <returns>
- <para>Always true.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UxmlFactory_2.Create(UnityEngine.Experimental.UIElements.IUxmlAttributes,UnityEngine.Experimental.UIElements.CreationContext)">
- <summary>
- <para>Instantiate an object of type T0 and initialize it by calling T1 UxmlTraits.Init method.</para>
- </summary>
- <param name="bag">A bag of name-value pairs, one for each attribute of the UXML element. This can be used to initialize the properties of the created object.</param>
- <param name="cc">When the element is created as part of a template instance inserted in another document, this contains information about the insertion point.</param>
- <returns>
- <para>The created element.</para>
- </returns>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.UxmlFactory_2.CreatesType">
- <summary>
- <para>Returns the Type of the objects created by this factory.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UxmlFactory_2.DoCreate(UnityEngine.Experimental.UIElements.IUxmlAttributes,UnityEngine.Experimental.UIElements.CreationContext)">
- <summary>
- <para>If implemented by your factory, this function will be called to instantiate an object of type T0. Otherwise, the default constructor of T0 will be used.</para>
- </summary>
- <param name="bag">A bag of name-value pairs, one for each attribute of the UXML element. This can be used to initialize the properties of the created object.</param>
- <param name="cc">When the element is created as part of a template instance inserted in another document, this contains information about the insertion point.</param>
- <returns>
- <para>The created element.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.UxmlFloatAttributeDescription">
- <summary>
- <para>Describes a XML float attribute.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.UxmlFloatAttributeDescription.defaultValue">
- <summary>
- <para>The default value for the attribute.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.UxmlFloatAttributeDescription.defaultValueAsString">
- <summary>
- <para>The default value for the attribute, as a string.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UxmlFloatAttributeDescription.#ctor">
- <summary>
- <para>Constructor.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UxmlFloatAttributeDescription.GetValueFromBag(UnityEngine.Experimental.UIElements.IUxmlAttributes)">
- <summary>
- <para>Retrieves the value of this attribute from the attribute bag. Returns it if it is found, otherwise return defaultValue.</para>
- </summary>
- <param name="bag">The bag of attributes.</param>
- <returns>
- <para>The value of the attribute.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.UxmlIntAttributeDescription">
- <summary>
- <para>Describes a XML int attribute.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.UxmlIntAttributeDescription.defaultValue">
- <summary>
- <para>The default value for the attribute.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.UxmlIntAttributeDescription.defaultValueAsString">
- <summary>
- <para>The default value for the attribute, as a string.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UxmlIntAttributeDescription.#ctor">
- <summary>
- <para>Constructor.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UxmlIntAttributeDescription.GetValueFromBag(UnityEngine.Experimental.UIElements.IUxmlAttributes)">
- <summary>
- <para>Retrieves the value of this attribute from the attribute bag. Returns it if it is found, otherwise return defaultValue.</para>
- </summary>
- <param name="bag">The bag of attributes.</param>
- <returns>
- <para>The value of the attribute.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.UxmlLongAttributeDescription">
- <summary>
- <para>Describes a XML long attribute.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.UxmlLongAttributeDescription.defaultValue">
- <summary>
- <para>The default value for the attribute.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.UxmlLongAttributeDescription.defaultValueAsString">
- <summary>
- <para>The default value for the attribute, as a string.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UxmlLongAttributeDescription.#ctor">
- <summary>
- <para>Constructor.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UxmlLongAttributeDescription.GetValueFromBag(UnityEngine.Experimental.UIElements.IUxmlAttributes)">
- <summary>
- <para>Retrieves the value of this attribute from the attribute bag. Returns it if it is found, otherwise return defaultValue.</para>
- </summary>
- <param name="bag">The bag of attributes.</param>
- <returns>
- <para>The value of the attribute.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.UxmlRootElementFactory">
- <summary>
- <para>Factory for the root UXML element.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.UxmlRootElementFactory.substituteForTypeName">
- <summary>
- <para>Returns the empty string, as the root element can not appear anywhere else bit at the root of the document.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.UxmlRootElementFactory.substituteForTypeNamespace">
- <summary>
- <para>Returns the empty string, as the root element can not appear anywhere else bit at the root of the document.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.UxmlRootElementFactory.substituteForTypeQualifiedName">
- <summary>
- <para>Returns the empty string, as the root element can not appear anywhere else bit at the root of the document.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.UxmlRootElementFactory.uxmlName">
- <summary>
- <para>Returns "UXML".</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.UxmlRootElementFactory.uxmlQualifiedName">
- <summary>
- <para>Returns the qualified name for this element.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UxmlRootElementFactory.Create(UnityEngine.Experimental.UIElements.IUxmlAttributes,UnityEngine.Experimental.UIElements.CreationContext)">
- <summary>
- <para>Returns null.</para>
- </summary>
- <param name="bag"></param>
- <param name="cc"></param>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UxmlRootElementFactory.#ctor">
- <summary>
- <para>Constructor.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.UxmlRootElementTraits">
- <summary>
- <para>UxmlTraits for the UXML root element.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.UxmlRootElementTraits.uxmlChildElementsDescription">
- <summary>
- <para>Returns an enumerable containing UxmlChildElementDescription(typeof(VisualElement)), since the root element can contain VisualElements.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UxmlRootElementTraits.#ctor">
- <summary>
- <para>Constructor.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.UxmlStringAttributeDescription">
- <summary>
- <para>Describes a XML string attribute.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.UxmlStringAttributeDescription.defaultValue">
- <summary>
- <para>The default value for the attribute.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.UxmlStringAttributeDescription.defaultValueAsString">
- <summary>
- <para>The default value for the attribute, as a string.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UxmlStringAttributeDescription.#ctor">
- <summary>
- <para>Constructor.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UxmlStringAttributeDescription.GetValueFromBag(UnityEngine.Experimental.UIElements.IUxmlAttributes)">
- <summary>
- <para>Retrieves the value of this attribute from the attribute bag. Returns it if it is found, otherwise return defaultValue.</para>
- </summary>
- <param name="bag">The bag of attributes.</param>
- <returns>
- <para>The value of the attribute.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.UxmlTraits">
- <summary>
- <para>Describes a VisualElement derived class for the parsing of UXML files and the generation of UXML schema definition.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.UxmlTraits.canHaveAnyAttribute">
- <summary>
- <para>Must return true if the UXML element attributes are not restricted to the values enumerated by uxmlAttributesDescription.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.UxmlTraits.uxmlAttributesDescription">
- <summary>
- <para>Describes the UXML attributes expected by the element. The attributes enumerated here will appear in the UXML schema.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.UxmlTraits.uxmlChildElementsDescription">
- <summary>
- <para>Describes the types of element that can appear as children of this element in a UXML file.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UxmlTraits.Init(UnityEngine.Experimental.UIElements.VisualElement,UnityEngine.Experimental.UIElements.IUxmlAttributes,UnityEngine.Experimental.UIElements.CreationContext)">
- <summary>
- <para>Initialize a VisualElement instance with values from the UXML element attributes.</para>
- </summary>
- <param name="ve">The VisualElement to initialize.</param>
- <param name="bag">A bag of name-value pairs, one for each attribute of the UXML element.</param>
- <param name="cc">When the element is created as part of a template instance inserted in another document, this contains information about the insertion point.</param>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.UxmlTypeRestriction">
- <summary>
- <para>Base class to restricts the value of an attribute.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UxmlTypeRestriction.Equals(UnityEngine.Experimental.UIElements.UxmlTypeRestriction)">
- <summary>
- <para>Indicates whether the current UxmlTypeRestriction object is equal to another object of the same type.</para>
- </summary>
- <param name="other">The object to compare with.</param>
- <returns>
- <para>True if the otheer object is equal to this one.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.UxmlValueBounds">
- <summary>
- <para>Restricts the value of an attribute to be within the specified bounds.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.UIElements.UxmlValueBounds.excludeMax">
- <summary>
- <para>True if the bounds exclude max.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.UIElements.UxmlValueBounds.excludeMin">
- <summary>
- <para>True if the bounds exclude min.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.UIElements.UxmlValueBounds.max">
- <summary>
- <para>The maximum value for the attribute.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.UIElements.UxmlValueBounds.min">
- <summary>
- <para>The minimum value for the attribute.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UxmlValueBounds.#ctor">
- <summary>
- <para>Constructor.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UxmlValueBounds.Equals(UnityEngine.Experimental.UIElements.UxmlTypeRestriction)">
- <summary>
- <para>Indicates whether the current UxmlValueBounds object is equal to another object of the same type.</para>
- </summary>
- <param name="other">The object to compare with.</param>
- <returns>
- <para>True if the otheer object is equal to this one.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.UxmlValueMatches">
- <summary>
- <para>Restricts the value of an attribute to match a regular expression.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.UIElements.UxmlValueMatches.regex">
- <summary>
- <para>The regular expression that should be matched by the value.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UxmlValueMatches.#ctor">
- <summary>
- <para>Constructor.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.UxmlValueMatches.Equals(UnityEngine.Experimental.UIElements.UxmlTypeRestriction)">
- <summary>
- <para>Indicates whether the current UxmlValueMatches object is equal to another object of the same type.</para>
- </summary>
- <param name="other">The object to compare with.</param>
- <returns>
- <para>True if the otheer object is equal to this one.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.ValidateCommandEvent">
- <summary>
- <para>The event sent to probe which elements accepts a command.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.ValidateCommandEvent.#ctor">
- <summary>
- <para>Constructor.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.VisualContainer.VisualContainerFactory">
- <summary>
- <para>Instantiates a VisualElement using the data read from a UXML file.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.VisualContainer.VisualContainerFactory.substituteForTypeName">
- <summary>
- <para>Returns the VisualElement type name.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.VisualContainer.VisualContainerFactory.substituteForTypeNamespace">
- <summary>
- <para>Returns the VisualElement type namespace.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.VisualContainer.VisualContainerFactory.substituteForTypeQualifiedName">
- <summary>
- <para>Returns the VisualElement qualified name.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.VisualContainer.VisualContainerFactory.uxmlName">
- <summary>
- <para>Returns VisualContainer type name.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.VisualContainer.VisualContainerFactory.uxmlNamespace">
- <summary>
- <para>Returns VisualContainer namespace name.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.VisualContainer.VisualContainerFactory.uxmlQualifiedName">
- <summary>
- <para>Returns VisualContainer full name.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.VisualContainer.VisualContainerFactory.#ctor">
- <summary>
- <para>Constructor.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.VisualElement">
- <summary>
- <para>Base class for objects that are part of the UIElements visual tree.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.VisualElement.childCount">
- <summary>
- <para> Number of child elements in this object's contentContainer
- </para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.VisualElement.clippingOptions">
- <summary>
- <para>Should this element clip painting to its boundaries.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.VisualElement.contentContainer">
- <summary>
- <para> child elements are added to this element, usually this
- </para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.VisualElement.dataWatch">
- <summary>
- <para>Access to this element data watch interface.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.UIElements.VisualElement.defaultFocusIndex">
- <summary>
- <para>The default focus index for newly created elements.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.VisualElement.enabledInHierarchy">
- <summary>
- <para>Returns true if the VisualElement is enabled in its own hierarchy.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.VisualElement.enabledSelf">
- <summary>
- <para>Returns true if the VisualElement is enabled locally.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.VisualElement.persistenceKey">
- <summary>
- <para>Used for view data persistence (ie. tree expanded states, scroll position, zoom level).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.VisualElement.schedule">
- <summary>
- <para>Retrieves this VisualElement's IVisualElementScheduler</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.VisualElement.shadow">
- <summary>
- <para> Access to this element physical hierarchy
- </para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.VisualElement.style">
- <summary>
- <para>Reference to the style object of this element.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.VisualElement.userData">
- <summary>
- <para>This property can be used to associate application-specific user data with this VisualElement.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.VisualElement.Add(UnityEngine.Experimental.UIElements.VisualElement)">
- <summary>
- <para>Add an element to this element's contentContainer</para>
- </summary>
- <param name="child"></param>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.VisualElement.AddStyleSheetPath(System.String)">
- <summary>
- <para>Adds this stylesheet file to this element list of applied styles</para>
- </summary>
- <param name="sheetPath"></param>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.VisualElement.AnyDirty(UnityEngine.Experimental.UIElements.ChangeType)">
- <summary>
- <para>Checks if any of the ChangeTypes have been marked dirty.</para>
- </summary>
- <param name="type">The ChangeType(s) to check.</param>
- <returns>
- <para>True if at least one of the checked ChangeTypes have been marked dirty.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.VisualElement.BringToFront">
- <summary>
- <para>Brings this element to the end of its parent children list. The element will be visually in front of any overlapping sibling elements.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.VisualElement.Children">
- <summary>
- <para>Returns the elements from its contentContainer</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.VisualElement.Clear">
- <summary>
- <para>Remove all child elements from this element's contentContainer</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.VisualElement.ClippingOptions">
- <summary>
- <para>Options to select clipping strategy.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.UIElements.VisualElement.ClippingOptions.ClipAndCacheContents">
- <summary>
- <para>Enables clipping and renders contents to a cache texture.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.UIElements.VisualElement.ClippingOptions.ClipContents">
- <summary>
- <para>Will enable clipping. This VisualElement and its children's content will be limited to this element's bounds.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.UIElements.VisualElement.ClippingOptions.NoClipping">
- <summary>
- <para>Will disable clipping and let children VisualElements paint outside its bounds.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.VisualElement.Contains(UnityEngine.Experimental.UIElements.VisualElement)">
- <summary>
- <para>Returns true if the element is a direct child of this VisualElement</para>
- </summary>
- <param name="child"></param>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.VisualElement.ElementAt(System.Int32)">
- <summary>
- <para>Retrieves the child element at position</para>
- </summary>
- <param name="index"></param>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.VisualElement.EnableInClassList(System.String,System.Boolean)">
- <summary>
- <para>Enables or disables the class with the given name.</para>
- </summary>
- <param name="className">The name of the class to enable or disable.</param>
- <param name="enable">A boolean flag that adds or removes the class name from the class list. If true, EnableInClassList adds the class name to the class list. If false, EnableInClassList removes the class name from the class list.</param>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.VisualElement.FindAncestorUserData">
- <summary>
- <para>Searchs up the hierachy of this VisualElement and retrieves stored userData, if any is found.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.VisualElement.FindCommonAncestor(UnityEngine.Experimental.UIElements.VisualElement)">
- <summary>
- <para>Finds the lowest commont ancestor between two VisualElements inside the VisualTree hierarchy</para>
- </summary>
- <param name="other"></param>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.VisualElement.GetEnumerator">
- <summary>
- <para>Allows to iterate into this elements children</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.VisualElement.GetFirstAncestorOfType">
- <summary>
- <para>Walks up the hierarchy, starting from this element's parent, and returns the first VisualElement of this type</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.VisualElement.GetFirstOfType">
- <summary>
- <para>Walks up the hierarchy, starting from this element, and returns the first VisualElement of this type</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.VisualElement.GetFullHierarchicalPersistenceKey">
- <summary>
- <para>Combine this VisualElement's VisualElement.persistenceKey with those of its parents to create a more unique key for use with VisualElement.GetOrCreatePersistentData.</para>
- </summary>
- <returns>
- <para>Full hierarchical persistence key.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.VisualElement.GetOrCreatePersistentData(System.Object,System.String)">
- <summary>
- <para>Takes a reference to an existing persisted object and a key and returns the object either filled with the persisted state or as-is.</para>
- </summary>
- <param name="existing">An existing object to be persisted, or null to create a new object. If no persisted state is found, a non-null object will be returned as-is.</param>
- <param name="key">The key for the current VisualElement to be used with the persistence store on the EditorWindow.</param>
- <returns>
- <para>The same object being passed in (or a new one if null was passed in), but possibly with its persistent state restored.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.VisualElement.GetOrCreatePersistentData(UnityEngine.ScriptableObject,System.String)">
- <summary>
- <para>Takes a reference to an existing persisted object and a key and returns the object either filled with the persisted state or as-is.</para>
- </summary>
- <param name="existing">An existing object to be persisted, or null to create a new object. If no persisted state is found, a non-null object will be returned as-is.</param>
- <param name="key">The key for the current VisualElement to be used with the persistence store on the EditorWindow.</param>
- <returns>
- <para>The same object being passed in (or a new one if null was passed in), but possibly with its persistent state restored.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.VisualElement.HasStyleSheetPath">
- <summary>
- <para>Checks if this stylesheet file is in this element list of applied styles</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.VisualElement.Hierarchy">
- <summary>
- <para>Hierarchy is a sctuct allowing access to the shadow hierarchy of visual elements</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.VisualElement.Hierarchy.childCount">
- <summary>
- <para> Number of child elements in this object's contentContainer
- </para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.VisualElement.Hierarchy.parent">
- <summary>
- <para> Access the physical parent of this element in the hierarchy
- </para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.VisualElement.Hierarchy.Add(UnityEngine.Experimental.UIElements.VisualElement)">
- <summary>
- <para>Add an element to this element's contentContainer</para>
- </summary>
- <param name="child"></param>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.VisualElement.Hierarchy.Children">
- <summary>
- <para>Returns the elements from its contentContainer</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.VisualElement.Hierarchy.Clear">
- <summary>
- <para>Remove all child elements from this element's contentContainer</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.VisualElement.Hierarchy.ElementAt(System.Int32)">
- <summary>
- <para>Retrieves the child element at position</para>
- </summary>
- <param name="index"></param>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.VisualElement.Hierarchy.IndexOf(UnityEngine.Experimental.UIElements.VisualElement)">
- <summary>
- <para>Retrieves the index of the specified VisualElement in the Hierarchy.</para>
- </summary>
- <param name="element">The element to return the index for.</param>
- <returns>
- <para>Returns the index of the element, or -1 if the element is not found.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.VisualElement.Hierarchy.Insert">
- <summary>
- <para>Insert an element into this element's contentContainer</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.VisualElement.Hierarchy.Remove(UnityEngine.Experimental.UIElements.VisualElement)">
- <summary>
- <para>Removes this child from the hierarchy</para>
- </summary>
- <param name="child"></param>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.VisualElement.Hierarchy.RemoveAt(System.Int32)">
- <summary>
- <para>Remove the child element located at this position from this element's contentContainer</para>
- </summary>
- <param name="index"></param>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.VisualElement.Hierarchy.Sort(System.Comparison`1&lt;UnityEngine.Experimental.UIElements.VisualElement&gt;)">
- <summary>
- <para>Reorders child elements from this VisualElement contentContainer.</para>
- </summary>
- <param name="comp">Sorting criteria.</param>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.VisualElement.Hierarchy.this">
- <summary>
- <para> Access to this element physical hierarchy
- </para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.VisualElement.IndexOf(UnityEngine.Experimental.UIElements.VisualElement)">
- <summary>
- <para>Retrieves the child index of the specified VisualElement.</para>
- </summary>
- <param name="element">The child to return the index for.</param>
- <returns>
- <para>Returns the index of the child, or -1 if the child is not found.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.VisualElement.Insert">
- <summary>
- <para>Insert an element into this element's contentContainer</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.VisualElement.MeasureMode">
- <summary>
- <para>The modes available to measure VisualElement sizes.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.UIElements.VisualElement.MeasureMode.AtMost">
- <summary>
- <para>At Most. The element should give its preferred width/height but no more than the value passed.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.UIElements.VisualElement.MeasureMode.Exactly">
- <summary>
- <para>The element should give the width/height that is passed in and derive the opposite site from this value (for example, calculate text size from a fixed width).</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.UIElements.VisualElement.MeasureMode.Undefined">
- <summary>
- <para>The element should give its preferred width/height without any constraint.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.VisualElement.OnPersistentDataReady">
- <summary>
- <para>Called when the persistent data is accessible and/or when the data or persistence key have changed (VisualElement is properly parented).</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.VisualElement.OnStyleResolved(UnityEngine.Experimental.UIElements.StyleSheets.ICustomStyle)">
- <summary>
- <para>Callback when the styles of an object have changed.</para>
- </summary>
- <param name="style"></param>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.VisualElement.OverwriteFromPersistedData(System.Object,System.String)">
- <summary>
- <para>Overwrite object from the persistent data store.</para>
- </summary>
- <param name="key">The key for the current VisualElement to be used with the persistence store on the EditorWindow.</param>
- <param name="obj">Object to overwrite.</param>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.VisualElement.PlaceBehind(UnityEngine.Experimental.UIElements.VisualElement)">
- <summary>
- <para>Places this element right before the sibling element in their parent children list. If the element and the sibling position overlap, the element will be visually behind of its sibling.</para>
- </summary>
- <param name="sibling">The sibling element.</param>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.VisualElement.PlaceInFront(UnityEngine.Experimental.UIElements.VisualElement)">
- <summary>
- <para>Places this element right after the sibling element in their parent children list. If the element and the sibling position overlap, the element will be visually in front of its sibling.</para>
- </summary>
- <param name="sibling">The sibling element.</param>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.VisualElement.Remove(UnityEngine.Experimental.UIElements.VisualElement)">
- <summary>
- <para>Removes this child from the hierarchy</para>
- </summary>
- <param name="element"></param>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.VisualElement.RemoveAt(System.Int32)">
- <summary>
- <para>Remove the child element located at this position from this element's contentContainer</para>
- </summary>
- <param name="index"></param>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.VisualElement.RemoveFromHierarchy">
- <summary>
- <para>Removes this element from its parent hierarchy</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.VisualElement.RemoveStyleSheetPath(System.String)">
- <summary>
- <para>Removes this stylesheet file from this element list of applied styles</para>
- </summary>
- <param name="sheetPath"></param>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.VisualElement.SavePersistentData">
- <summary>
- <para>Write persistence data to file.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.VisualElement.SendToBack">
- <summary>
- <para>Sends this element to the beginning of its parent children list. The element will be visually behind any overlapping sibling elements.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.VisualElement.SetEnabled(System.Boolean)">
- <summary>
- <para>Changes the VisualElement enabled state. A disabled VisualElement does not receive most events.</para>
- </summary>
- <param name="value">New enabled state</param>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.VisualElement.Sort(System.Comparison`1&lt;UnityEngine.Experimental.UIElements.VisualElement&gt;)">
- <summary>
- <para>Reorders child elements from this VisualElement contentContainer.</para>
- </summary>
- <param name="comp">Sorting criteria.</param>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.VisualElement.this">
- <summary>
- <para> Access to this element physical hierarchy
- </para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.VisualElement.ToggleInClassList(System.String)">
- <summary>
- <para>Toggles between adding and removing the given class name from the class list.</para>
- </summary>
- <param name="className">The class name to add or remove from the class list.</param>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.VisualElement.VisualElementFactory">
- <summary>
- <para>Instantiates a VisualElement using the data read from a UXML file.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.VisualElement.VisualElementFactory.#ctor">
- <summary>
- <para>Constructor.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.VisualElement.VisualElementUxmlTraits">
- <summary>
- <para>UxmlTraits for the VisualElement.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.VisualElement.VisualElementUxmlTraits.uxmlAttributesDescription">
- <summary>
- <para>Returns an enumerable containing attribute descriptions for VisualElement properties that should be available in UXML.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.VisualElement.VisualElementUxmlTraits.uxmlChildElementsDescription">
- <summary>
- <para>Returns an enumerable containing UxmlChildElementDescription(typeof(VisualElement)), since VisualElements can contain other VisualElements.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.VisualElement.VisualElementUxmlTraits.#ctor">
- <summary>
- <para>Constructor.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.VisualElement.VisualElementUxmlTraits.Init(UnityEngine.Experimental.UIElements.VisualElement,UnityEngine.Experimental.UIElements.IUxmlAttributes,UnityEngine.Experimental.UIElements.CreationContext)">
- <summary>
- <para>Initialize VisualElement properties using values from the attribute bag.</para>
- </summary>
- <param name="ve">The object to initialize.</param>
- <param name="bag">The attribute bag.</param>
- <param name="cc">The creation context; unused.</param>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.VisualElementExtensions">
- <summary>
- <para>VisualElementExtensions is a set of extension methods useful for VisualElement.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.VisualElementExtensions.AddManipulator(UnityEngine.Experimental.UIElements.VisualElement,UnityEngine.Experimental.UIElements.IManipulator)">
- <summary>
- <para>Add a manipulator associated to a VisualElement.</para>
- </summary>
- <param name="ele">VisualElement associated to the manipulator.</param>
- <param name="manipulator">Manipulator to be added to the VisualElement.</param>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.VisualElementExtensions.RemoveManipulator(UnityEngine.Experimental.UIElements.VisualElement,UnityEngine.Experimental.UIElements.IManipulator)">
- <summary>
- <para>Remove a manipulator associated to a VisualElement.</para>
- </summary>
- <param name="ele">VisualElement associated to the manipulator.</param>
- <param name="manipulator">Manipulator to be removed from the VisualElement.</param>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.VisualElementExtensions.StretchToParentWidth(UnityEngine.Experimental.UIElements.VisualElement)">
- <summary>
- <para>The given VisualElement's left and right edges will be aligned with the corresponding edges of the parent element.</para>
- </summary>
- <param name="elem"></param>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.VisualElementFocusChangeDirection">
- <summary>
- <para>Define focus change directions for the VisualElementFocusRing.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.VisualElementFocusChangeDirection.lastValue">
- <summary>
- <para>Last value for the direction defined by this class.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.VisualElementFocusChangeDirection.left">
- <summary>
- <para>The focus is moving to the left.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.VisualElementFocusChangeDirection.right">
- <summary>
- <para>The focus is moving to the right.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.VisualElementFocusRing">
- <summary>
- <para>Implementation of a linear focus ring. Elements are sorted according to their focusIndex.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.VisualElementFocusRing.defaultFocusOrder">
- <summary>
- <para>The focus order for elements having 0 has a focusIndex.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.VisualElementFocusRing.#ctor">
- <summary>
- <para>Constructor.</para>
- </summary>
- <param name="root">The root of the element tree for which we want to build a focus ring.</param>
- <param name="dfo">Default ordering of the elements in the ring.</param>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.VisualElementFocusRing.DefaultFocusOrder">
- <summary>
- <para>Ordering of elements in the focus ring.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.UIElements.VisualElementFocusRing.DefaultFocusOrder.ChildOrder">
- <summary>
- <para>Order elements using a depth-first pre-order traversal of the element tree.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.UIElements.VisualElementFocusRing.DefaultFocusOrder.PositionXY">
- <summary>
- <para>Order elements according to their position, first by X, then by Y.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.UIElements.VisualElementFocusRing.DefaultFocusOrder.PositionYX">
- <summary>
- <para>Order elements according to their position, first by Y, then by X.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.VisualElementFocusRing.GetFocusChangeDirection(UnityEngine.Experimental.UIElements.Focusable,UnityEngine.Experimental.UIElements.EventBase)">
- <summary>
- <para>Get the direction of the focus change for the given event. For example, when the Tab key is pressed, focus should be given to the element to the right in the focus ring.</para>
- </summary>
- <param name="currentFocusable"></param>
- <param name="e"></param>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.VisualElementFocusRing.GetNextFocusable(UnityEngine.Experimental.UIElements.Focusable,UnityEngine.Experimental.UIElements.FocusChangeDirection)">
- <summary>
- <para>Get the next element in the given direction.</para>
- </summary>
- <param name="currentFocusable"></param>
- <param name="direction"></param>
- </member>
- <member name="T:UnityEngine.Experimental.UIElements.WheelEvent">
- <summary>
- <para>Mouse wheel event.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.UIElements.WheelEvent.delta">
- <summary>
- <para>The amount of scrolling applied on the mouse wheel.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.WheelEvent.#ctor">
- <summary>
- <para>Constructor. Avoid newing events. Instead, use GetPooled() to get an event from a pool of reusable events.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.WheelEvent.GetPooled(UnityEngine.Event)">
- <summary>
- <para>Get an event from the event pool and initialize it with the given values. Use this function instead of creating new events. Events obtained from this method should be released back to the pool using ReleaseEvent().</para>
- </summary>
- <param name="systemEvent">A wheel IMGUI event.</param>
- <returns>
- <para>A wheel event.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.UIElements.WheelEvent.Init">
- <summary>
- <para>Reset the event members to their initial value.</para>
- </summary>
- </member>
- <member name="A:UnityEngine.UIElementsModule">
- <summary>
- <para>The UIElements module implements the UIElements retained mode UI framework.</para>
- </summary>
- </member>
- </members>
-</doc>
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.UIModule.dll b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.UIModule.dll
deleted file mode 100644
index 7ffabe9..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.UIModule.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.UIModule.xml b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.UIModule.xml
deleted file mode 100644
index 6eaa0cc..0000000
--- a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.UIModule.xml
+++ /dev/null
@@ -1,540 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
-<doc>
- <members>
- <assembly>
- <name>UnityEngine.UIModule</name>
- </assembly>
- <member name="T:UnityEngine.AdditionalCanvasShaderChannels">
- <summary>
- <para>Enum mask of possible shader channel properties that can also be included when the Canvas mesh is created.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AdditionalCanvasShaderChannels.None">
- <summary>
- <para>No additional shader parameters are needed.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AdditionalCanvasShaderChannels.Normal">
- <summary>
- <para>Include the normals on the mesh vertices.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AdditionalCanvasShaderChannels.Tangent">
- <summary>
- <para>Include the Tangent on the mesh vertices.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AdditionalCanvasShaderChannels.TexCoord1">
- <summary>
- <para>Include UV1 on the mesh vertices.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AdditionalCanvasShaderChannels.TexCoord2">
- <summary>
- <para>Include UV2 on the mesh vertices.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.AdditionalCanvasShaderChannels.TexCoord3">
- <summary>
- <para>Include UV3 on the mesh vertices.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Canvas">
- <summary>
- <para>Element that can be used for screen rendering.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Canvas.additionalShaderChannels">
- <summary>
- <para>Get or set the mask of additional shader channels to be used when creating the Canvas mesh.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Canvas.cachedSortingLayerValue">
- <summary>
- <para>Cached calculated value based upon SortingLayerID.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Canvas.isRootCanvas">
- <summary>
- <para>Is this the root Canvas?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Canvas.normalizedSortingGridSize">
- <summary>
- <para>The normalized grid size that the canvas will split the renderable area into.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Canvas.overridePixelPerfect">
- <summary>
- <para>Allows for nested canvases to override pixelPerfect settings inherited from parent canvases.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Canvas.overrideSorting">
- <summary>
- <para>Override the sorting of canvas.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Canvas.pixelPerfect">
- <summary>
- <para>Force elements in the canvas to be aligned with pixels. Only applies with renderMode is Screen Space.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Canvas.pixelRect">
- <summary>
- <para>Get the render rect for the Canvas.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Canvas.planeDistance">
- <summary>
- <para>How far away from the camera is the Canvas generated.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Canvas.referencePixelsPerUnit">
- <summary>
- <para>The number of pixels per unit that is considered the default.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Canvas.renderMode">
- <summary>
- <para>Is the Canvas in World or Overlay mode?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Canvas.renderOrder">
- <summary>
- <para>The render order in which the canvas is being emitted to the scene.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Canvas.rootCanvas">
- <summary>
- <para>Returns the Canvas closest to root, by checking through each parent and returning the last canvas found. If no other canvas is found then the canvas will return itself.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Canvas.scaleFactor">
- <summary>
- <para>Used to scale the entire canvas, while still making it fit the screen. Only applies with renderMode is Screen Space.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Canvas.sortingGridNormalizedSize">
- <summary>
- <para>The normalized grid size that the canvas will split the renderable area into.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Canvas.sortingLayerID">
- <summary>
- <para>Unique ID of the Canvas' sorting layer.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Canvas.sortingLayerName">
- <summary>
- <para>Name of the Canvas' sorting layer.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Canvas.sortingOrder">
- <summary>
- <para>Canvas' order within a sorting layer.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Canvas.targetDisplay">
- <summary>
- <para>For Overlay mode, display index on which the UI canvas will appear.</para>
- </summary>
- </member>
- <member name="?:UnityEngine.Canvas.willRenderCanvases(UnityEngine.Canvas/WillRenderCanvases)">
- <summary>
- <para>Event that is called just before Canvas rendering happens.</para>
- </summary>
- <param name="value"></param>
- </member>
- <member name="P:UnityEngine.Canvas.worldCamera">
- <summary>
- <para>Camera used for sizing the Canvas when in Screen Space - Camera. Also used as the Camera that events will be sent through for a World Space [[Canvas].</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Canvas.ForceUpdateCanvases">
- <summary>
- <para>Force all canvases to update their content.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Canvas.GetDefaultCanvasMaterial">
- <summary>
- <para>Returns the default material that can be used for rendering normal elements on the Canvas.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Canvas.GetDefaultCanvasTextMaterial">
- <summary>
- <para>Returns the default material that can be used for rendering text elements on the Canvas.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Canvas.GetETC1SupportedCanvasMaterial">
- <summary>
- <para>Gets or generates the ETC1 Material.</para>
- </summary>
- <returns>
- <para>The generated ETC1 Material from the Canvas.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.CanvasGroup">
- <summary>
- <para>A Canvas placable element that can be used to modify children Alpha, Raycasting, Enabled state.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CanvasGroup.alpha">
- <summary>
- <para>Set the alpha of the group.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CanvasGroup.blocksRaycasts">
- <summary>
- <para>Does this group block raycasting (allow collision).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CanvasGroup.ignoreParentGroups">
- <summary>
- <para>Should the group ignore parent groups?</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CanvasGroup.interactable">
- <summary>
- <para>Is the group interactable (are the elements beneath the group enabled).</para>
- </summary>
- </member>
- <member name="M:UnityEngine.CanvasGroup.IsRaycastLocationValid(UnityEngine.Vector2,UnityEngine.Camera)">
- <summary>
- <para>Returns true if the Group allows raycasts.</para>
- </summary>
- <param name="sp"></param>
- <param name="eventCamera"></param>
- </member>
- <member name="T:UnityEngine.CanvasRenderer">
- <summary>
- <para>A component that will render to the screen after all normal rendering has completed when attached to a Canvas. Designed for GUI application.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CanvasRenderer.absoluteDepth">
- <summary>
- <para>Depth of the renderer relative to the root canvas.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CanvasRenderer.cull">
- <summary>
- <para>Indicates whether geometry emitted by this renderer is ignored.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CanvasRenderer.cullTransparentMesh">
- <summary>
- <para>Indicates whether geometry emitted by this renderer can be ignored when the vertex color alpha is close to zero for every vertex of the mesh.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CanvasRenderer.hasMoved">
- <summary>
- <para>True if any change has occured that would invalidate the positions of generated geometry.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CanvasRenderer.hasPopInstruction">
- <summary>
- <para>Enable 'render stack' pop draw call.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CanvasRenderer.hasRectClipping">
- <summary>
- <para>True if rect clipping has been enabled on this renderer.
-See Also: CanvasRenderer.EnableRectClipping, CanvasRenderer.DisableRectClipping.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CanvasRenderer.isMask">
- <summary>
- <para>Is the UIRenderer a mask component.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CanvasRenderer.materialCount">
- <summary>
- <para>The number of materials usable by this renderer.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CanvasRenderer.popMaterialCount">
- <summary>
- <para>The number of materials usable by this renderer. Used internally for masking.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.CanvasRenderer.relativeDepth">
- <summary>
- <para>Depth of the renderer realative to the parent canvas.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.CanvasRenderer.AddUIVertexStream(System.Collections.Generic.List`1&lt;UnityEngine.UIVertex&gt;,System.Collections.Generic.List`1&lt;UnityEngine.Vector3&gt;,System.Collections.Generic.List`1&lt;UnityEngine.Color32&gt;,System.Collections.Generic.List`1&lt;UnityEngine.Vector2&gt;,System.Collections.Generic.List`1&lt;UnityEngine.Vector2&gt;,System.Collections.Generic.List`1&lt;UnityEngine.Vector3&gt;,System.Collections.Generic.List`1&lt;UnityEngine.Vector4&gt;)">
- <summary>
- <para>Take the Vertex steam and split it corrisponding arrays (positions, colors, uv0s, uv1s, normals and tangents).</para>
- </summary>
- <param name="verts">The UIVertex list to split.</param>
- <param name="positions">The destination list for the verts positions.</param>
- <param name="colors">The destination list for the verts colors.</param>
- <param name="uv0S">The destination list for the verts uv0s.</param>
- <param name="uv1S">The destination list for the verts uv1s.</param>
- <param name="normals">The destination list for the verts normals.</param>
- <param name="tangents">The destination list for the verts tangents.</param>
- </member>
- <member name="M:UnityEngine.CanvasRenderer.Clear">
- <summary>
- <para>Remove all cached vertices.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.CanvasRenderer.CreateUIVertexStream(System.Collections.Generic.List`1&lt;UnityEngine.UIVertex&gt;,System.Collections.Generic.List`1&lt;UnityEngine.Vector3&gt;,System.Collections.Generic.List`1&lt;UnityEngine.Color32&gt;,System.Collections.Generic.List`1&lt;UnityEngine.Vector2&gt;,System.Collections.Generic.List`1&lt;UnityEngine.Vector2&gt;,System.Collections.Generic.List`1&lt;UnityEngine.Vector3&gt;,System.Collections.Generic.List`1&lt;UnityEngine.Vector4&gt;,System.Collections.Generic.List`1&lt;System.Int32&gt;)">
- <summary>
- <para>Convert a set of vertex components into a stream of UIVertex.</para>
- </summary>
- <param name="verts"></param>
- <param name="positions"></param>
- <param name="colors"></param>
- <param name="uv0S"></param>
- <param name="uv1S"></param>
- <param name="normals"></param>
- <param name="tangents"></param>
- <param name="indices"></param>
- </member>
- <member name="M:UnityEngine.CanvasRenderer.DisableRectClipping">
- <summary>
- <para>Disables rectangle clipping for this CanvasRenderer.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.CanvasRenderer.EnableRectClipping(UnityEngine.Rect)">
- <summary>
- <para>Enables rect clipping on the CanvasRendered. Geometry outside of the specified rect will be clipped (not rendered).</para>
- </summary>
- <param name="rect"></param>
- </member>
- <member name="M:UnityEngine.CanvasRenderer.GetAlpha">
- <summary>
- <para>Get the current alpha of the renderer.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.CanvasRenderer.GetColor">
- <summary>
- <para>Get the current color of the renderer.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.CanvasRenderer.GetMaterial(System.Int32)">
- <summary>
- <para>Gets the current Material assigned to the CanvasRenderer.</para>
- </summary>
- <param name="index">The material index to retrieve (0 if this parameter is omitted).</param>
- <returns>
- <para>Result.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.CanvasRenderer.GetMaterial">
- <summary>
- <para>Gets the current Material assigned to the CanvasRenderer.</para>
- </summary>
- <param name="index">The material index to retrieve (0 if this parameter is omitted).</param>
- <returns>
- <para>Result.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.CanvasRenderer.GetPopMaterial(System.Int32)">
- <summary>
- <para>Gets the current Material assigned to the CanvasRenderer. Used internally for masking.</para>
- </summary>
- <param name="index"></param>
- </member>
- <member name="M:UnityEngine.CanvasRenderer.SetAlpha(System.Single)">
- <summary>
- <para>Set the alpha of the renderer. Will be multiplied with the UIVertex alpha and the Canvas alpha.</para>
- </summary>
- <param name="alpha">Alpha.</param>
- </member>
- <member name="M:UnityEngine.CanvasRenderer.SetAlphaTexture(UnityEngine.Texture)">
- <summary>
- <para>The Alpha Texture that will be passed to the Shader under the _AlphaTex property.</para>
- </summary>
- <param name="texture">The Texture to be passed.</param>
- </member>
- <member name="M:UnityEngine.CanvasRenderer.SetColor(UnityEngine.Color)">
- <summary>
- <para>Set the color of the renderer. Will be multiplied with the UIVertex color and the Canvas color.</para>
- </summary>
- <param name="color">Renderer multiply color.</param>
- </member>
- <member name="M:UnityEngine.CanvasRenderer.SetMaterial(UnityEngine.Material,System.Int32)">
- <summary>
- <para>Set the material for the canvas renderer. If a texture is specified then it will be used as the 'MainTex' instead of the material's 'MainTex'.
-See Also: CanvasRenderer.SetMaterialCount, CanvasRenderer.SetTexture.</para>
- </summary>
- <param name="material">Material for rendering.</param>
- <param name="texture">Material texture overide.</param>
- <param name="index">Material index.</param>
- </member>
- <member name="M:UnityEngine.CanvasRenderer.SetMaterial(UnityEngine.Material,UnityEngine.Texture)">
- <summary>
- <para>Set the material for the canvas renderer. If a texture is specified then it will be used as the 'MainTex' instead of the material's 'MainTex'.
-See Also: CanvasRenderer.SetMaterialCount, CanvasRenderer.SetTexture.</para>
- </summary>
- <param name="material">Material for rendering.</param>
- <param name="texture">Material texture overide.</param>
- <param name="index">Material index.</param>
- </member>
- <member name="M:UnityEngine.CanvasRenderer.SetMesh(UnityEngine.Mesh)">
- <summary>
- <para>Sets the Mesh used by this renderer.</para>
- </summary>
- <param name="mesh"></param>
- </member>
- <member name="M:UnityEngine.CanvasRenderer.SetPopMaterial(UnityEngine.Material,System.Int32)">
- <summary>
- <para>Set the material for the canvas renderer. Used internally for masking.</para>
- </summary>
- <param name="material"></param>
- <param name="index"></param>
- </member>
- <member name="M:UnityEngine.CanvasRenderer.SetTexture(UnityEngine.Texture)">
- <summary>
- <para>Sets the texture used by this renderer's material.</para>
- </summary>
- <param name="texture"></param>
- </member>
- <member name="M:UnityEngine.CanvasRenderer.SetVertices(System.Collections.Generic.List`1&lt;UnityEngine.UIVertex&gt;)">
- <summary>
- <para>Set the vertices for the UIRenderer.</para>
- </summary>
- <param name="vertices">Array of vertices to set.</param>
- <param name="size">Number of vertices to set.</param>
- </member>
- <member name="M:UnityEngine.CanvasRenderer.SetVertices(UnityEngine.UIVertex[],System.Int32)">
- <summary>
- <para>Set the vertices for the UIRenderer.</para>
- </summary>
- <param name="vertices">Array of vertices to set.</param>
- <param name="size">Number of vertices to set.</param>
- </member>
- <member name="M:UnityEngine.CanvasRenderer.SplitUIVertexStreams(System.Collections.Generic.List`1&lt;UnityEngine.UIVertex&gt;,System.Collections.Generic.List`1&lt;UnityEngine.Vector3&gt;,System.Collections.Generic.List`1&lt;UnityEngine.Color32&gt;,System.Collections.Generic.List`1&lt;UnityEngine.Vector2&gt;,System.Collections.Generic.List`1&lt;UnityEngine.Vector2&gt;,System.Collections.Generic.List`1&lt;UnityEngine.Vector3&gt;,System.Collections.Generic.List`1&lt;UnityEngine.Vector4&gt;,System.Collections.Generic.List`1&lt;System.Int32&gt;)">
- <summary>
- <para>Given a list of UIVertex, split the stream into it's component types.</para>
- </summary>
- <param name="verts"></param>
- <param name="positions"></param>
- <param name="colors"></param>
- <param name="uv0S"></param>
- <param name="uv1S"></param>
- <param name="normals"></param>
- <param name="tangents"></param>
- <param name="indices"></param>
- </member>
- <member name="?:UnityEngine.ICanvasRaycastFilter">
- <summary>
- <para>This element can filter raycasts. If the top level element is hit it can further 'check' if the location is valid.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.ICanvasRaycastFilter.IsRaycastLocationValid(UnityEngine.Vector2,UnityEngine.Camera)">
- <summary>
- <para>Given a point and a camera is the raycast valid.</para>
- </summary>
- <param name="sp">Screen position.</param>
- <param name="eventCamera">Raycast camera.</param>
- <returns>
- <para>Valid.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.RectTransformUtility">
- <summary>
- <para>Utility class containing helper methods for working with RectTransform.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.RectTransformUtility.FlipLayoutAxes(UnityEngine.RectTransform,System.Boolean,System.Boolean)">
- <summary>
- <para>Flips the horizontal and vertical axes of the RectTransform size and alignment, and optionally its children as well.</para>
- </summary>
- <param name="rect">The RectTransform to flip.</param>
- <param name="keepPositioning">Flips around the pivot if true. Flips within the parent rect if false.</param>
- <param name="recursive">Flip the children as well?</param>
- </member>
- <member name="M:UnityEngine.RectTransformUtility.FlipLayoutOnAxis(UnityEngine.RectTransform,System.Int32,System.Boolean,System.Boolean)">
- <summary>
- <para>Flips the alignment of the RectTransform along the horizontal or vertical axis, and optionally its children as well.</para>
- </summary>
- <param name="rect">The RectTransform to flip.</param>
- <param name="keepPositioning">Flips around the pivot if true. Flips within the parent rect if false.</param>
- <param name="recursive">Flip the children as well?</param>
- <param name="axis">The axis to flip along. 0 is horizontal and 1 is vertical.</param>
- </member>
- <member name="M:UnityEngine.RectTransformUtility.PixelAdjustPoint(UnityEngine.Vector2,UnityEngine.Transform,UnityEngine.Canvas)">
- <summary>
- <para>Convert a given point in screen space into a pixel correct point.</para>
- </summary>
- <param name="point"></param>
- <param name="elementTransform"></param>
- <param name="canvas"></param>
- <returns>
- <para>Pixel adjusted point.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.RectTransformUtility.PixelAdjustRect(UnityEngine.RectTransform,UnityEngine.Canvas)">
- <summary>
- <para>Given a rect transform, return the corner points in pixel accurate coordinates.</para>
- </summary>
- <param name="rectTransform"></param>
- <param name="canvas"></param>
- <returns>
- <para>Pixel adjusted rect.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.RectTransformUtility.RectangleContainsScreenPoint(UnityEngine.RectTransform,UnityEngine.Vector2,UnityEngine.Camera)">
- <summary>
- <para>Does the RectTransform contain the screen point as seen from the given camera?</para>
- </summary>
- <param name="rect">The RectTransform to test with.</param>
- <param name="screenPoint">The screen point to test.</param>
- <param name="cam">The camera from which the test is performed from. (Optional)</param>
- <returns>
- <para>True if the point is inside the rectangle.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.RectTransformUtility.ScreenPointToLocalPointInRectangle(UnityEngine.RectTransform,UnityEngine.Vector2,UnityEngine.Camera,UnityEngine.Vector2&amp;)">
- <summary>
- <para>Transform a screen space point to a position in the local space of a RectTransform that is on the plane of its rectangle.</para>
- </summary>
- <param name="rect">The RectTransform to find a point inside.</param>
- <param name="cam">The camera associated with the screen space position.</param>
- <param name="screenPoint">Screen space position.</param>
- <param name="localPoint">Point in local space of the rect transform.</param>
- <returns>
- <para>Returns true if the plane of the RectTransform is hit, regardless of whether the point is inside the rectangle.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.RectTransformUtility.ScreenPointToWorldPointInRectangle(UnityEngine.RectTransform,UnityEngine.Vector2,UnityEngine.Camera,UnityEngine.Vector3&amp;)">
- <summary>
- <para>Transform a screen space point to a position in world space that is on the plane of the given RectTransform.</para>
- </summary>
- <param name="rect">The RectTransform to find a point inside.</param>
- <param name="cam">The camera associated with the screen space position.</param>
- <param name="screenPoint">Screen space position.</param>
- <param name="worldPoint">Point in world space.</param>
- <returns>
- <para>Returns true if the plane of the RectTransform is hit, regardless of whether the point is inside the rectangle.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.RenderMode">
- <summary>
- <para>RenderMode for the Canvas.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RenderMode.ScreenSpaceCamera">
- <summary>
- <para>Render using the Camera configured on the Canvas.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RenderMode.ScreenSpaceOverlay">
- <summary>
- <para>Render at the end of the scene using a 2D Canvas.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.RenderMode.WorldSpace">
- <summary>
- <para>Render using any Camera in the scene that can render the layer.</para>
- </summary>
- </member>
- <member name="A:UnityEngine.UIModule">
- <summary>
- <para>The UI module implements basic components required for Unity's UI system</para>
- </summary>
- </member>
- </members>
-</doc>
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.UNETModule.dll b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.UNETModule.dll
deleted file mode 100644
index 4b91d2f..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.UNETModule.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.UNETModule.xml b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.UNETModule.xml
deleted file mode 100644
index 40ba6be..0000000
--- a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.UNETModule.xml
+++ /dev/null
@@ -1,1736 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
-<doc>
- <members>
- <assembly>
- <name>UnityEngine.UNETModule</name>
- </assembly>
- <member name="T:UnityEngine.Networking.ChannelQOS">
- <summary>
- <para>Defines parameters of channels.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.ChannelQOS.BelongsToSharedOrderChannel">
- <summary>
- <para>Returns true if the channel belongs to a shared group.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Networking.ChannelQOS.#ctor(UnityEngine.Networking.QosType)">
- <summary>
- <para>UnderlyingModel.MemDoc.MemDocModel.</para>
- </summary>
- <param name="value">Requested type of quality of service (default Unreliable).</param>
- <param name="channel">Copy constructor.</param>
- </member>
- <member name="M:UnityEngine.Networking.ChannelQOS.#ctor">
- <summary>
- <para>UnderlyingModel.MemDoc.MemDocModel.</para>
- </summary>
- <param name="value">Requested type of quality of service (default Unreliable).</param>
- <param name="channel">Copy constructor.</param>
- </member>
- <member name="M:UnityEngine.Networking.ChannelQOS.#ctor(UnityEngine.Networking.ChannelQOS)">
- <summary>
- <para>UnderlyingModel.MemDoc.MemDocModel.</para>
- </summary>
- <param name="value">Requested type of quality of service (default Unreliable).</param>
- <param name="channel">Copy constructor.</param>
- </member>
- <member name="P:UnityEngine.Networking.ChannelQOS.QOS">
- <summary>
- <para>Channel quality of service.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Networking.ConnectionAcksType">
- <summary>
- <para>Defines size of the buffer holding reliable messages, before they will be acknowledged.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Networking.ConnectionAcksType.Acks128">
- <summary>
- <para>Ack buffer can hold 128 messages.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Networking.ConnectionAcksType.Acks32">
- <summary>
- <para>Ack buffer can hold 32 messages.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Networking.ConnectionAcksType.Acks64">
- <summary>
- <para>Ack buffer can hold 64 messages.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Networking.ConnectionAcksType.Acks96">
- <summary>
- <para>Ack buffer can hold 96 messages.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Networking.ConnectionConfig">
- <summary>
- <para>This class defines parameters of connection between two peers, this definition includes various timeouts and sizes as well as channel configuration.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.ConnectionConfig.AckDelay">
- <summary>
- <para>Defines the duration in milliseconds that the receiver waits for before it sends an acknowledgement back without waiting for any data payload. Default value = 33.
-
-Network clients that send data to a server may do so using many different quality of service (QOS) modes, some of which (reliable modes) expect the server to send back acknowledgement of receipt of data sent.
-
-Servers must periodically acknowledge data packets received over channels with reliable QOS modes by sending packets containing acknowledgement data (also known as "acks") back to the client. If the server were to send an acknowledgement immediately after receiving each packet from the client there would be significant overhead (the acknowledgement is a 32 or 64 bit integer, which is very small compared to the whole size of the packet which also contains the IP and the UDP header). AckDelay allows the server some time to accumulate a list of received reliable data packets to acknowledge, and decreases traffic overhead by combining many acknowledgements into a single packet.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.ConnectionConfig.AcksType">
- <summary>
- <para>Determines the size of the buffer used to store reliable messages that are waiting for acknowledgement. It can be set to Acks32, Acks64, Acks96, or Acks128. Depends of this setting buffer can hold 32, 64, 96, or 128 messages. Default value = Ack32.
-
-Messages sent on reliable quality of service channels are stored in a special buffer while they wait for acknowledgement from the peer. This buffer can be either 32, 64, 96 or 128 positions long. It is recommended to begin with this value set to Ack32, which defines a buffer up to 32 messages in size. If you receive NoResources errors often when you send reliable messages, change this value to the next possible size.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Networking.ConnectionConfig.AddChannel(UnityEngine.Networking.QosType)">
- <summary>
- <para>Adds a new channel to the configuration and returns the unique id of that channel.
-
-Channels are logical delimiters of traffic between peers. Every time you send data to a peer, you should use two ids: connection id and channel id. Channels are not only logically separate traffic but could each be configured with a different quality of service (QOS). In the example below, a configuration is created containing two channels with Unreliable and Reliable QOS types. This configuration is then used for sending data.</para>
- </summary>
- <param name="value">Add new channel to configuration.</param>
- <returns>
- <para>Channel id, user can use this id to send message via this channel.</para>
- </returns>
- </member>
- <member name="P:UnityEngine.Networking.ConnectionConfig.AllCostTimeout">
- <summary>
- <para>Defines the timeout in milliseconds after which messages sent via the AllCost channel will be re-sent without waiting for acknowledgement. Default value = 20 ms.
-
-AllCost delivery quality of service (QOS) is a special QOS for delivering game-critical information, such as when the game starts, or when bullets are shot.
-
-Due to packets dropping, sometimes reliable messages cannot be delivered and need to be re-sent. Reliable messages will re-sent after RTT+Delta time, (RTT is round trip time) where RTT is a dynamic value and can reach couple of hundred milliseconds. For the AllCost delivery channel this timeout can be user-defined to force game critical information to be re-sent.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.ConnectionConfig.BandwidthPeakFactor">
- <summary>
- <para>Defines, when multiplied internally by InitialBandwidth, the maximum bandwidth that can be used under burst conditions.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.ConnectionConfig.ChannelCount">
- <summary>
- <para>(Read Only) The number of channels in the current configuration.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.ConnectionConfig.Channels">
- <summary>
- <para>The list of channels belonging to the current configuration.
-
-Note: any ConnectionConfig passed as a parameter to a function in Unity Multiplayer is deep copied (that is, an entirely new copy is made, with no references to the original).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.ConnectionConfig.ConnectTimeout">
- <summary>
- <para>Timeout in ms which library will wait before it will send another connection request.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Networking.ConnectionConfig.#ctor">
- <summary>
- <para>Will create default connection config or will copy them from another.</para>
- </summary>
- <param name="config">Connection config.</param>
- </member>
- <member name="M:UnityEngine.Networking.ConnectionConfig.#ctor(UnityEngine.Networking.ConnectionConfig)">
- <summary>
- <para>Will create default connection config or will copy them from another.</para>
- </summary>
- <param name="config">Connection config.</param>
- </member>
- <member name="P:UnityEngine.Networking.ConnectionConfig.DisconnectTimeout">
- <summary>
- <para>Defines the timeout in milliseconds before a connection is considered to have been disconnected. Default value = 2000.
-
-Unity Multiplayer defines conditions under which a connection is considered as disconnected. Disconnection can happen for the following reasons:
-
-(1) A disconnection request was received.
-
-(2) The connection has not received any traffic at all for a time longer than DisconnectTimeout (Note that live connections receive regular keep-alive packets, so in this case "no traffic" means not only no user traffic but also absence of any keep-alive traffic as well).
-
-(3) Flow control determines that the time between sending packets is longer than DisconnectTimeout. Keep-alive packets are regularly delivered from peers and contain statistical information. This information includes values of packet loss due to network and peer overflow conditions. Setting NetworkDropThreshold and OverflowDropThreshold defines thresholds for flow control which can decrease packet frequency. When the time before sending the next packet is longer than DisconnectTimeout, the connection will be considered as disconnected and a disconnect event is received.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.ConnectionConfig.FragmentSize">
- <summary>
- <para>Defines the fragment size for fragmented messages (for QOS: ReliableFragmented and UnreliableFragmented). Default value = 500.
-
-Under fragmented quality of service modes, the original message is split into fragments (up to 64) of up to FragmentSize bytes each. The fragment size depends on the frequency and size of reliable messages sent. Each reliable message potentially could be re-sent, so you need to choose a fragment size less than the remaining free space in a UDP packet after retransmitted reliable messages are added to the packet. For example, if Networking.ConnectionConfig.PacketSize is 1440 bytes, and a reliable message's average size is 200 bytes, it would be wise to set this parameter to 900 – 1000 bytes.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Networking.ConnectionConfig.GetChannel(System.Byte)">
- <summary>
- <para>Return the QoS set for the given channel or throw an out of range exception.</para>
- </summary>
- <param name="idx">Index in array.</param>
- <returns>
- <para>Channel QoS.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.ConnectionConfig.GetSharedOrderChannels(System.Byte)">
- <summary>
- <para>Return IList&lt;byte&gt; of channel IDs which belong to the group.</para>
- </summary>
- <param name="idx">Group id.</param>
- <returns>
- <para>List of channel IDs belonging to the group.</para>
- </returns>
- </member>
- <member name="P:UnityEngine.Networking.ConnectionConfig.InitialBandwidth">
- <summary>
- <para>Gets or sets the bandwidth in bytes per second that can be used by Unity Multiplayer. No traffic over this limit is allowed. Unity Multiplayer may internally reduce the bandwidth it uses due to flow control. The default value is 1.5MB/sec (1,536,000 bytes per second). The default value is intentionally a large number to allow all traffic to pass without delay.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Networking.ConnectionConfig.MakeChannelsSharedOrder(System.Collections.Generic.List`1&lt;System.Byte&gt;)">
- <summary>
- <para>Allows you to combine multiple channels into a single group, so those channels share a common receiving order.</para>
- </summary>
- <param name="channelIndices">The list of channel indices which should be grouped together. The list can include both reliable and unreliable channels.</param>
- </member>
- <member name="P:UnityEngine.Networking.ConnectionConfig.MaxCombinedReliableMessageCount">
- <summary>
- <para>Defines the maximum number of small reliable messages that can be included in one combined message. Default value = 10.
-
-Since each message sent to a server contains IP information and a UDP header, duplicating this information for every message sent can be inefficient in the case where there are many small messages being sent frequently. Many small reliable messages can be combined into one longer reliable message, saving space in the waiting buffer. Unity Multiplayer will automatically combine up to MaxCombinedReliableMessageCount small messages into one message. To qualify as a small message, the data payload of the message should not be greater than MaxCombinedReliableMessageSize.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.ConnectionConfig.MaxCombinedReliableMessageSize">
- <summary>
- <para>Defines the maximum size in bytes of a reliable message which is considered small enough to include in a combined message. Default value = 100.
-
-Since each message sent to a server contains IP information and a UDP header, duplicating this information for every message sent can be inefficient in the case where there are many small messages being sent frequently. Many small reliable messages can be combined into one longer reliable message, saving space in the waiting buffer. Unity Multiplayer will automatically combine up to MaxCombinedReliableMessageCount small messages into one message. To qualify as a small message, the data payload of the message should not be greater than MaxCombinedReliableMessageSize.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.ConnectionConfig.MaxConnectionAttempt">
- <summary>
- <para>Defines the maximum number of times Unity Multiplayer will attempt to send a connection request without receiving a response before it reports that it cannot establish a connection. Default value = 10.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.ConnectionConfig.MaxSentMessageQueueSize">
- <summary>
- <para>Defines maximum number of messages that can be held in the queue for sending. Default value = 128.
-
-This buffer serves to smooth spikes in traffic and decreases network jitter. If the queue is full, a NoResources error will result from any calls to Send(). Setting this value greater than around 300 is likely to cause significant delaying of message delivering and can make game unplayable.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.ConnectionConfig.MinUpdateTimeout">
- <summary>
- <para>Defines minimum time in milliseconds between sending packets. This duration may be automatically increased if required by flow control. Default value = 10.
-
-When Send() is called, Unity Multiplayer won’t send the message immediately. Instead, once every SendTimeout milliseconds each connection is checked to see if it has something to send. While initial and minimal send timeouts can be set, these may be increased internally due to network conditions or buffer overflows.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.ConnectionConfig.NetworkDropThreshold">
- <summary>
- <para>Defines the percentage (from 0 to 100) of packets that need to be dropped due to network conditions before the SendUpdate timeout is automatically increased (and send rate is automatically decreased). Default value = 5.
-
-To avoid receiver overflow, Unity Multiplayer supports flow control. Each ping packet sent between connected peers contains two values:
-
-(1) Packets lost due to network conditions.
-
-(2) Packets lost because the receiver does not have free space in its incoming buffers.
-
-Like OverflowDropThreshold, both values are reported in percent. Use NetworkDropThreshold and OverflowDropThreshold to set thresholds for these values. If a value reported in the ping packet exceeds the corresponding threshold, Unity Multiplayer increases the sending timeout for packets up to a maximum value of DisconnectTimeout.
-
-Note: wireless networks usually exhibit 5% or greater packet loss. For wireless networks it is advisable to use a NetworkDropThreshold of 40-50%.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.ConnectionConfig.OverflowDropThreshold">
- <summary>
- <para>Defines the percentage (from 0 to 100) of packets that need to be dropped due to lack of space in internal buffers before the SendUpdate timeout is automatically increased (and send rate is automatically decreased). Default value = 5.
-
-To avoid receiver overflow, Unity Multiplayer supports flow control. Each ping packet sent between connected peers contains two values:
-
-(1) Packets lost due to network conditions.
-
-(2) Packets lost because the receiver does not have free space in its incoming buffers.
-
-Like NetworkDropThreshold, both values are reported in percent. Use NetworkDropThreshold and OverflowDropThreshold to set thresholds for these values. If a value reported in the ping packet exceeds the corresponding threshold, Unity Multiplayer increases the sending timeout for packets up to a maximum value of DisconnectTimeout.
-
-Note: wireless networks usually exhibit 5% or greater packet loss. For wireless networks it is advisable to use a NetworkDropThreshold of 40-50%.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.ConnectionConfig.PacketSize">
- <summary>
- <para>Defines maximum packet size (in bytes) (including payload and all header). Packet can contain multiple messages inside. Default value = 1500.
-
-Note that this default value is suitable for local testing only. Usually you should change this value; a recommended setting for PC or mobile is 1470. For games consoles this value should probably be less than ~1100. Wrong size definition can cause packet dropping.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.ConnectionConfig.PingTimeout">
- <summary>
- <para>Defines the duration in milliseconds between keep-alive packets, also known as pings. Default value = 500.
-
-The ping frequency should be long enough to accumulate good statistics and short enough to compare with DisconnectTimeout. A good guideline is to have more than 3 pings per disconnect timeout, and more than 5 messages per ping. For example, with a DisconnectTimeout of 2000ms, a PingTimeout of 500ms works well.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.ConnectionConfig.ResendTimeout">
- <summary>
- <para>Defines the maximum wait time in milliseconds before the "not acknowledged" message is re-sent. Default value = 1200.
-
-It does not make a lot of sense to wait for acknowledgement forever. This parameter sets an upper time limit at which point reliable messages are re-sent.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.ConnectionConfig.SendDelay">
- <summary>
- <para>Gets or sets the delay in milliseconds after a call to Send() before packets are sent. During this time, new messages may be combined in queued packets. Default value: 10ms.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.ConnectionConfig.SharedOrderChannelCount">
- <summary>
- <para>(Read Only) The number of shared order groups in current configuration.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.ConnectionConfig.SSLCAFilePath">
- <summary>
- <para>Defines the path to the file containing the certification authority (CA) certificate for WebSocket via SSL communication.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.ConnectionConfig.SSLCertFilePath">
- <summary>
- <para>Defines path to SSL certificate file, for WebSocket via SSL communication.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.ConnectionConfig.SSLPrivateKeyFilePath">
- <summary>
- <para>Defines the path to the file containing the private key for WebSocket via SSL communication.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.ConnectionConfig.UdpSocketReceiveBufferMaxSize">
- <summary>
- <para>Defines the size in bytes of the receiving buffer for UDP sockets. It is useful to set this parameter equal to the maximum size of a fragmented message. Default value is OS specific (usually 8kb).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.ConnectionConfig.UsePlatformSpecificProtocols">
- <summary>
- <para>When starting a server use protocols that make use of platform specific optimisations where appropriate rather than cross-platform protocols. (Sony consoles only).</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Networking.ConnectionConfig.Validate(UnityEngine.Networking.ConnectionConfig)">
- <summary>
- <para>Validate parameters of connection config. Will throw exceptions if parameters are incorrect.</para>
- </summary>
- <param name="config"></param>
- </member>
- <member name="P:UnityEngine.Networking.ConnectionConfig.WebSocketReceiveBufferMaxSize">
- <summary>
- <para>WebSocket only. Defines the buffer size in bytes for received frames on a WebSocket host. If this value is 0 (the default), a 4 kilobyte buffer is used. Any other value results in a buffer of that size, in bytes.
-
-WebSocket message fragments are called "frames". A WebSocket host has a buffer to store incoming message frames. Therefore this buffer should be set to the largest legal frame size supported. If an incoming frame exceeds the buffer size, no error is reported. However, the buffer will invoke the user callback in order to create space for the overflow.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Networking.ConnectionSimulatorConfig">
- <summary>
- <para>Create configuration for network simulator; You can use this class in editor and developer build only.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Networking.ConnectionSimulatorConfig.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Single)">
- <summary>
- <para>Will create object describing network simulation parameters.</para>
- </summary>
- <param name="outMinDelay">Minimal simulation delay for outgoing traffic in ms.</param>
- <param name="outAvgDelay">Average simulation delay for outgoing traffic in ms.</param>
- <param name="inMinDelay">Minimal simulation delay for incoming traffic in ms.</param>
- <param name="inAvgDelay">Average simulation delay for incoming traffic in ms.</param>
- <param name="packetLossPercentage">Probability of packet loss 0 &lt;= p &lt;= 1.</param>
- </member>
- <member name="M:UnityEngine.Networking.ConnectionSimulatorConfig.Dispose">
- <summary>
- <para>Destructor.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Networking.GlobalConfig">
- <summary>
- <para>Defines global paramters for network library.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.GlobalConfig.ConnectionReadyForSend">
- <summary>
- <para>Defines the callback delegate which you can use to get a notification when a connection is ready to send data.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Networking.GlobalConfig.#ctor">
- <summary>
- <para>Create new global config object.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.GlobalConfig.MaxHosts">
- <summary>
- <para>Defines how many hosts you can use. Default Value = 16. Max value = 128.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.GlobalConfig.MaxNetSimulatorTimeout">
- <summary>
- <para>Deprecated. Defines maximum delay for network simulator. See Also: MaxTimerTimeout.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.GlobalConfig.MaxPacketSize">
- <summary>
- <para>Defines maximum possible packet size in bytes for all network connections.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.GlobalConfig.MaxTimerTimeout">
- <summary>
- <para>Defines the maximum timeout in milliseconds for any configuration. The default value is 12 seconds (12000ms).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.GlobalConfig.MinNetSimulatorTimeout">
- <summary>
- <para>Deprecated. Defines the minimal timeout for network simulator. You cannot set up any delay less than this value. See Also: MinTimerTimeout.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.GlobalConfig.MinTimerTimeout">
- <summary>
- <para>Defines the minimum timeout in milliseconds recognised by the system. The default value is 1 ms.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.GlobalConfig.NetworkEventAvailable">
- <summary>
- <para>Defines the callback delegate which you can use to get a notification when the host (defined by hostID) has a network event. The callback is called for all event types except Networking.NetworkEventType.Nothing.
-
-See Also: Networking.NetworkEventType</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.GlobalConfig.ReactorMaximumReceivedMessages">
- <summary>
- <para>This property determines the initial size of the queue that holds messages received by Unity Multiplayer before they are processed.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.GlobalConfig.ReactorMaximumSentMessages">
- <summary>
- <para>Defines the initial size of the send queue. Messages are placed in this queue ready to be sent in packets to their destination.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.GlobalConfig.ReactorModel">
- <summary>
- <para>Defines reactor model for the network library.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.GlobalConfig.ThreadAwakeTimeout">
- <summary>
- <para>Defines (1) for select reactor, minimum time period, when system will check if there are any messages for send (2) for fixrate reactor, minimum interval of time, when system will check for sending and receiving messages.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.GlobalConfig.ThreadPoolSize">
- <summary>
- <para>Defines how many worker threads are available to handle incoming and outgoing messages.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Networking.HostTopology">
- <summary>
- <para>Class defines network topology for host (socket opened by Networking.NetworkTransport.AddHost function). This topology defines: (1) how many connection with default config will be supported and (2) what will be special connections (connections with config different from default).</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Networking.HostTopology.AddSpecialConnectionConfig(UnityEngine.Networking.ConnectionConfig)">
- <summary>
- <para>Add special connection to topology (for example if you need to keep connection to standalone chat server you will need to use this function). Returned id should be use as one of parameters (with ip and port) to establish connection to this server.</para>
- </summary>
- <param name="config">Connection config for special connection.</param>
- <returns>
- <para>Id of this connection. You should use this id when you call Networking.NetworkTransport.Connect.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.HostTopology.#ctor(UnityEngine.Networking.ConnectionConfig,System.Int32)">
- <summary>
- <para>Create topology.</para>
- </summary>
- <param name="defaultConfig">Default config.</param>
- <param name="maxDefaultConnections">Maximum default connections.</param>
- </member>
- <member name="P:UnityEngine.Networking.HostTopology.DefaultConfig">
- <summary>
- <para>Defines config for default connections in the topology.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Networking.HostTopology.GetSpecialConnectionConfig(System.Int32)">
- <summary>
- <para>Return reference to special connection config. Parameters of this config can be changed.</para>
- </summary>
- <param name="i">Config id.</param>
- <returns>
- <para>Connection config.</para>
- </returns>
- </member>
- <member name="P:UnityEngine.Networking.HostTopology.MaxDefaultConnections">
- <summary>
- <para>Defines how many connection with default config be permitted.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.HostTopology.ReceivedMessagePoolSize">
- <summary>
- <para>Defines the maximum number of messages that each host can hold in its pool of received messages. The default size is 128.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.HostTopology.SentMessagePoolSize">
- <summary>
- <para>Defines the maximum number of messages that each host can hold in its pool of messages waiting to be sent. The default size is 128.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.HostTopology.SpecialConnectionConfigs">
- <summary>
- <para>List of special connection configs.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.HostTopology.SpecialConnectionConfigsCount">
- <summary>
- <para>Returns count of special connection added to topology.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Networking.Match.MatchInfo">
- <summary>
- <para>Details about a UNET MatchMaker match.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.Match.MatchInfo.accessToken">
- <summary>
- <para>The binary access token this client uses to authenticate its session for future commands.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.Match.MatchInfo.address">
- <summary>
- <para>IP address of the host of the match,.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.Match.MatchInfo.domain">
- <summary>
- <para>The numeric domain for the match.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.Match.MatchInfo.networkId">
- <summary>
- <para>The unique ID of this match.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.Match.MatchInfo.nodeId">
- <summary>
- <para>NodeID for this member client in the match.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.Match.MatchInfo.port">
- <summary>
- <para>Port of the host of the match.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.Match.MatchInfo.usingRelay">
- <summary>
- <para>This flag indicates whether or not the match is using a Relay server.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Networking.Match.MatchInfoSnapshot">
- <summary>
- <para>A class describing the match information as a snapshot at the time the request was processed on the MatchMaker.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.Match.MatchInfoSnapshot.averageEloScore">
- <summary>
- <para>The average Elo score of the match.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.Match.MatchInfoSnapshot.currentSize">
- <summary>
- <para>The current number of players in the match.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.Match.MatchInfoSnapshot.directConnectInfos">
- <summary>
- <para>The collection of direct connect info classes describing direct connection information supplied to the MatchMaker.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.Match.MatchInfoSnapshot.hostNodeId">
- <summary>
- <para>The NodeID of the host for this match.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.Match.MatchInfoSnapshot.isPrivate">
- <summary>
- <para>Describes if the match is private. Private matches are unlisted in ListMatch results.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.Match.MatchInfoSnapshot.matchAttributes">
- <summary>
- <para>The collection of match attributes on this match.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.Match.MatchInfoSnapshot.maxSize">
- <summary>
- <para>The maximum number of players this match can grow to.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.Match.MatchInfoSnapshot.name">
- <summary>
- <para>The text name for this match.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.Match.MatchInfoSnapshot.networkId">
- <summary>
- <para>The network ID for this match.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Networking.Match.MatchInfoSnapshot.MatchInfoDirectConnectSnapshot">
- <summary>
- <para>A class describing one member of a match and what direct connect information other clients have supplied.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.Match.MatchInfoSnapshot.MatchInfoDirectConnectSnapshot.hostPriority">
- <summary>
- <para>The host priority for this direct connect info. Host priority describes the order in which this match member occurs in the list of clients attached to a match.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.Match.MatchInfoSnapshot.MatchInfoDirectConnectSnapshot.nodeId">
- <summary>
- <para>NodeID of the match member this info refers to.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.Match.MatchInfoSnapshot.MatchInfoDirectConnectSnapshot.privateAddress">
- <summary>
- <para>The private network address supplied for this direct connect info.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.Match.MatchInfoSnapshot.MatchInfoDirectConnectSnapshot.publicAddress">
- <summary>
- <para>The public network address supplied for this direct connect info.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Networking.Match.NetworkMatch">
- <summary>
- <para>A component for communicating with the Unity Multiplayer Matchmaking service.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.Match.NetworkMatch.baseUri">
- <summary>
- <para>The base URI of the MatchMaker that this NetworkMatch will communicate with.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Networking.Match.NetworkMatch.BasicResponseDelegate">
- <summary>
- <para>A delegate that can handle MatchMaker responses that return basic response types (generally only indicating success or failure and extended information if a failure did happen).</para>
- </summary>
- <param name="success">Indicates if the request succeeded.</param>
- <param name="extendedInfo">A text description of the failure if success is false.</param>
- </member>
- <member name="M:UnityEngine.Networking.Match.NetworkMatch.CreateMatch(System.String,System.UInt32,System.Boolean,System.String,System.String,System.String,System.Int32,System.Int32,UnityEngine.Networking.Match.NetworkMatch/DataResponseDelegate`1&lt;UnityEngine.Networking.Match.MatchInfo&gt;)">
- <summary>
- <para>Use this function to create a new match. The client which calls this function becomes the host of the match.</para>
- </summary>
- <param name="matchName">The text string describing the name for this match.</param>
- <param name="matchSize">When creating a match, the matchmaker will use either this value, or the maximum size you have configured online at https:multiplayer.unity3d.com, whichever is lower. This way you can specify different match sizes for a particular game, but still maintain an overall size limit in the online control panel.</param>
- <param name="matchAdvertise">A bool indicating if this match should be available in NetworkMatch.ListMatches results.</param>
- <param name="matchPassword">A text string indicating if this match is password protected. If it is, all clients trying to join this match must supply the correct match password.</param>
- <param name="publicClientAddress">The optional public client address. This value is stored on the matchmaker and given to clients listing matches. It is intended to be a network address for connecting to this client directly over the internet. This value will only be present if a publicly available address is known, and direct connection is supported by the matchmaker.</param>
- <param name="privateClientAddress">The optional private client address. This value is stored on the matchmaker and given to clients listing matches. It is intended to be a network address for connecting to this client directly on a local area network. This value will only be present if direct connection is supported by the matchmaker. This may be an empty string and it will not affect the ability to interface with matchmaker or use relay server.</param>
- <param name="eloScoreForMatch">The Elo score for the client hosting the match being created. If this number is set on all clients to indicate relative skill level, this number is used to return matches ordered by those that are most suitable for play given a listing player's skill level. This may be 0 on all clients, which would disable any Elo calculations in the MatchMaker.</param>
- <param name="requestDomain">The request domain for this request. Only requests in the same domain can interface with each other. For example if a NetworkMatch.CreateMatch is made with domain 1, only ListMatches that also specify domain 1 will find that match. Use this value to silo different (possibly incompatible) client versions.</param>
- <param name="callback">The callback to be called when this function completes. This will be called regardless of whether the function succeeds or fails.</param>
- <returns>
- <para>This function is asynchronous and will complete at some point in the future, when the coroutine has finished communicating with the service backend.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.Networking.Match.NetworkMatch.DataResponseDelegate_1">
- <summary>
- <para>Response delegate containing basic information plus a data member. This is used on a subset of MatchMaker callbacks that require data passed in along with the success/failure information of the call itself.</para>
- </summary>
- <param name="success">Indicates if the request succeeded.</param>
- <param name="extendedInfo">If success is false, this will contain a text string indicating the reason.</param>
- <param name="responseData">The generic passed in containing data required by the callback. This typically contains data returned from a call to the service backend.</param>
- </member>
- <member name="M:UnityEngine.Networking.Match.NetworkMatch.DestroyMatch(UnityEngine.Networking.Types.NetworkID,System.Int32,UnityEngine.Networking.Match.NetworkMatch/BasicResponseDelegate)">
- <summary>
- <para>This function is used to tell MatchMaker to destroy a match in progress, regardless of who is connected.</para>
- </summary>
- <param name="netId">The NetworkID of the match to terminate.</param>
- <param name="requestDomain">The request domain for this request. Only requests in the same domain can interface with each other. For example if a NetworkMatch.CreateMatch is made with domain 1, only ListMatches that also specify domain 1 will find that match. Use this value to silo different (possibly incompatible) client versions.</param>
- <param name="callback">The callback to be called when the request completes.</param>
- <returns>
- <para>This function is asynchronous and will complete at some point in the future, when the coroutine has finished communicating with the service backend.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.Match.NetworkMatch.DropConnection(UnityEngine.Networking.Types.NetworkID,UnityEngine.Networking.Types.NodeID,System.Int32,UnityEngine.Networking.Match.NetworkMatch/BasicResponseDelegate)">
- <summary>
- <para>A function to allow an individual client to be dropped from a match.</para>
- </summary>
- <param name="netId">The NetworkID of the match the client to drop belongs to.</param>
- <param name="dropNodeId">The NodeID of the client to drop inside the specified match.</param>
- <param name="requestDomain">The request domain for this request. Only requests in the same domain can interface with each other. For example if a NetworkMatch.CreateMatch is made with domain 1, only ListMatches that also specify domain 1 will find that match. Use this value to silo different (possibly incompatible) client versions.</param>
- <param name="callback">The callback to invoke when the request completes.</param>
- <returns>
- <para>This function is asynchronous and will complete at some point in the future, when the coroutine has finished communicating with the service backend.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.Match.NetworkMatch.JoinMatch(UnityEngine.Networking.Types.NetworkID,System.String,System.String,System.String,System.Int32,System.Int32,UnityEngine.Networking.Match.NetworkMatch/DataResponseDelegate`1&lt;UnityEngine.Networking.Match.MatchInfo&gt;)">
- <summary>
- <para>The function used to tell MatchMaker the current client wishes to join a specific match.</para>
- </summary>
- <param name="netId">The NetworkID of the match to join. This is found through calling NetworkMatch.ListMatches and picking a result from the returned list of matches.</param>
- <param name="matchPassword">The password of the match. Leave empty if there is no password for the match, and supply the text string password if the match was configured to have one of the NetworkMatch.CreateMatch request.</param>
- <param name="publicClientAddress">The optional public client address. This value will be stored on the matchmaker and given to other clients listing matches. You should send this value if you want your players to be able to connect directly with each other over the internet. Alternatively you can pass an empty string and it will not affect the ability to interface with matchmaker or use relay server.</param>
- <param name="privateClientAddress">The optional private client address. This value will be stored on the matchmaker and given to other clients listing matches. You should send this value if you want your players to be able to connect directly with each other over a Local Area Network. Alternatively you can pass an empty string and it will not affect the ability to interface with matchmaker or use relay server.</param>
- <param name="eloScoreForClient">The Elo score for the client joining the match being created. If this number is set on all clients to indicate relative skill level, this number is used to return matches ordered by those that are most suitable for play given a listing player's skill level. This may be 0 on all clients, which would disable any Elo calculations in the MatchMaker.</param>
- <param name="requestDomain">The request domain for this request. Only requests in the same domain can interface with each other. For example if a NetworkMatch.CreateMatch is made with domain 1, only ListMatches that also specify domain 1 will find that match. Use this value to silo different (possibly incompatible) client versions.</param>
- <param name="callback">The callback to be invoked when this call completes.</param>
- <returns>
- <para>This function is asynchronous and will complete at some point in the future, when the coroutine has finished communicating with the service backend.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.Match.NetworkMatch.ListMatches(System.Int32,System.Int32,System.String,System.Boolean,System.Int32,System.Int32,UnityEngine.Networking.Match.NetworkMatch/DataResponseDelegate`1&lt;System.Collections.Generic.List`1&lt;UnityEngine.Networking.Match.MatchInfoSnapshot&gt;&gt;)">
- <summary>
- <para>The function to list ongoing matches in the MatchMaker.</para>
- </summary>
- <param name="startPageNumber">The current page to list in the return results.</param>
- <param name="resultPageSize">The size of the page requested. This determines the maximum number of matches contained in the list of matches passed into the callback.</param>
- <param name="matchNameFilter">The text string name filter. This is a partial wildcard search against match names that are currently active, and can be thought of as matching equivalent to *&lt;matchNameFilter&gt;* where any result containing the entire string supplied here will be in the result set.</param>
- <param name="filterOutPrivateMatchesFromResults">Boolean that indicates if the response should contain matches that are private (meaning matches that are password protected).</param>
- <param name="eloScoreTarget">The Elo score target for the match list results to be grouped around. If used, this should be set to the Elo level of the client listing the matches so results will more closely match that player's skill level. If not used this can be set to 0 along with all other Elo refereces in funcitons like NetworkMatch.CreateMatch or NetworkMatch.JoinMatch.</param>
- <param name="requestDomain">The request domain for this request. Only requests in the same domain can interface with each other. For example if a NetworkMatch.CreateMatch is made with domain 1, only ListMatches that also specify domain 1 will find that match. Use this value to silo different (possibly incompatible) client versions.</param>
- <param name="callback">The callback invoked when this call completes on the MatchMaker.</param>
- <returns>
- <para>This function is asynchronous and will complete at some point in the future, when the coroutine has finished communicating with the service backend.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.Match.NetworkMatch.SetMatchAttributes(UnityEngine.Networking.Types.NetworkID,System.Boolean,System.Int32,UnityEngine.Networking.Match.NetworkMatch/BasicResponseDelegate)">
- <summary>
- <para>This function allows the caller to change attributes on a match in progress.</para>
- </summary>
- <param name="networkId">The NetworkID of the match to set attributes on.</param>
- <param name="isListed">A bool indicating whether the match should be listed in NetworkMatch.ListMatches results after this call is complete.</param>
- <param name="requestDomain">The request domain for this request. Only requests in the same domain can interface with each other. For example if a NetworkMatch.CreateMatch is made with domain 1, only ListMatches that also specify domain 1 will find that match. Use this value to silo different (possibly incompatible) client versions.</param>
- <param name="callback">The callback invoked after the call has completed, indicating if it was successful or not.</param>
- <returns>
- <para>This function is asynchronous and will complete at some point in the future, when the coroutine has finished communicating with the service backend.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.Match.NetworkMatch.SetProgramAppID(UnityEngine.Networking.Types.AppID)">
- <summary>
- <para>This method is deprecated. Please instead log in through the editor services panel and setup the project under the Unity Multiplayer section. This will populate the required infomation from the cloud site automatically.</para>
- </summary>
- <param name="programAppID">Deprecated, see description.</param>
- </member>
- <member name="T:UnityEngine.Networking.NetworkError">
- <summary>
- <para>Possible Networking.NetworkTransport errors.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Networking.NetworkError.BadMessage">
- <summary>
- <para>Not a data message.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Networking.NetworkError.CRCMismatch">
- <summary>
- <para>The Networking.ConnectionConfig does not match the other endpoint.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Networking.NetworkError.DNSFailure">
- <summary>
- <para>The address supplied to connect to was invalid or could not be resolved.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Networking.NetworkError.MessageToLong">
- <summary>
- <para>The message is too long to fit the buffer.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Networking.NetworkError.NoResources">
- <summary>
- <para>Not enough resources are available to process this request.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Networking.NetworkError.Ok">
- <summary>
- <para>The operation completed successfully.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Networking.NetworkError.Timeout">
- <summary>
- <para>Connection timed out.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Networking.NetworkError.UsageError">
- <summary>
- <para>This error will occur if any function is called with inappropriate parameter values.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Networking.NetworkError.VersionMismatch">
- <summary>
- <para>The protocol versions are not compatible. Check your library versions.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Networking.NetworkError.WrongChannel">
- <summary>
- <para>The specified channel doesn't exist.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Networking.NetworkError.WrongConnection">
- <summary>
- <para>The specified connectionId doesn't exist.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Networking.NetworkError.WrongHost">
- <summary>
- <para>The specified host not available.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Networking.NetworkError.WrongOperation">
- <summary>
- <para>Operation is not supported.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Networking.NetworkEventType">
- <summary>
- <para>Event that is returned when calling the Networking.NetworkTransport.Receive and Networking.NetworkTransport.ReceiveFromHost functions.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Networking.NetworkEventType.BroadcastEvent">
- <summary>
- <para>Broadcast discovery event received.
-To obtain sender connection info and possible complimentary message from them, call Networking.NetworkTransport.GetBroadcastConnectionInfo() and Networking.NetworkTransport.GetBroadcastConnectionMessage() functions.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Networking.NetworkEventType.ConnectEvent">
- <summary>
- <para>Connection event received. Indicating that a new connection was established.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Networking.NetworkEventType.DataEvent">
- <summary>
- <para>Data event received. Indicating that data was received.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Networking.NetworkEventType.DisconnectEvent">
- <summary>
- <para>Disconnection event received.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Networking.NetworkEventType.Nothing">
- <summary>
- <para>No new event was received.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Networking.NetworkTransport">
- <summary>
- <para>Transport Layer API.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Networking.NetworkTransport.AddHost(UnityEngine.Networking.HostTopology,System.Int32,System.String)">
- <summary>
- <para>Creates a host based on Networking.HostTopology.</para>
- </summary>
- <param name="topology">The Networking.HostTopology associated with the host.</param>
- <param name="port">Port to bind to (when 0 is selected, the OS will choose a port at random).</param>
- <param name="ip">IP address to bind to.</param>
- <returns>
- <para>Returns the ID of the host that was created.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.NetworkTransport.AddHostWithSimulator(UnityEngine.Networking.HostTopology,System.Int32,System.Int32,System.Int32,System.String)">
- <summary>
- <para>Create a host and configure them to simulate Internet latency (works on Editor and development build only).</para>
- </summary>
- <param name="topology">The Networking.HostTopology associated with the host.</param>
- <param name="minTimeout">Minimum simulated delay in milliseconds.</param>
- <param name="maxTimeout">Maximum simulated delay in milliseconds.</param>
- <param name="port">Port to bind to (when 0 is selected, the OS will choose a port at random).</param>
- <param name="ip">IP address to bind to.</param>
- <returns>
- <para>Returns host ID just created.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.NetworkTransport.AddWebsocketHost(UnityEngine.Networking.HostTopology,System.Int32)">
- <summary>
- <para>Created web socket host.</para>
- </summary>
- <param name="port">Port to bind to.</param>
- <param name="topology">The Networking.HostTopology associated with the host.</param>
- <param name="ip">IP address to bind to.</param>
- <returns>
- <para>Web socket host id.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.NetworkTransport.AddWebsocketHost(UnityEngine.Networking.HostTopology,System.Int32,System.String)">
- <summary>
- <para>Created web socket host.</para>
- </summary>
- <param name="port">Port to bind to.</param>
- <param name="topology">The Networking.HostTopology associated with the host.</param>
- <param name="ip">IP address to bind to.</param>
- <returns>
- <para>Web socket host id.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.NetworkTransport.Connect(System.Int32,System.String,System.Int32,System.Int32,System.Byte&amp;)">
- <summary>
- <para>Tries to establish a connection to another peer.</para>
- </summary>
- <param name="hostId">Host ID associated with this connection (retrieved when calling Networking.NetworkTransport.AddHost).</param>
- <param name="address">IPv4 address of the other peer.</param>
- <param name="port">Port of the other peer.</param>
- <param name="exceptionConnectionId">Set to 0 in the case of a default connection.</param>
- <param name="error">Error (can be cast to Networking.NetworkError for more information).</param>
- <param name="exeptionConnectionId"></param>
- <returns>
- <para>A unique connection identifier on success (otherwise zero).</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.NetworkTransport.ConnectAsNetworkHost(System.Int32,System.String,System.Int32,UnityEngine.Networking.Types.NetworkID,UnityEngine.Networking.Types.SourceID,UnityEngine.Networking.Types.NodeID,System.Byte&amp;)">
- <summary>
- <para>Create dedicated connection to Relay server.</para>
- </summary>
- <param name="hostId">Host ID associated with this connection (Retrieved when calling Networking.NetworkTransport.AddHost).</param>
- <param name="address">IPv4 address of the relay.</param>
- <param name="port">Port of the relay.</param>
- <param name="network">GUID for the relay match, retrieved by calling Networking.Match.NetworkMatch.CreateMatch and using the Networking.Match.MatchInfo.networkId.</param>
- <param name="source">GUID for the source, can be retrieved by calling Utility.GetSourceID.</param>
- <param name="error">Error (can be cast to Networking.NetworkError for more information).</param>
- <param name="node">Slot ID for this user, retrieved by calling Networking.Match.NetworkMatch.CreateMatch and using the Networking.Match.MatchInfo.nodeId.</param>
- </member>
- <member name="M:UnityEngine.Networking.NetworkTransport.ConnectEndPoint(System.Int32,System.Net.EndPoint,System.Int32,System.Byte&amp;)">
- <summary>
- <para>Try to establish connection to other peer, where the peer is specified using a C# System.EndPoint.</para>
- </summary>
- <param name="hostId">Host ID associated with this connection (Retrieved when calling Networking.NetworkTransport.AddHost).</param>
- <param name="error">Error (can be cast to Networking.NetworkError for more information).</param>
- <param name="xboxOneEndPoint">A valid System.EndPoint.</param>
- <param name="exceptionConnectionId">Set to 0 in the case of a default connection.</param>
- <param name="endPoint"></param>
- <returns>
- <para>A unique connection identifier on success (otherwise zero).</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.NetworkTransport.ConnectToNetworkPeer(System.Int32,System.String,System.Int32,System.Int32,System.Int32,UnityEngine.Networking.Types.NetworkID,UnityEngine.Networking.Types.SourceID,UnityEngine.Networking.Types.NodeID,System.Int32,System.Single,System.Byte&amp;)">
- <summary>
- <para>Create a connection to another peer in the Relay group.</para>
- </summary>
- <param name="hostId">Host ID associated with this connection (retrieved when calling Networking.NetworkTransport.AddHost).</param>
- <param name="address">IP address of the peer, retrieved by calling Networking.Match.NetworkMatch.JoinMatch and using the Networking.Match.MatchInfo.address.</param>
- <param name="port">Port of the peer, retrieved by calling Networking.Match.NetworkMatch.JoinMatch and using the Networking.Match.MatchInfo.port.</param>
- <param name="exceptionConnectionId">Set to 0 in the case of a default connection.</param>
- <param name="relaySlotId">ID of the remote peer in relay.</param>
- <param name="network">GUID for the relay match, retrieved by calling Networking.Match.NetworkMatch.JoinMatch and using the Networking.Match.MatchInfo.networkId.</param>
- <param name="source">GUID for the source, can be retrieved by calling Utility.GetSourceID.</param>
- <param name="error">Error (can be cast to Networking.NetworkError for more information).</param>
- <param name="node">Slot ID reserved for the user, retrieved by calling Networking.Match.NetworkMatch.JoinMatch and using the Networking.Match.MatchInfo.nodeId.</param>
- <param name="bucketSizeFactor">Allowed peak bandwidth (peak bandwidth = factor*bytesPerSec, recommended value is 2.0) If data has not been sent for a long time, it is allowed to send more data, with factor 2 it is allowed send 2*bytesPerSec bytes per sec.</param>
- <param name="bytesPerSec">Average bandwidth (bandwidth will be throttled on this level).</param>
- <returns>
- <para>A unique connection identifier on success (otherwise zero).</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.NetworkTransport.ConnectToNetworkPeer(System.Int32,System.String,System.Int32,System.Int32,System.Int32,UnityEngine.Networking.Types.NetworkID,UnityEngine.Networking.Types.SourceID,UnityEngine.Networking.Types.NodeID,System.Byte&amp;)">
- <summary>
- <para>Create a connection to another peer in the Relay group.</para>
- </summary>
- <param name="hostId">Host ID associated with this connection (retrieved when calling Networking.NetworkTransport.AddHost).</param>
- <param name="address">IP address of the peer, retrieved by calling Networking.Match.NetworkMatch.JoinMatch and using the Networking.Match.MatchInfo.address.</param>
- <param name="port">Port of the peer, retrieved by calling Networking.Match.NetworkMatch.JoinMatch and using the Networking.Match.MatchInfo.port.</param>
- <param name="exceptionConnectionId">Set to 0 in the case of a default connection.</param>
- <param name="relaySlotId">ID of the remote peer in relay.</param>
- <param name="network">GUID for the relay match, retrieved by calling Networking.Match.NetworkMatch.JoinMatch and using the Networking.Match.MatchInfo.networkId.</param>
- <param name="source">GUID for the source, can be retrieved by calling Utility.GetSourceID.</param>
- <param name="error">Error (can be cast to Networking.NetworkError for more information).</param>
- <param name="node">Slot ID reserved for the user, retrieved by calling Networking.Match.NetworkMatch.JoinMatch and using the Networking.Match.MatchInfo.nodeId.</param>
- <param name="bucketSizeFactor">Allowed peak bandwidth (peak bandwidth = factor*bytesPerSec, recommended value is 2.0) If data has not been sent for a long time, it is allowed to send more data, with factor 2 it is allowed send 2*bytesPerSec bytes per sec.</param>
- <param name="bytesPerSec">Average bandwidth (bandwidth will be throttled on this level).</param>
- <returns>
- <para>A unique connection identifier on success (otherwise zero).</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.NetworkTransport.ConnectWithSimulator(System.Int32,System.String,System.Int32,System.Int32,System.Byte&amp;,UnityEngine.Networking.ConnectionSimulatorConfig)">
- <summary>
- <para>Connect with simulated latency.</para>
- </summary>
- <param name="hostId">Host ID associated with this connection (Retrieved when calling Networking.NetworkTransport.AddHost).</param>
- <param name="address">IPv4 address of the other peer.</param>
- <param name="port">Port of the other peer.</param>
- <param name="exeptionConnectionId">Set to 0 in the case of a default connection.</param>
- <param name="error">Error (can be cast to Networking.NetworkError for more information).</param>
- <param name="conf">A Networking.ConnectionSimulatorConfig defined for this connection.</param>
- <returns>
- <para>A unique connection identifier on success (otherwise zero).</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.NetworkTransport.Disconnect(System.Int32,System.Int32,System.Byte&amp;)">
- <summary>
- <para>Send a disconnect signal to the connected peer and close the connection. Poll Networking.NetworkTransport.Receive() to be notified that the connection is closed. This signal is only sent once (best effort delivery). If this packet is dropped for some reason, the peer closes the connection by timeout.</para>
- </summary>
- <param name="hostId">Host ID associated with this connection.</param>
- <param name="connectionId">The connection ID of the connection you want to close.</param>
- <param name="error">Error (can be cast to Networking.NetworkError for more information).</param>
- </member>
- <member name="M:UnityEngine.Networking.NetworkTransport.DisconnectNetworkHost(System.Int32,System.Byte&amp;)">
- <summary>
- <para>This will disconnect the host and disband the group.
-DisconnectNetworkHost can only be called by the group owner on the relay server.</para>
- </summary>
- <param name="hostId">Host ID associated with this connection.</param>
- <param name="error">Error (can be cast to Networking.NetworkError for more information).</param>
- </member>
- <member name="M:UnityEngine.Networking.NetworkTransport.FinishSendMulticast(System.Int32,System.Byte&amp;)">
- <summary>
- <para>Finalizes sending of a message to a group of connections. Only one multicast message at a time is allowed per host.</para>
- </summary>
- <param name="hostId">Host ID associated with this connection (retrieved when calling Networking.NetworkTransport.AddHost).</param>
- <param name="error">Error (can be cast to Networking.NetworkError for more information).</param>
- </member>
- <member name="M:UnityEngine.Networking.NetworkTransport.GetAckBufferCount(System.Int32,System.Int32,System.Byte&amp;)">
- <summary>
- <para>Returns size of reliable buffer.</para>
- </summary>
- <param name="hostId">Host ID associated with this connection.</param>
- <param name="connectionId">ID of the connection.</param>
- <param name="error">Error (can be cast to Networking.NetworkError for more information).</param>
- <returns>
- <para>Size of ack buffer.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.NetworkTransport.GetAssetId(UnityEngine.GameObject)">
- <summary>
- <para>The Unity Multiplayer spawning system uses assetIds to identify what remote objects to spawn. This function allows you to get the assetId for the prefab associated with an object.</para>
- </summary>
- <param name="go">Target GameObject to get assetId for.</param>
- <returns>
- <para>The assetId of the game object's prefab.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.NetworkTransport.GetBroadcastConnectionInfo(System.Int32,System.String&amp;,System.Int32&amp;,System.Byte&amp;)">
- <summary>
- <para>After Networking.NetworkTransport.Receive() returns Networking.NetworkEventType.BroadcastEvent, this function will return the connection information of the broadcast sender. This information can then be used for connecting to the broadcast sender.</para>
- </summary>
- <param name="hostId">ID of the broadcast receiver.</param>
- <param name="address">IPv4 address of broadcast sender.</param>
- <param name="port">Port of broadcast sender.</param>
- <param name="error">Error (can be cast to Networking.NetworkError for more information).</param>
- </member>
- <member name="M:UnityEngine.Networking.NetworkTransport.GetBroadcastConnectionMessage(System.Int32,System.Byte[],System.Int32,System.Int32&amp;,System.Byte&amp;)">
- <summary>
- <para>After Networking.NetworkTransport.Receive() returns Networking.NetworkEventType.BroadcastEvent, this function returns a complimentary message from the broadcast sender.</para>
- </summary>
- <param name="hostId">ID of broadcast receiver.</param>
- <param name="buffer">Message buffer provided by caller.</param>
- <param name="bufferSize">Buffer size.</param>
- <param name="receivedSize">Received size (if received size &gt; bufferSize, corresponding error will be set).</param>
- <param name="error">Error (can be cast to Networking.NetworkError for more information).</param>
- </member>
- <member name="M:UnityEngine.Networking.NetworkTransport.GetConnectionInfo(System.Int32,System.Int32,System.String&amp;,System.Int32&amp;,UnityEngine.Networking.Types.NetworkID&amp;,UnityEngine.Networking.Types.NodeID&amp;,System.Byte&amp;)">
- <summary>
- <para>Returns the connection parameters for the specified connectionId. These parameters can be sent to other users to establish a direct connection to this peer. If this peer is connected to the host via Relay, the Relay-related parameters are set.</para>
- </summary>
- <param name="hostId">Host ID associated with this connection.</param>
- <param name="connectionId">ID of connection.</param>
- <param name="address">IP address.</param>
- <param name="port">Port.</param>
- <param name="network">Relay network guid.</param>
- <param name="error">Error (can be cast to Networking.NetworkError for more information).</param>
- <param name="dstNode">Destination slot id.</param>
- </member>
- <member name="M:UnityEngine.Networking.NetworkTransport.GetCurrentIncomingMessageAmount">
- <summary>
- <para>Returns the number of unread messages in the read-queue.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Networking.NetworkTransport.GetCurrentOutgoingMessageAmount">
- <summary>
- <para>Returns the total number of messages still in the write-queue.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Networking.NetworkTransport.GetCurrentRTT(System.Int32,System.Int32,System.Byte&amp;)">
- <summary>
- <para>Return the round trip time for the given connectionId.</para>
- </summary>
- <param name="error">Error (can be cast to Networking.NetworkError for more information).</param>
- <param name="hostId">Host ID associated with this connection.</param>
- <param name="connectionId">ID of the connection.</param>
- <returns>
- <para>Current round trip time in ms.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.NetworkTransport.GetHostPort(System.Int32)">
- <summary>
- <para>Returns the port number assigned to the host.</para>
- </summary>
- <param name="hostId">Host ID.</param>
- <returns>
- <para>The UDP port number, or -1 if an error occurred.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.NetworkTransport.GetIncomingMessageQueueSize(System.Int32,System.Byte&amp;)">
- <summary>
- <para>Returns the number of received messages waiting in the queue for processing.</para>
- </summary>
- <param name="hostId">Host ID associated with this queue.</param>
- <param name="error">Error code. Cast this value to Networking.NetworkError for more information.</param>
- <returns>
- <para>The number of messages in the queue.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.NetworkTransport.GetIncomingPacketCount(System.Int32,System.Int32,System.Byte&amp;)">
- <summary>
- <para>Returns how many packets have been received from start for connection.</para>
- </summary>
- <param name="hostId">Host ID associated with this connection.</param>
- <param name="connectionId">ID of the connection.</param>
- <param name="error">Error (can be cast to Networking.NetworkError for more information).</param>
- <returns>
- <para>The absolute number of packets received since the connection was established.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.NetworkTransport.GetIncomingPacketCountForAllHosts">
- <summary>
- <para>Returns how many packets have been received from start. (from Networking.NetworkTransport.Init call).</para>
- </summary>
- <returns>
- <para>Packets count received from start for all hosts.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.NetworkTransport.GetIncomingPacketDropCountForAllHosts">
- <summary>
- <para>How many packets have been dropped due lack space in incoming queue (absolute value, countinf from start).</para>
- </summary>
- <returns>
- <para>Dropping packet count.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.NetworkTransport.GetIncomingPacketLossCount(System.Int32,System.Int32,System.Byte&amp;)">
- <summary>
- <para>Returns how many incoming packets have been lost due transmitting (dropped by network).</para>
- </summary>
- <param name="hostId">Host ID associated with this connection.</param>
- <param name="connectionId">ID of the connection.</param>
- <param name="error">Error (can be cast to Networking.NetworkError for more information).</param>
- <returns>
- <para>The absolute number of packets that have been lost since the connection was established.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.NetworkTransport.GetMaxAllowedBandwidth(System.Int32,System.Int32,System.Byte&amp;)">
- <summary>
- <para>Gets the currently-allowed network bandwidth in bytes per second. The value returned can vary because bandwidth can be throttled by flow control. If the bandwidth is throttled to zero, the connection is disconnected.ted.</para>
- </summary>
- <param name="hostId">Host ID associated with this connection.</param>
- <param name="connectionId">ID of the connection.</param>
- <param name="error">Error (can be cast to Networking.NetworkError for more information).</param>
- <returns>
- <para>Currently-allowed bandwidth in bytes per second.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.NetworkTransport.GetNetIOTimeuS">
- <summary>
- <para>Function returns time spent on network I/O operations in microseconds.</para>
- </summary>
- <returns>
- <para>Time in micro seconds.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.NetworkTransport.GetNetworkLostPacketNum(System.Int32,System.Int32,System.Byte&amp;)">
- <summary>
- <para>Return the total number of packets that has been lost.</para>
- </summary>
- <param name="hostId">Host ID associated with this connection.</param>
- <param name="connectionId">ID of the connection.</param>
- <param name="error">Error (can be cast to Networking.NetworkError for more information).</param>
- </member>
- <member name="M:UnityEngine.Networking.NetworkTransport.GetNetworkTimestamp">
- <summary>
- <para>Get a network timestamp. Can be used in your messages to investigate network delays together with Networking.GetRemoteDelayTimeMS.</para>
- </summary>
- <returns>
- <para>Timestamp.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.NetworkTransport.GetOutgoingFullBytesCount">
- <summary>
- <para>Returns how much raw data (in bytes) have been sent from start for all hosts (from Networking.NetworkTransport.Init call).</para>
- </summary>
- <returns>
- <para>Total data (user payload, protocol specific data, ip and udp headers) (in bytes) sent from start for all hosts.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.NetworkTransport.GetOutgoingFullBytesCountForConnection(System.Int32,System.Int32,System.Byte&amp;)">
- <summary>
- <para>Returns how much raw data (in bytes) have been sent from start for connection (from call Networking.NetworkTransport.Connect for active connect or from connection request receiving for passive connect).</para>
- </summary>
- <param name="hostId">Host ID associated with this connection.</param>
- <param name="connectionId">ID of the connection.</param>
- <param name="error">Error (can be cast to Networking.NetworkError for more information).</param>
- <returns>
- <para>Total data (user payload, protocol specific data, ip and udp headers) (in bytes) sent from start for connection.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.NetworkTransport.GetOutgoingFullBytesCountForHost(System.Int32,System.Byte&amp;)">
- <summary>
- <para>Returns how much raw data (in bytes) have been sent from start for the host (from call Networking.NetworkTransport.AddHost).</para>
- </summary>
- <param name="hostId">ID of the host.</param>
- <param name="error">Error (can be cast to Networking.NetworkError for more information).</param>
- <returns>
- <para>Total data (user payload, protocol specific data, ip and udp headers) (in bytes) sent from start for the host.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.NetworkTransport.GetOutgoingMessageCount">
- <summary>
- <para>Returns how many messages have been sent from start (from Networking.NetworkTransport.Init call).</para>
- </summary>
- <returns>
- <para>Messages count sent from start (from call Networking.NetworkTransport.Init) for all hosts.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.NetworkTransport.GetOutgoingMessageCountForConnection(System.Int32,System.Int32,System.Byte&amp;)">
- <summary>
- <para>Returns how many packets have been sent from start for connection (from call Networking.NetworkTransport.Connect for active connect or from connection request receiving for passive connect).</para>
- </summary>
- <param name="hostId">Host ID associated with this connection.</param>
- <param name="connectionId">ID of the connection.</param>
- <param name="error">Error (can be cast to Networking.NetworkError for more information).</param>
- <returns>
- <para>Messages count sending from start for connection.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.NetworkTransport.GetOutgoingMessageCountForHost(System.Int32,System.Byte&amp;)">
- <summary>
- <para>Returns how many messages have been sent from start for host (from call Networking.NetworkTransport.AddHost).</para>
- </summary>
- <param name="hostId">ID of the host.</param>
- <param name="error">Error (can be cast to Networking.NetworkError for more information).</param>
- <returns>
- <para>Messages count sending from start for the host.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.NetworkTransport.GetOutgoingMessageQueueSize(System.Int32,System.Byte&amp;)">
- <summary>
- <para>Returns the number of messages waiting in the outgoing message queue to be sent.</para>
- </summary>
- <param name="hostId">Host ID associated with this queue.</param>
- <param name="error">Error code. Cast this value to Networking.NetworkError for more information.</param>
- <returns>
- <para>The number of messages waiting in the outgoing message queue to be sent.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.NetworkTransport.GetOutgoingPacketCount">
- <summary>
- <para>Returns how many packets have been sent from start (from call Networking.NetworkTransport.Init) for all hosts.</para>
- </summary>
- <returns>
- <para>Packets count sent from networking library start (from call Networking.NetworkTransport.Init) for all hosts.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.NetworkTransport.GetOutgoingPacketCountForConnection(System.Int32,System.Int32,System.Byte&amp;)">
- <summary>
- <para>Returns how many packets have been sent for connection from it start (from call Networking.NetworkTransport.Connect for active connect or from connection request receiving for passive connect).</para>
- </summary>
- <param name="hostId">Host ID associated with this connection.</param>
- <param name="connectionId">ID of the connection.</param>
- <param name="error">Error (can be cast to Networking.NetworkError for more information).</param>
- <returns>
- <para>Packets count sent for connection from it start.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.NetworkTransport.GetOutgoingPacketCountForHost(System.Int32,System.Byte&amp;)">
- <summary>
- <para>Returns how many packets have been sent for host from it start (from call Networking.NetworkTransport.AddHost).</para>
- </summary>
- <param name="hostId">ID of the host.</param>
- <param name="error">Error (can be cast to Networking.NetworkError for more information).</param>
- <returns>
- <para>Count packets have been sent from host start.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.NetworkTransport.GetOutgoingPacketNetworkLossPercent(System.Int32,System.Int32,System.Byte&amp;)">
- <summary>
- <para>Returns the value in percent of the number of sent packets that were dropped by the network and not received by the peer.</para>
- </summary>
- <param name="hostId">Host ID associated with this connection.</param>
- <param name="connectionId">ID of the connection.</param>
- <param name="error">Error (can be cast to Networking.NetworkError for more information).</param>
- <returns>
- <para>The number of packets dropped by the network in the last ping timeout period expressed as an integer percentage from 0 to 100.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.NetworkTransport.GetOutgoingPacketOverflowLossPercent(System.Int32,System.Int32,System.Byte&amp;)">
- <summary>
- <para>Returns the value in percent of the number of sent packets that were dropped by the peer.</para>
- </summary>
- <param name="hostId">Host ID associated with this connection.</param>
- <param name="connectionId">ID of the connection.</param>
- <param name="error">Error (can be cast to Networking.NetworkError for more information).</param>
- <returns>
- <para>The number of packets dropped by the peer in the last ping timeout period expressed as an integer percentage from 0 to 100.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.NetworkTransport.GetOutgoingSystemBytesCount">
- <summary>
- <para>Returns how much user payload and protocol system headers (in bytes) have been sent from start (from Networking.NetworkTransport.Init call).</para>
- </summary>
- <returns>
- <para>Total payload and protocol system headers (in bytes) sent from start for all hosts.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.NetworkTransport.GetOutgoingSystemBytesCountForConnection(System.Int32,System.Int32,System.Byte&amp;)">
- <summary>
- <para>Returns how much payload and protocol system headers (in bytes) have been sent from start for connection (from call Networking.NetworkTransport.Connect for active connect or from connection request receiving for passive connect).</para>
- </summary>
- <param name="hostId">Host ID associated with this connection.</param>
- <param name="connectionId">ID of the connection.</param>
- <param name="error">Error (can be cast to Networking.NetworkError for more information).</param>
- <returns>
- <para>Total user payload and protocol system headers (in bytes) sent from start for connection.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.NetworkTransport.GetOutgoingSystemBytesCountForHost(System.Int32,System.Byte&amp;)">
- <summary>
- <para>Returns how much payload and protocol system headers (in bytes) have been sent from start for the host (from call Networking.NetworkTransport.AddHost).</para>
- </summary>
- <param name="hostId">ID of the host.</param>
- <param name="error">Error (can be cast to Networking.NetworkError for more information).</param>
- <returns>
- <para>Total user payload and protocol system headers (in bytes) sent from start for the host.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.NetworkTransport.GetOutgoingUserBytesCount">
- <summary>
- <para>Returns how much payload (user) bytes have been sent from start (from Networking.NetworkTransport.Init call).</para>
- </summary>
- <returns>
- <para>Total payload (in bytes) sent from start for all hosts.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.NetworkTransport.GetOutgoingUserBytesCountForConnection(System.Int32,System.Int32,System.Byte&amp;)">
- <summary>
- <para>Returns how much payload (user) bytes have been sent from start for connection (from call Networking.NetworkTransport.Connect for active connect or from connection request receiving for passive connect).</para>
- </summary>
- <param name="hostId">Host ID associated with this connection.</param>
- <param name="connectionId">ID of the connection.</param>
- <param name="error">Error (can be cast to Networking.NetworkError for more information).</param>
- <returns>
- <para>Total payload (in bytes) sent from start for connection.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.NetworkTransport.GetOutgoingUserBytesCountForHost(System.Int32,System.Byte&amp;)">
- <summary>
- <para>Returns how much payload (user) bytes have been sent from start for the host (from call Networking.NetworkTransport.AddHost).</para>
- </summary>
- <param name="hostId">ID of the host.</param>
- <param name="error">Error (can be cast to Networking.NetworkError for more information).</param>
- <returns>
- <para>Total payload (in bytes) sent from start for the host.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.NetworkTransport.GetPacketReceivedRate(System.Int32,System.Int32,System.Byte&amp;)">
- <summary>
- <para>Return the current receive rate in bytes per second.</para>
- </summary>
- <param name="hostId">Host ID associated with this connection.</param>
- <param name="connectionId">ID of the connection.</param>
- <param name="error">Error (can be cast to Networking.NetworkError for more information).</param>
- </member>
- <member name="M:UnityEngine.Networking.NetworkTransport.GetPacketSentRate(System.Int32,System.Int32,System.Byte&amp;)">
- <summary>
- <para>Return the current send rate in bytes per second.</para>
- </summary>
- <param name="hostId">Host ID associated with this connection.</param>
- <param name="connectionId">ID of the connection.</param>
- <param name="error">Error (can be cast to Networking.NetworkError for more information).</param>
- </member>
- <member name="M:UnityEngine.Networking.NetworkTransport.GetRemoteDelayTimeMS(System.Int32,System.Int32,System.Int32,System.Byte&amp;)">
- <summary>
- <para>Returns the delay for the timestamp received.</para>
- </summary>
- <param name="hostId">Host ID associated with this connection.</param>
- <param name="connectionId">ID of the connection.</param>
- <param name="remoteTime">Timestamp delivered from peer.</param>
- <param name="error">Error (can be cast to Networking.NetworkError for more information).</param>
- </member>
- <member name="M:UnityEngine.Networking.NetworkTransport.GetRemotePacketReceivedRate(System.Int32,System.Int32,System.Byte&amp;)">
- <summary>
- <para>Deprecated. Use Networking.NetworkTransport.GetNetworkLostPacketNum() instead.</para>
- </summary>
- <param name="hostId">Host ID associated with this connection.</param>
- <param name="connectionId">ID of the connection.</param>
- <param name="error">Error (can be cast to Networking.NetworkError for more information).</param>
- </member>
- <member name="M:UnityEngine.Networking.NetworkTransport.Init">
- <summary>
- <para>Initializes the NetworkTransport. Should be called before any other operations on the NetworkTransport are done.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Networking.NetworkTransport.IsBroadcastDiscoveryRunning">
- <summary>
- <para>Check if the broadcast discovery sender is running.</para>
- </summary>
- <returns>
- <para>True if it is running. False if it is not running.</para>
- </returns>
- </member>
- <member name="P:UnityEngine.Networking.NetworkTransport.IsStarted">
- <summary>
- <para>Deprecated.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Networking.NetworkTransport.NotifyWhenConnectionReadyForSend(System.Int32,System.Int32,System.Int32,System.Byte&amp;)">
- <summary>
- <para>This method allows you to specify that notifications callbacks should be called when Unity's networking can send more messages than defined in notificationLevel.</para>
- </summary>
- <param name="hostId">Host ID.</param>
- <param name="connectionId">Connection ID.</param>
- <param name="notificationLevel">Defines how many free slots in the incoming queue should be available before [GlobalConfig.ConnectionReadyForSend] callback is triggered.</param>
- <param name="error">Error code.</param>
- <returns>
- <para>Result, if false error will show error code.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.NetworkTransport.QueueMessageForSending(System.Int32,System.Int32,System.Int32,System.Byte[],System.Int32,System.Byte&amp;)">
- <summary>
- <para>Function is queueing but not sending messages.</para>
- </summary>
- <param name="hostId">Host ID associated with this connection.</param>
- <param name="connectionId">ID of the connection.</param>
- <param name="error">Error (can be cast to Networking.NetworkError for more information).</param>
- <param name="channelId">The channel ID to send on.</param>
- <param name="buffer">Buffer containing the data to send.</param>
- <param name="size">Size of the buffer.</param>
- <returns>
- <para>True if success.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.NetworkTransport.Receive(System.Int32&amp;,System.Int32&amp;,System.Int32&amp;,System.Byte[],System.Int32,System.Int32&amp;,System.Byte&amp;)">
- <summary>
- <para>Called to poll the underlying system for events.</para>
- </summary>
- <param name="hostId">Host ID associated with the event.</param>
- <param name="connectionId">The connectionID that received the event.</param>
- <param name="channelId">The channel ID associated with the event.</param>
- <param name="buffer">The buffer that will hold the data received.</param>
- <param name="bufferSize">Size of the buffer supplied.</param>
- <param name="receivedSize">The actual receive size of the data.</param>
- <param name="error">Error (can be cast to Networking.NetworkError for more information).</param>
- <returns>
- <para>Type of event returned.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.NetworkTransport.ReceiveFromHost(System.Int32,System.Int32&amp;,System.Int32&amp;,System.Byte[],System.Int32,System.Int32&amp;,System.Byte&amp;)">
- <summary>
- <para>Similar to Networking.NetworkTransport.Receive but will only poll for the provided hostId.</para>
- </summary>
- <param name="hostId">The host ID to check for events.</param>
- <param name="connectionId">The connection ID that received the event.</param>
- <param name="channelId">The channel ID associated with the event.</param>
- <param name="buffer">The buffer that will hold the data received.</param>
- <param name="bufferSize">Size of the buffer supplied.</param>
- <param name="receivedSize">The actual receive size of the data.</param>
- <param name="error">Error (can be cast to Networking.NetworkError for more information).</param>
- <returns>
- <para>Type of event returned.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.NetworkTransport.ReceiveRelayEventFromHost(System.Int32,System.Byte&amp;)">
- <summary>
- <para>Polls the host for the following events: Networking.NetworkEventType.ConnectEvent and Networking.NetworkEventType.DisconnectEvent.
-Can only be called by the relay group owner.</para>
- </summary>
- <param name="hostId">The host ID to check for events.</param>
- <param name="error">Error (can be cast to Networking.NetworkError for more information).</param>
- <returns>
- <para>Type of event returned.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.NetworkTransport.RemoveHost(System.Int32)">
- <summary>
- <para>Closes the opened socket, and closes all connections belonging to that socket.</para>
- </summary>
- <param name="hostId">Host ID to remove.</param>
- </member>
- <member name="M:UnityEngine.Networking.NetworkTransport.Send(System.Int32,System.Int32,System.Int32,System.Byte[],System.Int32,System.Byte&amp;)">
- <summary>
- <para>Send data to peer.</para>
- </summary>
- <param name="hostId">Host ID associated with this connection.</param>
- <param name="connectionId">ID of the connection.</param>
- <param name="channelId">The channel ID to send on.</param>
- <param name="buffer">Buffer containing the data to send.</param>
- <param name="size">Size of the buffer.</param>
- <param name="error">Error (can be cast to Networking.NetworkError for more information).</param>
- </member>
- <member name="M:UnityEngine.Networking.NetworkTransport.SendMulticast(System.Int32,System.Int32,System.Byte&amp;)">
- <summary>
- <para>Add a connection for the multicast send.</para>
- </summary>
- <param name="hostId">Host ID associated with this connection.</param>
- <param name="connectionId">ID of the connection.</param>
- <param name="error">Error (can be cast to Networking.NetworkError for more information).</param>
- </member>
- <member name="M:UnityEngine.Networking.NetworkTransport.SendQueuedMessages(System.Int32,System.Int32,System.Byte&amp;)">
- <summary>
- <para>Sends messages, previously queued by NetworkTransport.QueueMessageForSending function.</para>
- </summary>
- <param name="hostId">Host ID associated with this connection.</param>
- <param name="connectionId">ID of the connection.</param>
- <param name="error">Error (can be cast to Networking.NetworkError for more information).</param>
- <returns>
- <para>True if hostId and connectioId are valid.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.NetworkTransport.SetBroadcastCredentials(System.Int32,System.Int32,System.Int32,System.Int32,System.Byte&amp;)">
- <summary>
- <para>Sets the credentials required for receiving broadcast messages. Should any credentials of a received broadcast message not match, the broadcast discovery message is dropped.</para>
- </summary>
- <param name="hostId">Host ID associated with this broadcast.</param>
- <param name="key">Key part of the credentials associated with this broadcast.</param>
- <param name="version">Version part of the credentials associated with this broadcast.</param>
- <param name="subversion">Subversion part of the credentials associated with this broadcast.</param>
- <param name="error">Error (can be cast to Networking.NetworkError for more information).</param>
- </member>
- <member name="M:UnityEngine.Networking.NetworkTransport.SetPacketStat(System.Int32,System.Int32,System.Int32,System.Int32)">
- <summary>
- <para>Used to inform the profiler of network packet statistics.</para>
- </summary>
- <param name="packetStatId">The ID of the message being reported.</param>
- <param name="numMsgs">Number of messages being reported.</param>
- <param name="numBytes">Number of bytes used by reported messages.</param>
- <param name="direction">Whether the packet is outgoing (-1) or incoming (0).</param>
- </member>
- <member name="M:UnityEngine.Networking.NetworkTransport.Shutdown">
- <summary>
- <para>Shut down the NetworkTransport.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Networking.NetworkTransport.StartBroadcastDiscovery(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Byte[],System.Int32,System.Int32,System.Byte&amp;)">
- <summary>
- <para>Starts sending a broadcasting message in all local subnets.</para>
- </summary>
- <param name="hostId">Host ID which should be reported via broadcast (broadcast receivers will connect to this host).</param>
- <param name="broadcastPort">Port used for the broadcast message.</param>
- <param name="key">Key part of the credentials associated with this broadcast.</param>
- <param name="version">Version part of the credentials associated with this broadcast.</param>
- <param name="subversion">Subversion part of the credentials associated with this broadcast.</param>
- <param name="buffer">Complimentary message. This message will delivered to the receiver with the broadcast event.</param>
- <param name="size">Size of message.</param>
- <param name="timeout">Specifies how often the broadcast message should be sent in milliseconds.</param>
- <param name="error">Error (can be cast to Networking.NetworkError for more information).</param>
- <returns>
- <para>Return true if broadcasting request has been submitted.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.NetworkTransport.StartSendMulticast(System.Int32,System.Int32,System.Byte[],System.Int32,System.Byte&amp;)">
- <summary>
- <para>Start to multicast send.</para>
- </summary>
- <param name="hostId">Host ID associated with this connection.</param>
- <param name="channelId">The channel ID.</param>
- <param name="buffer">Buffer containing the data to send.</param>
- <param name="size">Size of the buffer.</param>
- <param name="error">Error (can be cast to Networking.NetworkError for more information).</param>
- </member>
- <member name="M:UnityEngine.Networking.NetworkTransport.StopBroadcastDiscovery">
- <summary>
- <para>Stop sending the broadcast discovery message.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Networking.QosType">
- <summary>
- <para>Enumeration of all supported quality of service channel modes.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Networking.QosType.AllCostDelivery">
- <summary>
- <para>A reliable message that will be re-sent with a high frequency until it is acknowledged.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Networking.QosType.Reliable">
- <summary>
- <para>Each message is guaranteed to be delivered but not guaranteed to be in order.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Networking.QosType.ReliableFragmented">
- <summary>
- <para>Each message is guaranteed to be delivered, also allowing fragmented messages with up to 32 fragments per message.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Networking.QosType.ReliableFragmentedSequenced">
- <summary>
- <para>Each message is guaranteed to be delivered in order, also allowing fragmented messages with up to 32 fragments per message.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Networking.QosType.ReliableSequenced">
- <summary>
- <para>Each message is guaranteed to be delivered and in order.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Networking.QosType.ReliableStateUpdate">
- <summary>
- <para>A reliable message. Note: Only the last message in the send buffer is sent. Only the most recent message in the receive buffer will be delivered.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Networking.QosType.StateUpdate">
- <summary>
- <para>An unreliable message. Only the last message in the send buffer is sent. Only the most recent message in the receive buffer will be delivered.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Networking.QosType.Unreliable">
- <summary>
- <para>There is no guarantee of delivery or ordering.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Networking.QosType.UnreliableFragmented">
- <summary>
- <para>There is no guarantee of delivery or ordering, but allowing fragmented messages with up to 32 fragments per message.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Networking.QosType.UnreliableFragmentedSequenced">
- <summary>
- <para>There is garantee of ordering, no guarantee of delivery, but allowing fragmented messages with up to 32 fragments per message.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Networking.QosType.UnreliableSequenced">
- <summary>
- <para>There is no guarantee of delivery and all unordered messages will be dropped. Example: VoIP.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Networking.ReactorModel">
- <summary>
- <para>Define how unet will handle network io operation.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Networking.ReactorModel.FixRateReactor">
- <summary>
- <para>Network thread will sleep up to threadawake timeout, after that it will try receive up to maxpoolsize amount of messages and then will try perform send operation for connection whihc ready to send.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Networking.ReactorModel.SelectReactor">
- <summary>
- <para>Network thread will sleep up to threadawake timeout, or up to receive event on socket will happened. Awaked thread will try to read up to maxpoolsize packets from socket and will try update connections ready to send (with fixing awaketimeout rate).</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Networking.Types.AppID">
- <summary>
- <para>The AppID identifies the application on the Unity Cloud or UNET servers.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Networking.Types.AppID.Invalid">
- <summary>
- <para>Invalid AppID.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Networking.Types.HostPriority">
- <summary>
- <para>An Enum representing the priority of a client in a match, starting at 0 and increasing.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Networking.Types.HostPriority.Invalid">
- <summary>
- <para>The Invalid case for a HostPriority. An Invalid host priority is not a valid host.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Networking.Types.NetworkAccessLevel">
- <summary>
- <para>Describes the access levels granted to this client.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Networking.Types.NetworkAccessLevel.Admin">
- <summary>
- <para>Administration access level, generally describing clearence to perform game altering actions against anyone inside a particular match.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Networking.Types.NetworkAccessLevel.Invalid">
- <summary>
- <para>Invalid access level, signifying no access level has been granted/specified.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Networking.Types.NetworkAccessLevel.Owner">
- <summary>
- <para>Access level Owner, generally granting access for operations key to the peer host server performing it's work.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Networking.Types.NetworkAccessLevel.User">
- <summary>
- <para>User access level. This means you can do operations which affect yourself only, like disconnect yourself from the match.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Networking.Types.NetworkAccessToken">
- <summary>
- <para>Access token used to authenticate a client session for the purposes of allowing or disallowing match operations requested by that client.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Networking.Types.NetworkAccessToken.array">
- <summary>
- <para>Binary field for the actual token.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Networking.Types.NetworkAccessToken.GetByteString">
- <summary>
- <para>Accessor to get an encoded string from the m_array data.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Networking.Types.NetworkAccessToken.IsValid">
- <summary>
- <para>Checks if the token is a valid set of data with respect to default values (returns true if the values are not default, does not validate the token is a current legitimate token with respect to the server's auth framework).</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Networking.Types.NetworkID">
- <summary>
- <para>Network ID, used for match making.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Networking.Types.NetworkID.Invalid">
- <summary>
- <para>Invalid NetworkID.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Networking.Types.NodeID">
- <summary>
- <para>The NodeID is the ID used in Relay matches to track nodes in a network.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Networking.Types.NodeID.Invalid">
- <summary>
- <para>The invalid case of a NodeID.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Networking.Types.SourceID">
- <summary>
- <para>Identifies a specific game instance.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Networking.Types.SourceID.Invalid">
- <summary>
- <para>Invalid SourceID.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Networking.Utility">
- <summary>
- <para>Networking Utility.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.Utility.useRandomSourceID">
- <summary>
- <para>This property is deprecated and does not need to be set or referenced.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Networking.Utility.GetAccessTokenForNetwork(UnityEngine.Networking.Types.NetworkID)">
- <summary>
- <para>Utility function to get this client's access token for a particular network, if it has been set.</para>
- </summary>
- <param name="netId"></param>
- </member>
- <member name="M:UnityEngine.Networking.Utility.GetAppID">
- <summary>
- <para>Utility function to fetch the program's ID for UNET Cloud interfacing.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Networking.Utility.GetSourceID">
- <summary>
- <para>Utility function to get the client's SourceID for unique identification.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Networking.Utility.SetAccessTokenForNetwork(UnityEngine.Networking.Types.NetworkID,UnityEngine.Networking.Types.NetworkAccessToken)">
- <summary>
- <para>Utility function that accepts the access token for a network after it's received from the server.</para>
- </summary>
- <param name="netId"></param>
- <param name="accessToken"></param>
- </member>
- <member name="M:UnityEngine.Networking.Utility.SetAppID(UnityEngine.Networking.Types.AppID)">
- <summary>
- <para>Deprecated; Setting the AppID is no longer necessary. Please log in through the editor and set up the project there.</para>
- </summary>
- <param name="newAppID"></param>
- </member>
- </members>
-</doc>
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.UmbraModule.dll b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.UmbraModule.dll
deleted file mode 100644
index a0e6d99..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.UmbraModule.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.UmbraModule.xml b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.UmbraModule.xml
deleted file mode 100644
index f186be3..0000000
--- a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.UmbraModule.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
-<doc>
- <members>
- <assembly>
- <name>UnityEngine.UmbraModule</name>
- </assembly>
- <member name="A:UnityEngine.UmbraModule">
- <summary>
- <para>The Umbra module implements Unity's occlusion culling system.</para>
- </summary>
- </member>
- </members>
-</doc>
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.UnityAnalyticsModule.dll b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.UnityAnalyticsModule.dll
deleted file mode 100644
index 3584af1..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.UnityAnalyticsModule.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.UnityAnalyticsModule.xml b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.UnityAnalyticsModule.xml
deleted file mode 100644
index 0429903..0000000
--- a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.UnityAnalyticsModule.xml
+++ /dev/null
@@ -1,420 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
-<doc>
- <members>
- <assembly>
- <name>UnityEngine.UnityAnalyticsModule</name>
- </assembly>
- <member name="T:UnityEngine.Analytics.Analytics">
- <summary>
- <para>Unity Analytics provides insight into your game users e.g. DAU, MAU.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Analytics.Analytics.deviceStatsEnabled">
- <summary>
- <para>Controls whether the sending of device stats at runtime is enabled.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Analytics.Analytics.enabled">
- <summary>
- <para>Controls whether the Analytics service is enabled at runtime.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Analytics.Analytics.limitUserTracking">
- <summary>
- <para>Controls whether to limit user tracking at runtime.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Analytics.Analytics.CustomEvent(System.String,System.Collections.Generic.IDictionary`2&lt;System.String,System.Object&gt;)">
- <summary>
- <para>Custom Events (optional).</para>
- </summary>
- <param name="customEventName">Name of custom event. Name cannot include the prefix "unity." - This is a reserved keyword.</param>
- <param name="eventData">Additional parameters sent to Unity Analytics at the time the custom event was triggered. Dictionary key cannot include the prefix "unity." - This is a reserved keyword.</param>
- </member>
- <member name="M:UnityEngine.Analytics.Analytics.CustomEvent(System.String)">
- <summary>
- <para>Custom Events (optional).</para>
- </summary>
- <param name="customEventName"></param>
- </member>
- <member name="M:UnityEngine.Analytics.Analytics.CustomEvent(System.String,UnityEngine.Vector3)">
- <summary>
- <para>Custom Events (optional).</para>
- </summary>
- <param name="customEventName"></param>
- <param name="position"></param>
- </member>
- <member name="M:UnityEngine.Analytics.Analytics.FlushEvents">
- <summary>
- <para>Attempts to flush immediately all queued analytics events to the network and filesystem cache if possible (optional).</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Analytics.Analytics.RegisterEvent(System.String,System.Int32,System.Int32,System.String,System.String)">
- <summary>
- <para>This API is used for registering a Runtime Analytics event. It is meant for internal use only and is likely to change in the future. User code should never use this API.</para>
- </summary>
- <param name="eventName">Name of the event.</param>
- <param name="maxEventPerHour">Hourly limit for this event name.</param>
- <param name="maxItems">Maximum number of items in this event.</param>
- <param name="vendorKey">Vendor key name.</param>
- <param name="prefix">Optional event name prefix value.</param>
- <param name="ver">Event version number.</param>
- </member>
- <member name="M:UnityEngine.Analytics.Analytics.RegisterEvent(System.String,System.Int32,System.Int32,System.String,System.Int32,System.String)">
- <summary>
- <para>This API is used for registering a Runtime Analytics event. It is meant for internal use only and is likely to change in the future. User code should never use this API.</para>
- </summary>
- <param name="eventName">Name of the event.</param>
- <param name="maxEventPerHour">Hourly limit for this event name.</param>
- <param name="maxItems">Maximum number of items in this event.</param>
- <param name="vendorKey">Vendor key name.</param>
- <param name="prefix">Optional event name prefix value.</param>
- <param name="ver">Event version number.</param>
- </member>
- <member name="M:UnityEngine.Analytics.Analytics.SendEvent(System.String,System.Object,System.Int32,System.String)">
- <summary>
- <para>This API is used to send a Runtime Analytics event. It is meant for internal use only and is likely to change in the future. User code should never use this API.</para>
- </summary>
- <param name="eventName">Name of the event.</param>
- <param name="ver">Event version number.</param>
- <param name="prefix">Optional event name prefix value.</param>
- <param name="parameters">Additional event data.</param>
- </member>
- <member name="M:UnityEngine.Analytics.Analytics.SetUserBirthYear(System.Int32)">
- <summary>
- <para>User Demographics (optional).</para>
- </summary>
- <param name="birthYear">Birth year of user. Must be 4-digit year format, only.</param>
- </member>
- <member name="M:UnityEngine.Analytics.Analytics.SetUserGender(UnityEngine.Analytics.Gender)">
- <summary>
- <para>User Demographics (optional).</para>
- </summary>
- <param name="gender">Gender of user can be "Female", "Male", or "Unknown".</param>
- </member>
- <member name="M:UnityEngine.Analytics.Analytics.SetUserId(System.String)">
- <summary>
- <para>User Demographics (optional).</para>
- </summary>
- <param name="userId">User id.</param>
- </member>
- <member name="M:UnityEngine.Analytics.Analytics.Transaction(System.String,System.Decimal,System.String)">
- <summary>
- <para>Tracking Monetization (optional).</para>
- </summary>
- <param name="productId">The id of the purchased item.</param>
- <param name="amount">The price of the item.</param>
- <param name="currency">Abbreviation of the currency used for the transaction. For example “USD” (United States Dollars). See http:en.wikipedia.orgwikiISO_4217 for a standardized list of currency abbreviations.</param>
- <param name="receiptPurchaseData">Receipt data (iOS) receipt ID (android) for in-app purchases to verify purchases with Apple iTunes / Google Play. Use null in the absence of receipts.</param>
- <param name="signature">Android receipt signature. If using native Android use the INAPP_DATA_SIGNATURE string containing the signature of the purchase data that was signed with the private key of the developer. The data signature uses the RSASSA-PKCS1-v1_5 scheme. Pass in null in absence of a signature.</param>
- <param name="usingIAPService">Set to true when using UnityIAP.</param>
- </member>
- <member name="M:UnityEngine.Analytics.Analytics.Transaction(System.String,System.Decimal,System.String,System.String,System.String)">
- <summary>
- <para>Tracking Monetization (optional).</para>
- </summary>
- <param name="productId">The id of the purchased item.</param>
- <param name="amount">The price of the item.</param>
- <param name="currency">Abbreviation of the currency used for the transaction. For example “USD” (United States Dollars). See http:en.wikipedia.orgwikiISO_4217 for a standardized list of currency abbreviations.</param>
- <param name="receiptPurchaseData">Receipt data (iOS) receipt ID (android) for in-app purchases to verify purchases with Apple iTunes / Google Play. Use null in the absence of receipts.</param>
- <param name="signature">Android receipt signature. If using native Android use the INAPP_DATA_SIGNATURE string containing the signature of the purchase data that was signed with the private key of the developer. The data signature uses the RSASSA-PKCS1-v1_5 scheme. Pass in null in absence of a signature.</param>
- <param name="usingIAPService">Set to true when using UnityIAP.</param>
- </member>
- <member name="M:UnityEngine.Analytics.Analytics.Transaction(System.String,System.Decimal,System.String,System.String,System.String,System.Boolean)">
- <summary>
- <para>Tracking Monetization (optional).</para>
- </summary>
- <param name="productId">The id of the purchased item.</param>
- <param name="amount">The price of the item.</param>
- <param name="currency">Abbreviation of the currency used for the transaction. For example “USD” (United States Dollars). See http:en.wikipedia.orgwikiISO_4217 for a standardized list of currency abbreviations.</param>
- <param name="receiptPurchaseData">Receipt data (iOS) receipt ID (android) for in-app purchases to verify purchases with Apple iTunes / Google Play. Use null in the absence of receipts.</param>
- <param name="signature">Android receipt signature. If using native Android use the INAPP_DATA_SIGNATURE string containing the signature of the purchase data that was signed with the private key of the developer. The data signature uses the RSASSA-PKCS1-v1_5 scheme. Pass in null in absence of a signature.</param>
- <param name="usingIAPService">Set to true when using UnityIAP.</param>
- </member>
- <member name="T:UnityEngine.Analytics.AnalyticsResult">
- <summary>
- <para>Analytics API result.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Analytics.AnalyticsResult.AnalyticsDisabled">
- <summary>
- <para>Analytics API result: Analytics is disabled.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Analytics.AnalyticsResult.InvalidData">
- <summary>
- <para>Analytics API result: Invalid argument value.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Analytics.AnalyticsResult.NotInitialized">
- <summary>
- <para>Analytics API result: Analytics not initialized.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Analytics.AnalyticsResult.Ok">
- <summary>
- <para>Analytics API result: Success.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Analytics.AnalyticsResult.SizeLimitReached">
- <summary>
- <para>Analytics API result: Argument size limit.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Analytics.AnalyticsResult.TooManyItems">
- <summary>
- <para>Analytics API result: Too many parameters.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Analytics.AnalyticsResult.TooManyRequests">
- <summary>
- <para>Analytics API result: Too many requests.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Analytics.AnalyticsResult.UnsupportedPlatform">
- <summary>
- <para>Analytics API result: This platform doesn't support Analytics.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Analytics.AnalyticsSessionInfo">
- <summary>
- <para>Accesses for Analytics session information (common for all game instances).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Analytics.AnalyticsSessionInfo.sessionElapsedTime">
- <summary>
- <para>Session time since the begining of player game session.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Analytics.AnalyticsSessionInfo.sessionId">
- <summary>
- <para>Session id is used for tracking player game session.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Analytics.AnalyticsSessionInfo.sessionState">
- <summary>
- <para>Session state.</para>
- </summary>
- </member>
- <member name="?:UnityEngine.Analytics.AnalyticsSessionInfo.sessionStateChanged(UnityEngine.Analytics.AnalyticsSessionInfo/SessionStateChanged)">
- <summary>
- <para>This event occurs when a Analytics session state changes.</para>
- </summary>
- <param name="value"></param>
- </member>
- <member name="P:UnityEngine.Analytics.AnalyticsSessionInfo.userId">
- <summary>
- <para>UserId is random GUID to track a player and is persisted across game session.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Analytics.AnalyticsSessionInfo.SessionStateChanged">
- <summary>
- <para>This event occurs when a Analytics session state changes.</para>
- </summary>
- <param name="sessionState">Current session state.</param>
- <param name="sessionId">Current session id.</param>
- <param name="sessionElapsedTime">Game player current session time.</param>
- <param name="sessionChanged">Set to true when sessionId has changed.</param>
- </member>
- <member name="T:UnityEngine.Analytics.AnalyticsSessionState">
- <summary>
- <para>Session tracking states.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Analytics.AnalyticsSessionState.kSessionPaused">
- <summary>
- <para>Session tracking has paused.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Analytics.AnalyticsSessionState.kSessionResumed">
- <summary>
- <para>Session tracking has resumed.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Analytics.AnalyticsSessionState.kSessionStarted">
- <summary>
- <para>Session tracking has started.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Analytics.AnalyticsSessionState.kSessionStopped">
- <summary>
- <para>Session tracking has stopped.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Analytics.Gender">
- <summary>
- <para>User Demographics: Gender of a user.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Analytics.Gender.Female">
- <summary>
- <para>User Demographics: Female Gender of a user.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Analytics.Gender.Male">
- <summary>
- <para>User Demographics: Male Gender of a user.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Analytics.Gender.Unknown">
- <summary>
- <para>User Demographics: Unknown Gender of a user.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.RemoteSettings">
- <summary>
- <para>Provides access to your remote settings.</para>
- </summary>
- </member>
- <member name="?:UnityEngine.RemoteSettings.BeforeFetchFromServer(System.Action)">
- <summary>
- <para>Dispatched before the RemoteSettings object makes the network request for the latest settings.</para>
- </summary>
- <param name="value"></param>
- </member>
- <member name="?:UnityEngine.RemoteSettings.Completed(System.Action`3&lt;System.Boolean,System.Boolean,System.Int32&gt;)">
- <summary>
- <para>Dispatched when the network request made by the RemoteSettings object to fetch the remote configuration file is complete.</para>
- </summary>
- <param name="value"></param>
- </member>
- <member name="M:UnityEngine.RemoteSettings.ForceUpdate">
- <summary>
- <para>Forces the game to download the newest settings from the server and update its values.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.RemoteSettings.GetBool(System.String)">
- <summary>
- <para>Gets the value corresponding to remote setting identified by key, if it exists.</para>
- </summary>
- <param name="key">The key identifying the setting.</param>
- <param name="defaultValue">The default value to use if the setting identified by the key parameter cannot be found or is unavailable.</param>
- <returns>
- <para>The current value of the setting identified by key, or the default value.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.RemoteSettings.GetBool(System.String,System.Boolean)">
- <summary>
- <para>Gets the value corresponding to remote setting identified by key, if it exists.</para>
- </summary>
- <param name="key">The key identifying the setting.</param>
- <param name="defaultValue">The default value to use if the setting identified by the key parameter cannot be found or is unavailable.</param>
- <returns>
- <para>The current value of the setting identified by key, or the default value.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.RemoteSettings.GetCount">
- <summary>
- <para>Gets the number of keys in the remote settings configuration.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.RemoteSettings.GetFloat(System.String)">
- <summary>
- <para>Gets the value corresponding to remote setting identified by key, if it exists.</para>
- </summary>
- <param name="key">The key identifying the setting.</param>
- <param name="defaultValue">The default value to use if the setting identified by the key parameter cannot be found or is unavailable.</param>
- <returns>
- <para>The current value of the setting identified by key, or the default value.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.RemoteSettings.GetFloat(System.String,System.Single)">
- <summary>
- <para>Gets the value corresponding to remote setting identified by key, if it exists.</para>
- </summary>
- <param name="key">The key identifying the setting.</param>
- <param name="defaultValue">The default value to use if the setting identified by the key parameter cannot be found or is unavailable.</param>
- <returns>
- <para>The current value of the setting identified by key, or the default value.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.RemoteSettings.GetInt(System.String)">
- <summary>
- <para>Gets the value corresponding to remote setting identified by key, if it exists.</para>
- </summary>
- <param name="key">The key identifying the setting.</param>
- <param name="defaultValue">The default value to use if the setting identified by the key parameter cannot be found or is unavailable.</param>
- <returns>
- <para>The current value of the setting identified by key, or the default value.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.RemoteSettings.GetInt(System.String,System.Int32)">
- <summary>
- <para>Gets the value corresponding to remote setting identified by key, if it exists.</para>
- </summary>
- <param name="key">The key identifying the setting.</param>
- <param name="defaultValue">The default value to use if the setting identified by the key parameter cannot be found or is unavailable.</param>
- <returns>
- <para>The current value of the setting identified by key, or the default value.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.RemoteSettings.GetKeys">
- <summary>
- <para>Gets an array containing all the keys in the remote settings configuration.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.RemoteSettings.GetLong(System.String,System.Int64)">
- <summary>
- <para>Gets the value corresponding to remote setting identified by key, if it exists.</para>
- </summary>
- <param name="key">The key identifying the setting.</param>
- <param name="defaultValue">The default value to use if the setting identified by the key parameter cannot be found or is unavailable.</param>
- <returns>
- <para>The current value of the setting identified by key, or the default value.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.RemoteSettings.GetString(System.String)">
- <summary>
- <para>Gets the value corresponding to remote setting identified by key, if it exists.</para>
- </summary>
- <param name="key">The key identifying the setting.</param>
- <param name="defaultValue">The default value to use if the setting identified by the key parameter cannot be found or is unavailable.</param>
- <returns>
- <para>The current value of the setting identified by key, or the default value.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.RemoteSettings.GetString(System.String,System.String)">
- <summary>
- <para>Gets the value corresponding to remote setting identified by key, if it exists.</para>
- </summary>
- <param name="key">The key identifying the setting.</param>
- <param name="defaultValue">The default value to use if the setting identified by the key parameter cannot be found or is unavailable.</param>
- <returns>
- <para>The current value of the setting identified by key, or the default value.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.RemoteSettings.HasKey(System.String)">
- <summary>
- <para>Reports whether the specified key exists in the remote settings configuration.</para>
- </summary>
- <param name="key">The key identifying the setting.</param>
- <returns>
- <para>True, if the key exists.</para>
- </returns>
- </member>
- <member name="?:UnityEngine.RemoteSettings.Updated(UnityEngine.RemoteSettings/UpdatedEventHandler)">
- <summary>
- <para>Dispatched when a remote settings configuration is fetched and successfully parsed from the server or from local cache.</para>
- </summary>
- <param name="value"></param>
- </member>
- <member name="T:UnityEngine.RemoteSettings.UpdatedEventHandler">
- <summary>
- <para>Defines the delegate signature for handling RemoteSettings.Updated events.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.RemoteSettings.WasLastUpdatedFromServer">
- <summary>
- <para>Reports whether or not the settings available from the RemoteSettings object were received from the Analytics Service during the current session.</para>
- </summary>
- <returns>
- <para>True, if the remote settings file was received from the Analytics Service in the current session. False, if the remote settings file was received during an earlier session and cached.</para>
- </returns>
- </member>
- <member name="A:UnityEngine.UnityAnalyticsModule">
- <summary>
- <para>The UnityAnalytics module implements APIs required to use Unity Analytics.</para>
- </summary>
- </member>
- </members>
-</doc>
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.UnityConnectModule.dll b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.UnityConnectModule.dll
deleted file mode 100644
index f36aaf8..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.UnityConnectModule.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.UnityConnectModule.xml b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.UnityConnectModule.xml
deleted file mode 100644
index 8012687..0000000
--- a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.UnityConnectModule.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
-<doc>
- <members>
- <assembly>
- <name>UnityEngine.UnityConnectModule</name>
- </assembly>
- </members>
-</doc>
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.UnityWebRequestAssetBundleModule.dll b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.UnityWebRequestAssetBundleModule.dll
deleted file mode 100644
index db05f33..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.UnityWebRequestAssetBundleModule.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.UnityWebRequestAssetBundleModule.xml b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.UnityWebRequestAssetBundleModule.xml
deleted file mode 100644
index 8c4cc36..0000000
--- a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.UnityWebRequestAssetBundleModule.xml
+++ /dev/null
@@ -1,226 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
-<doc>
- <members>
- <assembly>
- <name>UnityEngine.UnityWebRequestAssetBundleModule</name>
- </assembly>
- <member name="T:UnityEngine.Networking.DownloadHandlerAssetBundle">
- <summary>
- <para>A DownloadHandler subclass specialized for downloading AssetBundles.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.DownloadHandlerAssetBundle.assetBundle">
- <summary>
- <para>Returns the downloaded AssetBundle, or null. (Read Only)</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Networking.DownloadHandlerAssetBundle.#ctor(System.String,System.UInt32)">
- <summary>
- <para>Standard constructor for non-cached asset bundles.</para>
- </summary>
- <param name="url">The nominal (pre-redirect) URL at which the asset bundle is located.</param>
- <param name="crc">A checksum to compare to the downloaded data for integrity checking, or zero to skip integrity checking.</param>
- </member>
- <member name="M:UnityEngine.Networking.DownloadHandlerAssetBundle.#ctor(System.String,System.UInt32,System.UInt32)">
- <summary>
- <para>Simple versioned constructor. Caches downloaded asset bundles.</para>
- </summary>
- <param name="url">The nominal (pre-redirect) URL at which the asset bundle is located.</param>
- <param name="crc">A checksum to compare to the downloaded data for integrity checking, or zero to skip integrity checking.</param>
- <param name="version">Current version number of the asset bundle at url. Increment to redownload.</param>
- </member>
- <member name="M:UnityEngine.Networking.DownloadHandlerAssetBundle.#ctor(System.String,UnityEngine.Hash128,System.UInt32)">
- <summary>
- <para>Versioned constructor. Caches downloaded asset bundles.</para>
- </summary>
- <param name="url">The nominal (pre-redirect) URL at which the asset bundle is located.</param>
- <param name="crc">A checksum to compare to the downloaded data for integrity checking, or zero to skip integrity checking.</param>
- <param name="hash">A hash object defining the version of the asset bundle.</param>
- </member>
- <member name="M:UnityEngine.Networking.DownloadHandlerAssetBundle.GetContent(UnityEngine.Networking.UnityWebRequest)">
- <summary>
- <para>Returns the downloaded AssetBundle, or null.</para>
- </summary>
- <param name="www">A finished UnityWebRequest object with DownloadHandlerAssetBundle attached.</param>
- <returns>
- <para>The same as DownloadHandlerAssetBundle.assetBundle</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.DownloadHandlerAssetBundle.GetData">
- <summary>
- <para>Not implemented. Throws &lt;a href="http:msdn.microsoft.comen-uslibrarysystem.notsupportedexception"&gt;NotSupportedException&lt;a&gt;.</para>
- </summary>
- <returns>
- <para>Not implemented.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.DownloadHandlerAssetBundle.GetText">
- <summary>
- <para>Not implemented. Throws &lt;a href="http:msdn.microsoft.comen-uslibrarysystem.notsupportedexception"&gt;NotSupportedException&lt;a&gt;.</para>
- </summary>
- <returns>
- <para>Not implemented.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.Networking.UnityWebRequestAssetBundle">
- <summary>
- <para>Helpers for downloading asset bundles using UnityWebRequest.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Networking.UnityWebRequestAssetBundle.GetAssetBundle(System.String)">
- <summary>
- <para>Creates a UnityWebRequest optimized for downloading a Unity Asset Bundle via HTTP GET.</para>
- </summary>
- <param name="uri">The URI of the asset bundle to download.</param>
- <param name="crc">If nonzero, this number will be compared to the checksum of the downloaded asset bundle data. If the CRCs do not match, an error will be logged and the asset bundle will not be loaded. If set to zero, CRC checking will be skipped.</param>
- <param name="version">An integer version number, which will be compared to the cached version of the asset bundle to download. Increment this number to force Unity to redownload a cached asset bundle.
-
-Analogous to the version parameter for WWW.LoadFromCacheOrDownload.</param>
- <param name="hash">A version hash. If this hash does not match the hash for the cached version of this asset bundle, the asset bundle will be redownloaded.</param>
- <param name="cachedAssetBundle">A structure used to download a given version of AssetBundle to a customized cache path.</param>
- <returns>
- <para>A UnityWebRequest configured to downloading a Unity Asset Bundle.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.UnityWebRequestAssetBundle.GetAssetBundle(System.Uri)">
- <summary>
- <para>Creates a UnityWebRequest optimized for downloading a Unity Asset Bundle via HTTP GET.</para>
- </summary>
- <param name="uri">The URI of the asset bundle to download.</param>
- <param name="crc">If nonzero, this number will be compared to the checksum of the downloaded asset bundle data. If the CRCs do not match, an error will be logged and the asset bundle will not be loaded. If set to zero, CRC checking will be skipped.</param>
- <param name="version">An integer version number, which will be compared to the cached version of the asset bundle to download. Increment this number to force Unity to redownload a cached asset bundle.
-
-Analogous to the version parameter for WWW.LoadFromCacheOrDownload.</param>
- <param name="hash">A version hash. If this hash does not match the hash for the cached version of this asset bundle, the asset bundle will be redownloaded.</param>
- <param name="cachedAssetBundle">A structure used to download a given version of AssetBundle to a customized cache path.</param>
- <returns>
- <para>A UnityWebRequest configured to downloading a Unity Asset Bundle.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.UnityWebRequestAssetBundle.GetAssetBundle(System.String,System.UInt32)">
- <summary>
- <para>Creates a UnityWebRequest optimized for downloading a Unity Asset Bundle via HTTP GET.</para>
- </summary>
- <param name="uri">The URI of the asset bundle to download.</param>
- <param name="crc">If nonzero, this number will be compared to the checksum of the downloaded asset bundle data. If the CRCs do not match, an error will be logged and the asset bundle will not be loaded. If set to zero, CRC checking will be skipped.</param>
- <param name="version">An integer version number, which will be compared to the cached version of the asset bundle to download. Increment this number to force Unity to redownload a cached asset bundle.
-
-Analogous to the version parameter for WWW.LoadFromCacheOrDownload.</param>
- <param name="hash">A version hash. If this hash does not match the hash for the cached version of this asset bundle, the asset bundle will be redownloaded.</param>
- <param name="cachedAssetBundle">A structure used to download a given version of AssetBundle to a customized cache path.</param>
- <returns>
- <para>A UnityWebRequest configured to downloading a Unity Asset Bundle.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.UnityWebRequestAssetBundle.GetAssetBundle(System.Uri,System.UInt32)">
- <summary>
- <para>Creates a UnityWebRequest optimized for downloading a Unity Asset Bundle via HTTP GET.</para>
- </summary>
- <param name="uri">The URI of the asset bundle to download.</param>
- <param name="crc">If nonzero, this number will be compared to the checksum of the downloaded asset bundle data. If the CRCs do not match, an error will be logged and the asset bundle will not be loaded. If set to zero, CRC checking will be skipped.</param>
- <param name="version">An integer version number, which will be compared to the cached version of the asset bundle to download. Increment this number to force Unity to redownload a cached asset bundle.
-
-Analogous to the version parameter for WWW.LoadFromCacheOrDownload.</param>
- <param name="hash">A version hash. If this hash does not match the hash for the cached version of this asset bundle, the asset bundle will be redownloaded.</param>
- <param name="cachedAssetBundle">A structure used to download a given version of AssetBundle to a customized cache path.</param>
- <returns>
- <para>A UnityWebRequest configured to downloading a Unity Asset Bundle.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.UnityWebRequestAssetBundle.GetAssetBundle(System.String,System.UInt32,System.UInt32)">
- <summary>
- <para>Creates a UnityWebRequest optimized for downloading a Unity Asset Bundle via HTTP GET.</para>
- </summary>
- <param name="uri">The URI of the asset bundle to download.</param>
- <param name="crc">If nonzero, this number will be compared to the checksum of the downloaded asset bundle data. If the CRCs do not match, an error will be logged and the asset bundle will not be loaded. If set to zero, CRC checking will be skipped.</param>
- <param name="version">An integer version number, which will be compared to the cached version of the asset bundle to download. Increment this number to force Unity to redownload a cached asset bundle.
-
-Analogous to the version parameter for WWW.LoadFromCacheOrDownload.</param>
- <param name="hash">A version hash. If this hash does not match the hash for the cached version of this asset bundle, the asset bundle will be redownloaded.</param>
- <param name="cachedAssetBundle">A structure used to download a given version of AssetBundle to a customized cache path.</param>
- <returns>
- <para>A UnityWebRequest configured to downloading a Unity Asset Bundle.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.UnityWebRequestAssetBundle.GetAssetBundle(System.Uri,System.UInt32,System.UInt32)">
- <summary>
- <para>Creates a UnityWebRequest optimized for downloading a Unity Asset Bundle via HTTP GET.</para>
- </summary>
- <param name="uri">The URI of the asset bundle to download.</param>
- <param name="crc">If nonzero, this number will be compared to the checksum of the downloaded asset bundle data. If the CRCs do not match, an error will be logged and the asset bundle will not be loaded. If set to zero, CRC checking will be skipped.</param>
- <param name="version">An integer version number, which will be compared to the cached version of the asset bundle to download. Increment this number to force Unity to redownload a cached asset bundle.
-
-Analogous to the version parameter for WWW.LoadFromCacheOrDownload.</param>
- <param name="hash">A version hash. If this hash does not match the hash for the cached version of this asset bundle, the asset bundle will be redownloaded.</param>
- <param name="cachedAssetBundle">A structure used to download a given version of AssetBundle to a customized cache path.</param>
- <returns>
- <para>A UnityWebRequest configured to downloading a Unity Asset Bundle.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.UnityWebRequestAssetBundle.GetAssetBundle(System.String,UnityEngine.Hash128,System.UInt32)">
- <summary>
- <para>Creates a UnityWebRequest optimized for downloading a Unity Asset Bundle via HTTP GET.</para>
- </summary>
- <param name="uri">The URI of the asset bundle to download.</param>
- <param name="crc">If nonzero, this number will be compared to the checksum of the downloaded asset bundle data. If the CRCs do not match, an error will be logged and the asset bundle will not be loaded. If set to zero, CRC checking will be skipped.</param>
- <param name="version">An integer version number, which will be compared to the cached version of the asset bundle to download. Increment this number to force Unity to redownload a cached asset bundle.
-
-Analogous to the version parameter for WWW.LoadFromCacheOrDownload.</param>
- <param name="hash">A version hash. If this hash does not match the hash for the cached version of this asset bundle, the asset bundle will be redownloaded.</param>
- <param name="cachedAssetBundle">A structure used to download a given version of AssetBundle to a customized cache path.</param>
- <returns>
- <para>A UnityWebRequest configured to downloading a Unity Asset Bundle.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.UnityWebRequestAssetBundle.GetAssetBundle(System.Uri,UnityEngine.Hash128,System.UInt32)">
- <summary>
- <para>Creates a UnityWebRequest optimized for downloading a Unity Asset Bundle via HTTP GET.</para>
- </summary>
- <param name="uri">The URI of the asset bundle to download.</param>
- <param name="crc">If nonzero, this number will be compared to the checksum of the downloaded asset bundle data. If the CRCs do not match, an error will be logged and the asset bundle will not be loaded. If set to zero, CRC checking will be skipped.</param>
- <param name="version">An integer version number, which will be compared to the cached version of the asset bundle to download. Increment this number to force Unity to redownload a cached asset bundle.
-
-Analogous to the version parameter for WWW.LoadFromCacheOrDownload.</param>
- <param name="hash">A version hash. If this hash does not match the hash for the cached version of this asset bundle, the asset bundle will be redownloaded.</param>
- <param name="cachedAssetBundle">A structure used to download a given version of AssetBundle to a customized cache path.</param>
- <returns>
- <para>A UnityWebRequest configured to downloading a Unity Asset Bundle.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.UnityWebRequestAssetBundle.GetAssetBundle(System.String,UnityEngine.CachedAssetBundle,System.UInt32)">
- <summary>
- <para>Creates a UnityWebRequest optimized for downloading a Unity Asset Bundle via HTTP GET.</para>
- </summary>
- <param name="uri">The URI of the asset bundle to download.</param>
- <param name="crc">If nonzero, this number will be compared to the checksum of the downloaded asset bundle data. If the CRCs do not match, an error will be logged and the asset bundle will not be loaded. If set to zero, CRC checking will be skipped.</param>
- <param name="version">An integer version number, which will be compared to the cached version of the asset bundle to download. Increment this number to force Unity to redownload a cached asset bundle.
-
-Analogous to the version parameter for WWW.LoadFromCacheOrDownload.</param>
- <param name="hash">A version hash. If this hash does not match the hash for the cached version of this asset bundle, the asset bundle will be redownloaded.</param>
- <param name="cachedAssetBundle">A structure used to download a given version of AssetBundle to a customized cache path.</param>
- <returns>
- <para>A UnityWebRequest configured to downloading a Unity Asset Bundle.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.UnityWebRequestAssetBundle.GetAssetBundle(System.Uri,UnityEngine.CachedAssetBundle,System.UInt32)">
- <summary>
- <para>Creates a UnityWebRequest optimized for downloading a Unity Asset Bundle via HTTP GET.</para>
- </summary>
- <param name="uri">The URI of the asset bundle to download.</param>
- <param name="crc">If nonzero, this number will be compared to the checksum of the downloaded asset bundle data. If the CRCs do not match, an error will be logged and the asset bundle will not be loaded. If set to zero, CRC checking will be skipped.</param>
- <param name="version">An integer version number, which will be compared to the cached version of the asset bundle to download. Increment this number to force Unity to redownload a cached asset bundle.
-
-Analogous to the version parameter for WWW.LoadFromCacheOrDownload.</param>
- <param name="hash">A version hash. If this hash does not match the hash for the cached version of this asset bundle, the asset bundle will be redownloaded.</param>
- <param name="cachedAssetBundle">A structure used to download a given version of AssetBundle to a customized cache path.</param>
- <returns>
- <para>A UnityWebRequest configured to downloading a Unity Asset Bundle.</para>
- </returns>
- </member>
- <member name="A:UnityEngine.UnityWebRequestAssetBundleModule">
- <summary>
- <para>The UnityWebRequestAudio module provides the DownloadHandlerAssetBundle class to use UnityWebRequest to download Asset Bundles.</para>
- </summary>
- </member>
- </members>
-</doc>
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.UnityWebRequestAudioModule.dll b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.UnityWebRequestAudioModule.dll
deleted file mode 100644
index 5b64fc7..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.UnityWebRequestAudioModule.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.UnityWebRequestAudioModule.xml b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.UnityWebRequestAudioModule.xml
deleted file mode 100644
index 6805836..0000000
--- a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.UnityWebRequestAudioModule.xml
+++ /dev/null
@@ -1,113 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
-<doc>
- <members>
- <assembly>
- <name>UnityEngine.UnityWebRequestAudioModule</name>
- </assembly>
- <member name="T:UnityEngine.Networking.DownloadHandlerAudioClip">
- <summary>
- <para>A DownloadHandler subclass specialized for downloading audio data for use as AudioClip objects.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.DownloadHandlerAudioClip.audioClip">
- <summary>
- <para>Returns the downloaded AudioClip, or null. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.DownloadHandlerAudioClip.compressed">
- <summary>
- <para>Create AudioClip that is compressed in memory.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.DownloadHandlerAudioClip.streamAudio">
- <summary>
- <para>Create streaming AudioClip.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Networking.DownloadHandlerAudioClip.#ctor(System.String,UnityEngine.AudioType)">
- <summary>
- <para>Constructor, specifies what kind of audio data is going to be downloaded.</para>
- </summary>
- <param name="url">The nominal (pre-redirect) URL at which the audio clip is located.</param>
- <param name="audioType">Value to set for AudioClip type.</param>
- </member>
- <member name="M:UnityEngine.Networking.DownloadHandlerAudioClip.GetContent(UnityEngine.Networking.UnityWebRequest)">
- <summary>
- <para>Returns the downloaded AudioClip, or null.</para>
- </summary>
- <param name="www">A finished UnityWebRequest object with DownloadHandlerAudioClip attached.</param>
- <returns>
- <para>The same as DownloadHandlerAudioClip.audioClip</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.DownloadHandlerAudioClip.GetData">
- <summary>
- <para>Called by DownloadHandler.data. Returns a copy of the downloaded clip data as raw bytes.</para>
- </summary>
- <returns>
- <para>A copy of the downloaded data.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.Networking.DownloadHandlerMovieTexture">
- <summary>
- <para>MovieTexture has been deprecated. Refer to the new movie playback solution VideoPlayer.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.DownloadHandlerMovieTexture.movieTexture">
- <summary>
- <para>MovieTexture has been deprecated. Refer to the new movie playback solution VideoPlayer.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Networking.DownloadHandlerMovieTexture.#ctor">
- <summary>
- <para>MovieTexture has been deprecated. Refer to the new movie playback solution VideoPlayer.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Networking.DownloadHandlerMovieTexture.GetContent(UnityEngine.Networking.UnityWebRequest)">
- <summary>
- <para>MovieTexture has been deprecated. Refer to the new movie playback solution VideoPlayer.</para>
- </summary>
- <param name="uwr">A UnityWebRequest with attached DownloadHandlerMovieTexture.</param>
- <returns>
- <para>A MovieTexture created out of downloaded bytes.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.DownloadHandlerMovieTexture.GetData">
- <summary>
- <para>MovieTexture has been deprecated. Refer to the new movie playback solution VideoPlayer.</para>
- </summary>
- <returns>
- <para>Raw downloaded bytes.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.Networking.UnityWebRequestMultimedia">
- <summary>
- <para>Helpers for downloading multimedia files using UnityWebRequest.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Networking.UnityWebRequestMultimedia.GetAudioClip(System.String,UnityEngine.AudioType)">
- <summary>
- <para>Create a UnityWebRequest to download an audio clip via HTTP GET and create an AudioClip based on the retrieved data.</para>
- </summary>
- <param name="uri">The URI of the audio clip to download.</param>
- <param name="audioType">The type of audio encoding for the downloaded audio clip. See AudioType.</param>
- <returns>
- <para>A UnityWebRequest properly configured to download an audio clip and convert it to an AudioClip.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.UnityWebRequestMultimedia.GetMovieTexture(System.String)">
- <summary>
- <para>Create a UnityWebRequest intended to download a movie clip via HTTP GET and create an MovieTexture based on the retrieved data.</para>
- </summary>
- <param name="uri">The URI of the movie clip to download.</param>
- <returns>
- <para>A UnityWebRequest properly configured to download a movie clip and convert it to a MovieTexture.</para>
- </returns>
- </member>
- <member name="A:UnityEngine.UnityWebRequestAudioModule">
- <summary>
- <para>The UnityWebRequestAudio module provides the DownloadHandlerAudioClip class to use UnityWebRequest to download AudioClips.</para>
- </summary>
- </member>
- </members>
-</doc>
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.UnityWebRequestModule.dll b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.UnityWebRequestModule.dll
deleted file mode 100644
index 75cd9d8..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.UnityWebRequestModule.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.UnityWebRequestModule.xml b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.UnityWebRequestModule.xml
deleted file mode 100644
index dde902e..0000000
--- a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.UnityWebRequestModule.xml
+++ /dev/null
@@ -1,947 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
-<doc>
- <members>
- <assembly>
- <name>UnityEngine.UnityWebRequestModule</name>
- </assembly>
- <member name="T:UnityEngine.Networking.CertificateHandler">
- <summary>
- <para>Responsible for rejecting or accepting certificates received on https requests.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Networking.CertificateHandler.Dispose">
- <summary>
- <para>Signals that this [CertificateHandler] is no longer being used, and should clean up any resources it is using.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Networking.CertificateHandler.ValidateCertificate(System.Byte[])">
- <summary>
- <para>Callback, invoked for each leaf certificate sent by the remote server.</para>
- </summary>
- <param name="certificateData">Certificate data in PEM or DER format. If certificate data contains multiple certificates, the first one is the leaf certificate.</param>
- <returns>
- <para>true if the certificate should be accepted, false if not.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.Networking.DownloadHandler">
- <summary>
- <para>Manage and process HTTP response body data received from a remote server.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.DownloadHandler.data">
- <summary>
- <para>Returns the raw bytes downloaded from the remote server, or null. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.DownloadHandler.isDone">
- <summary>
- <para>Returns true if this DownloadHandler has been informed by its parent UnityWebRequest that all data has been received, and this DownloadHandler has completed any necessary post-download processing. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.DownloadHandler.text">
- <summary>
- <para>Convenience property. Returns the bytes from data interpreted as a UTF8 string. (Read Only)</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Networking.DownloadHandler.CompleteContent">
- <summary>
- <para>Callback, invoked when all data has been received from the remote server.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Networking.DownloadHandler.Dispose">
- <summary>
- <para>Signals that this [DownloadHandler] is no longer being used, and should clean up any resources it is using.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Networking.DownloadHandler.GetData">
- <summary>
- <para>Callback, invoked when the data property is accessed.</para>
- </summary>
- <returns>
- <para>Byte array to return as the value of the data property.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.DownloadHandler.GetProgress">
- <summary>
- <para>Callback, invoked when UnityWebRequest.downloadProgress is accessed.</para>
- </summary>
- <returns>
- <para>The return value for UnityWebRequest.downloadProgress.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.DownloadHandler.GetText">
- <summary>
- <para>Callback, invoked when the text property is accessed.</para>
- </summary>
- <returns>
- <para>String to return as the return value of the text property.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.DownloadHandler.ReceiveContentLength(System.Int32)">
- <summary>
- <para>Callback, invoked with a Content-Length header is received.</para>
- </summary>
- <param name="contentLength">The value of the received Content-Length header.</param>
- </member>
- <member name="M:UnityEngine.Networking.DownloadHandler.ReceiveData(System.Byte[],System.Int32)">
- <summary>
- <para>Callback, invoked as data is received from the remote server.</para>
- </summary>
- <param name="data">A buffer containing unprocessed data, received from the remote server.</param>
- <param name="dataLength">The number of bytes in data which are new.</param>
- <returns>
- <para>True if the download should continue, false to abort.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.Networking.DownloadHandlerBuffer">
- <summary>
- <para>A general-purpose DownloadHandler implementation which stores received data in a native byte buffer.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Networking.DownloadHandlerBuffer.#ctor">
- <summary>
- <para>Default constructor.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Networking.DownloadHandlerBuffer.GetContent(UnityEngine.Networking.UnityWebRequest)">
- <summary>
- <para>Returns a copy of the native-memory buffer interpreted as a UTF8 string.</para>
- </summary>
- <param name="www">A finished UnityWebRequest object with DownloadHandlerBuffer attached.</param>
- <returns>
- <para>The same as DownloadHandlerBuffer.text</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.DownloadHandlerBuffer.GetData">
- <summary>
- <para>Returns a copy of the contents of the native-memory data buffer as a byte array.</para>
- </summary>
- <returns>
- <para>A copy of the data which has been downloaded.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.Networking.DownloadHandlerFile">
- <summary>
- <para>Download handler for saving the downloaded data to file.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.DownloadHandlerFile.removeFileOnAbort">
- <summary>
- <para>Should the created file be removed if download is aborted (manually or due to an error). Default: false.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Networking.DownloadHandlerFile.#ctor(System.String)">
- <summary>
- <para>Creates a new instance and a file on disk where downloaded data will be written to.</para>
- </summary>
- <param name="path">Path to file to be written.</param>
- </member>
- <member name="T:UnityEngine.Networking.DownloadHandlerScript">
- <summary>
- <para>An abstract base class for user-created scripting-driven DownloadHandler implementations.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Networking.DownloadHandlerScript.#ctor">
- <summary>
- <para>Create a DownloadHandlerScript which allocates new buffers when passing data to callbacks.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Networking.DownloadHandlerScript.#ctor(System.Byte[])">
- <summary>
- <para>Create a DownloadHandlerScript which reuses a preallocated buffer to pass data to callbacks.</para>
- </summary>
- <param name="preallocatedBuffer">A byte buffer into which data will be copied, for use by DownloadHandler.ReceiveData.</param>
- </member>
- <member name="?:UnityEngine.Networking.IMultipartFormSection">
- <summary>
- <para>An interface for composition of data into multipart forms.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.IMultipartFormSection.contentType">
- <summary>
- <para>Returns the value to use in the Content-Type header for this form section.</para>
- </summary>
- <returns>
- <para>The value to use in the Content-Type header, or null.</para>
- </returns>
- </member>
- <member name="P:UnityEngine.Networking.IMultipartFormSection.fileName">
- <summary>
- <para>Returns a string denoting the desired filename of this section on the destination server.</para>
- </summary>
- <returns>
- <para>The desired file name of this section, or null if this is not a file section.</para>
- </returns>
- </member>
- <member name="P:UnityEngine.Networking.IMultipartFormSection.sectionData">
- <summary>
- <para>Returns the raw binary data contained in this section. Must not return null or a zero-length array.</para>
- </summary>
- <returns>
- <para>The raw binary data contained in this section. Must not be null or empty.</para>
- </returns>
- </member>
- <member name="P:UnityEngine.Networking.IMultipartFormSection.sectionName">
- <summary>
- <para>Returns the name of this section, if any.</para>
- </summary>
- <returns>
- <para>The section's name, or null.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.Networking.MultipartFormDataSection">
- <summary>
- <para>A helper object for form sections containing generic, non-file data.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.MultipartFormDataSection.contentType">
- <summary>
- <para>Returns the value to use in this section's Content-Type header.</para>
- </summary>
- <returns>
- <para>The Content-Type header for this section, or null.</para>
- </returns>
- </member>
- <member name="P:UnityEngine.Networking.MultipartFormDataSection.fileName">
- <summary>
- <para>Returns a string denoting the desired filename of this section on the destination server.</para>
- </summary>
- <returns>
- <para>The desired file name of this section, or null if this is not a file section.</para>
- </returns>
- </member>
- <member name="P:UnityEngine.Networking.MultipartFormDataSection.sectionData">
- <summary>
- <para>Returns the raw binary data contained in this section. Will not return null or a zero-length array.</para>
- </summary>
- <returns>
- <para>The raw binary data contained in this section. Will not be null or empty.</para>
- </returns>
- </member>
- <member name="P:UnityEngine.Networking.MultipartFormDataSection.sectionName">
- <summary>
- <para>Returns the name of this section, if any.</para>
- </summary>
- <returns>
- <para>The section's name, or null.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.MultipartFormDataSection.#ctor(System.Byte[])">
- <summary>
- <para>Raw data section, unnamed and no Content-Type header.</para>
- </summary>
- <param name="data">Data payload of this section.</param>
- </member>
- <member name="M:UnityEngine.Networking.MultipartFormDataSection.#ctor(System.String,System.Byte[])">
- <summary>
- <para>Raw data section with a section name, no Content-Type header.</para>
- </summary>
- <param name="name">Section name.</param>
- <param name="data">Data payload of this section.</param>
- </member>
- <member name="M:UnityEngine.Networking.MultipartFormDataSection.#ctor(System.String,System.Byte[],System.String)">
- <summary>
- <para>A raw data section with a section name and a Content-Type header.</para>
- </summary>
- <param name="name">Section name.</param>
- <param name="data">Data payload of this section.</param>
- <param name="contentType">The value for this section's Content-Type header.</param>
- </member>
- <member name="M:UnityEngine.Networking.MultipartFormDataSection.#ctor(System.String,System.String,System.Text.Encoding,System.String)">
- <summary>
- <para>A named raw data section whose payload is derived from a string, with a Content-Type header.</para>
- </summary>
- <param name="name">Section name.</param>
- <param name="data">String data payload for this section.</param>
- <param name="contentType">The value for this section's Content-Type header.</param>
- <param name="encoding">An encoding to marshal data to or from raw bytes.</param>
- </member>
- <member name="M:UnityEngine.Networking.MultipartFormDataSection.#ctor(System.String,System.String,System.String)">
- <summary>
- <para>A named raw data section whose payload is derived from a UTF8 string, with a Content-Type header.</para>
- </summary>
- <param name="name">Section name.</param>
- <param name="data">String data payload for this section.</param>
- <param name="contentType">C.</param>
- </member>
- <member name="M:UnityEngine.Networking.MultipartFormDataSection.#ctor(System.String,System.String)">
- <summary>
- <para>A names raw data section whose payload is derived from a UTF8 string, with a default Content-Type.</para>
- </summary>
- <param name="name">Section name.</param>
- <param name="data">String data payload for this section.</param>
- </member>
- <member name="M:UnityEngine.Networking.MultipartFormDataSection.#ctor(System.String)">
- <summary>
- <para>An anonymous raw data section whose payload is derived from a UTF8 string, with a default Content-Type.</para>
- </summary>
- <param name="data">String data payload for this section.</param>
- </member>
- <member name="T:UnityEngine.Networking.MultipartFormFileSection">
- <summary>
- <para>A helper object for adding file uploads to multipart forms via the [IMultipartFormSection] API.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.MultipartFormFileSection.contentType">
- <summary>
- <para>Returns the value of the section's Content-Type header.</para>
- </summary>
- <returns>
- <para>The Content-Type header for this section, or null.</para>
- </returns>
- </member>
- <member name="P:UnityEngine.Networking.MultipartFormFileSection.fileName">
- <summary>
- <para>Returns a string denoting the desired filename of this section on the destination server.</para>
- </summary>
- <returns>
- <para>The desired file name of this section, or null if this is not a file section.</para>
- </returns>
- </member>
- <member name="P:UnityEngine.Networking.MultipartFormFileSection.sectionData">
- <summary>
- <para>Returns the raw binary data contained in this section. Will not return null or a zero-length array.</para>
- </summary>
- <returns>
- <para>The raw binary data contained in this section. Will not be null or empty.</para>
- </returns>
- </member>
- <member name="P:UnityEngine.Networking.MultipartFormFileSection.sectionName">
- <summary>
- <para>Returns the name of this section, if any.</para>
- </summary>
- <returns>
- <para>The section's name, or null.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.MultipartFormFileSection.#ctor(System.String,System.Byte[],System.String,System.String)">
- <summary>
- <para>Contains a named file section based on the raw bytes from data, with a custom Content-Type and file name.</para>
- </summary>
- <param name="name">Name of this form section.</param>
- <param name="data">Raw contents of the file to upload.</param>
- <param name="fileName">Name of the file uploaded by this form section.</param>
- <param name="contentType">The value for this section's Content-Type header.</param>
- </member>
- <member name="M:UnityEngine.Networking.MultipartFormFileSection.#ctor(System.Byte[])">
- <summary>
- <para>Contains an anonymous file section based on the raw bytes from data, assigns a default Content-Type and file name.</para>
- </summary>
- <param name="data">Raw contents of the file to upload.</param>
- </member>
- <member name="M:UnityEngine.Networking.MultipartFormFileSection.#ctor(System.String,System.Byte[])">
- <summary>
- <para>Contains an anonymous file section based on the raw bytes from data with a specific file name. Assigns a default Content-Type.</para>
- </summary>
- <param name="data">Raw contents of the file to upload.</param>
- <param name="fileName">Name of the file uploaded by this form section.</param>
- </member>
- <member name="M:UnityEngine.Networking.MultipartFormFileSection.#ctor(System.String,System.String,System.Text.Encoding,System.String)">
- <summary>
- <para>Contains a named file section with data drawn from data, as marshaled by dataEncoding. Assigns a specific file name from fileName and a default Content-Type.</para>
- </summary>
- <param name="name">Name of this form section.</param>
- <param name="data">Contents of the file to upload.</param>
- <param name="dataEncoding">A string encoding.</param>
- <param name="fileName">Name of the file uploaded by this form section.</param>
- </member>
- <member name="M:UnityEngine.Networking.MultipartFormFileSection.#ctor(System.String,System.Text.Encoding,System.String)">
- <summary>
- <para>An anonymous file section with data drawn from data, as marshaled by dataEncoding. Assigns a specific file name from fileName and a default Content-Type.</para>
- </summary>
- <param name="data">Contents of the file to upload.</param>
- <param name="dataEncoding">A string encoding.</param>
- <param name="fileName">Name of the file uploaded by this form section.</param>
- </member>
- <member name="M:UnityEngine.Networking.MultipartFormFileSection.#ctor(System.String,System.String)">
- <summary>
- <para>An anonymous file section with data drawn from the UTF8 string data. Assigns a specific file name from fileName and a default Content-Type.</para>
- </summary>
- <param name="data">Contents of the file to upload.</param>
- <param name="fileName">Name of the file uploaded by this form section.</param>
- </member>
- <member name="T:UnityEngine.Networking.UnityWebRequest">
- <summary>
- <para>The UnityWebRequest object is used to communicate with web servers.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.UnityWebRequest.certificateHandler">
- <summary>
- <para>Holds a reference to a CertificateHandler object, which manages certificate validation for this UnityWebRequest.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.UnityWebRequest.chunkedTransfer">
- <summary>
- <para>Indicates whether the UnityWebRequest system should employ the HTTP/1.1 chunked-transfer encoding method.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.UnityWebRequest.disposeCertificateHandlerOnDispose">
- <summary>
- <para>If true, any CertificateHandler attached to this UnityWebRequest will have CertificateHandler.Dispose called automatically when UnityWebRequest.Dispose is called.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.UnityWebRequest.disposeDownloadHandlerOnDispose">
- <summary>
- <para>If true, any DownloadHandler attached to this UnityWebRequest will have DownloadHandler.Dispose called automatically when UnityWebRequest.Dispose is called.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.UnityWebRequest.disposeUploadHandlerOnDispose">
- <summary>
- <para>If true, any UploadHandler attached to this UnityWebRequest will have UploadHandler.Dispose called automatically when UnityWebRequest.Dispose is called.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.UnityWebRequest.downloadedBytes">
- <summary>
- <para>Returns the number of bytes of body data the system has downloaded from the remote server. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.UnityWebRequest.downloadHandler">
- <summary>
- <para>Holds a reference to a DownloadHandler object, which manages body data received from the remote server by this UnityWebRequest.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.UnityWebRequest.downloadProgress">
- <summary>
- <para>Returns a floating-point value between 0.0 and 1.0, indicating the progress of downloading body data from the server. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.UnityWebRequest.error">
- <summary>
- <para>A human-readable string describing any system errors encountered by this UnityWebRequest object while handling HTTP requests or responses. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.UnityWebRequest.isDone">
- <summary>
- <para>Returns true after the UnityWebRequest has finished communicating with the remote server. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.UnityWebRequest.isHttpError">
- <summary>
- <para>Returns true after this UnityWebRequest receives an HTTP response code indicating an error. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.UnityWebRequest.isModifiable">
- <summary>
- <para>Returns true while a UnityWebRequest’s configuration properties can be altered. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.UnityWebRequest.isNetworkError">
- <summary>
- <para>Returns true after this UnityWebRequest encounters a system error. (Read Only)</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Networking.UnityWebRequest.kHttpVerbCREATE">
- <summary>
- <para>The string "CREATE", commonly used as the verb for an HTTP CREATE request.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Networking.UnityWebRequest.kHttpVerbDELETE">
- <summary>
- <para>The string "DELETE", commonly used as the verb for an HTTP DELETE request.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Networking.UnityWebRequest.kHttpVerbGET">
- <summary>
- <para>The string "GET", commonly used as the verb for an HTTP GET request.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Networking.UnityWebRequest.kHttpVerbHEAD">
- <summary>
- <para>The string "HEAD", commonly used as the verb for an HTTP HEAD request.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Networking.UnityWebRequest.kHttpVerbPOST">
- <summary>
- <para>The string "POST", commonly used as the verb for an HTTP POST request.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Networking.UnityWebRequest.kHttpVerbPUT">
- <summary>
- <para>The string "PUT", commonly used as the verb for an HTTP PUT request.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.UnityWebRequest.method">
- <summary>
- <para>Defines the HTTP verb used by this UnityWebRequest, such as GET or POST.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.UnityWebRequest.redirectLimit">
- <summary>
- <para>Indicates the number of redirects which this UnityWebRequest will follow before halting with a “Redirect Limit Exceeded” system error.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.UnityWebRequest.responseCode">
- <summary>
- <para>The numeric HTTP response code returned by the server, such as 200, 404 or 500. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.UnityWebRequest.timeout">
- <summary>
- <para>Sets UnityWebRequest to attempt to abort after the number of seconds in timeout have passed.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.UnityWebRequest.uploadedBytes">
- <summary>
- <para>Returns the number of bytes of body data the system has uploaded to the remote server. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.UnityWebRequest.uploadHandler">
- <summary>
- <para>Holds a reference to the UploadHandler object which manages body data to be uploaded to the remote server.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.UnityWebRequest.uploadProgress">
- <summary>
- <para>Returns a floating-point value between 0.0 and 1.0, indicating the progress of uploading body data to the server.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.UnityWebRequest.uri">
- <summary>
- <para>Defines the target URI for the UnityWebRequest to communicate with.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.UnityWebRequest.url">
- <summary>
- <para>Defines the target URL for the UnityWebRequest to communicate with.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.UnityWebRequest.useHttpContinue">
- <summary>
- <para>Determines whether this UnityWebRequest will include Expect: 100-Continue in its outgoing request headers. (Default: true).</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Networking.UnityWebRequest.Abort">
- <summary>
- <para>If in progress, halts the UnityWebRequest as soon as possible.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Networking.UnityWebRequest.#ctor">
- <summary>
- <para>Creates a UnityWebRequest with the default options and no attached DownloadHandler or UploadHandler. Default method is GET.</para>
- </summary>
- <param name="url">The target URL with which this UnityWebRequest will communicate. Also accessible via the url property.</param>
- </member>
- <member name="M:UnityEngine.Networking.UnityWebRequest.#ctor(System.String)">
- <summary>
- <para>Creates a UnityWebRequest with the default options and no attached DownloadHandler or UploadHandler. Default method is GET.</para>
- </summary>
- <param name="url">The target URL with which this UnityWebRequest will communicate. Also accessible via the url property.</param>
- </member>
- <member name="M:UnityEngine.Networking.UnityWebRequest.Delete(System.String)">
- <summary>
- <para>Creates a UnityWebRequest configured for HTTP DELETE.</para>
- </summary>
- <param name="uri">The URI to which a DELETE request should be sent.</param>
- <returns>
- <para>A UnityWebRequest configured to send an HTTP DELETE request.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.UnityWebRequest.Dispose">
- <summary>
- <para>Signals that this [UnityWebRequest] is no longer being used, and should clean up any resources it is using.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Networking.UnityWebRequest.EscapeURL(System.String)">
- <summary>
- <para>Escapes characters in a string to ensure they are URL-friendly.</para>
- </summary>
- <param name="s">A string with characters to be escaped.</param>
- <param name="e">The text encoding to use.</param>
- </member>
- <member name="M:UnityEngine.Networking.UnityWebRequest.EscapeURL(System.String,System.Text.Encoding)">
- <summary>
- <para>Escapes characters in a string to ensure they are URL-friendly.</para>
- </summary>
- <param name="s">A string with characters to be escaped.</param>
- <param name="e">The text encoding to use.</param>
- </member>
- <member name="M:UnityEngine.Networking.UnityWebRequest.GenerateBoundary">
- <summary>
- <para>Generate a random 40-byte array for use as a multipart form boundary.</para>
- </summary>
- <returns>
- <para>40 random bytes, guaranteed to contain only printable ASCII values.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.UnityWebRequest.Get(System.String)">
- <summary>
- <para>Creates a UnityWebRequest configured for HTTP GET.</para>
- </summary>
- <param name="uri">The URI of the resource to retrieve via HTTP GET.</param>
- <returns>
- <para>A UnityWebRequest object configured to retrieve data from uri.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.UnityWebRequest.GetAssetBundle(System.String,System.UInt32)">
- <summary>
- <para>Deprecated. Replaced by UnityWebRequestAssetBundle.GetAssetBundle.</para>
- </summary>
- <param name="uri"></param>
- <param name="crc"></param>
- <param name="version"></param>
- <param name="hash"></param>
- <param name="cachedAssetBundle"></param>
- </member>
- <member name="M:UnityEngine.Networking.UnityWebRequest.GetAssetBundle(System.String,System.UInt32,System.UInt32)">
- <summary>
- <para>Deprecated. Replaced by UnityWebRequestAssetBundle.GetAssetBundle.</para>
- </summary>
- <param name="uri"></param>
- <param name="crc"></param>
- <param name="version"></param>
- <param name="hash"></param>
- <param name="cachedAssetBundle"></param>
- </member>
- <member name="M:UnityEngine.Networking.UnityWebRequest.GetAssetBundle(System.String,UnityEngine.Hash128,System.UInt32)">
- <summary>
- <para>Deprecated. Replaced by UnityWebRequestAssetBundle.GetAssetBundle.</para>
- </summary>
- <param name="uri"></param>
- <param name="crc"></param>
- <param name="version"></param>
- <param name="hash"></param>
- <param name="cachedAssetBundle"></param>
- </member>
- <member name="M:UnityEngine.Networking.UnityWebRequest.GetAssetBundle(System.String,UnityEngine.CachedAssetBundle,System.UInt32)">
- <summary>
- <para>Deprecated. Replaced by UnityWebRequestAssetBundle.GetAssetBundle.</para>
- </summary>
- <param name="uri"></param>
- <param name="crc"></param>
- <param name="version"></param>
- <param name="hash"></param>
- <param name="cachedAssetBundle"></param>
- </member>
- <member name="M:UnityEngine.Networking.UnityWebRequest.GetAudioClip(System.String,UnityEngine.AudioType)">
- <summary>
- <para>OBSOLETE. Use UnityWebRequestMultimedia.GetAudioClip().</para>
- </summary>
- <param name="uri"></param>
- <param name="audioType"></param>
- </member>
- <member name="M:UnityEngine.Networking.UnityWebRequest.GetRequestHeader(System.String)">
- <summary>
- <para>Retrieves the value of a custom request header.</para>
- </summary>
- <param name="name">Name of the custom request header. Case-insensitive.</param>
- <returns>
- <para>The value of the custom request header. If no custom header with a matching name has been set, returns an empty string.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.UnityWebRequest.GetResponseHeader(System.String)">
- <summary>
- <para>Retrieves the value of a response header from the latest HTTP response received.</para>
- </summary>
- <param name="name">The name of the HTTP header to retrieve. Case-insensitive.</param>
- <returns>
- <para>The value of the HTTP header from the latest HTTP response. If no header with a matching name has been received, or no responses have been received, returns null.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.UnityWebRequest.GetResponseHeaders">
- <summary>
- <para>Retrieves a dictionary containing all the response headers received by this UnityWebRequest in the latest HTTP response.</para>
- </summary>
- <returns>
- <para>A dictionary containing all the response headers received in the latest HTTP response. If no responses have been received, returns null.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.UnityWebRequest.GetTexture(System.String)">
- <summary>
- <para>Creates a UnityWebRequest intended to download an image via HTTP GET and create a Texture based on the retrieved data.</para>
- </summary>
- <param name="uri">The URI of the image to download.</param>
- <param name="nonReadable">If true, the texture's raw data will not be accessible to script. This can conserve memory. Default: false.</param>
- <returns>
- <para>A UnityWebRequest properly configured to download an image and convert it to a Texture.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.UnityWebRequest.GetTexture(System.String,System.Boolean)">
- <summary>
- <para>Creates a UnityWebRequest intended to download an image via HTTP GET and create a Texture based on the retrieved data.</para>
- </summary>
- <param name="uri">The URI of the image to download.</param>
- <param name="nonReadable">If true, the texture's raw data will not be accessible to script. This can conserve memory. Default: false.</param>
- <returns>
- <para>A UnityWebRequest properly configured to download an image and convert it to a Texture.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.UnityWebRequest.Head(System.String)">
- <summary>
- <para>Creates a UnityWebRequest configured to send a HTTP HEAD request.</para>
- </summary>
- <param name="uri">The URI to which to send a HTTP HEAD request.</param>
- <returns>
- <para>A UnityWebRequest configured to transmit a HTTP HEAD request.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.UnityWebRequest.Post(System.String,System.String)">
- <summary>
- <para>Creates a UnityWebRequest configured to send form data to a server via HTTP POST.</para>
- </summary>
- <param name="uri">The target URI to which form data will be transmitted.</param>
- <param name="postData">Form body data. Will be URLEncoded prior to transmission.</param>
- <returns>
- <para>A UnityWebRequest configured to send form data to uri via POST.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.UnityWebRequest.Post(System.String,UnityEngine.WWWForm)">
- <summary>
- <para>Create a UnityWebRequest configured to send form data to a server via HTTP POST.</para>
- </summary>
- <param name="uri">The target URI to which form data will be transmitted.</param>
- <param name="formData">Form fields or files encapsulated in a WWWForm object, for formatting and transmission to the remote server.</param>
- <returns>
- <para>A UnityWebRequest configured to send form data to uri via POST.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.UnityWebRequest.Post(System.String,System.Collections.Generic.List`1&lt;UnityEngine.Networking.IMultipartFormSection&gt;)">
- <summary>
- <para>Create a UnityWebRequest configured to send form data to a server via HTTP POST.</para>
- </summary>
- <param name="uri">The target URI to which form data will be transmitted.</param>
- <param name="multipartFormSections">A list of form fields or files to be formatted and transmitted to the remote server.</param>
- <param name="boundary">A unique boundary string, which will be used when separating form fields in a multipart form. If not supplied, a boundary will be generated for you.</param>
- <returns>
- <para>A UnityWebRequest configured to send form data to uri via POST.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.UnityWebRequest.Post(System.String,System.Collections.Generic.List`1&lt;UnityEngine.Networking.IMultipartFormSection&gt;,System.Byte[])">
- <summary>
- <para>Create a UnityWebRequest configured to send form data to a server via HTTP POST.</para>
- </summary>
- <param name="uri">The target URI to which form data will be transmitted.</param>
- <param name="multipartFormSections">A list of form fields or files to be formatted and transmitted to the remote server.</param>
- <param name="boundary">A unique boundary string, which will be used when separating form fields in a multipart form. If not supplied, a boundary will be generated for you.</param>
- <returns>
- <para>A UnityWebRequest configured to send form data to uri via POST.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.UnityWebRequest.Post(System.String,System.Collections.Generic.Dictionary`2&lt;System.String,System.String&gt;)">
- <summary>
- <para>Create a UnityWebRequest configured to send form data to a server via HTTP POST.</para>
- </summary>
- <param name="uri">The target URI to which form data will be transmitted.</param>
- <param name="formFields">Strings indicating the keys and values of form fields. Will be automatically formatted into a URL-encoded form body.</param>
- <returns>
- <para>A UnityWebRequest configured to send form data to uri via POST.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.UnityWebRequest.Put(System.String,System.Byte[])">
- <summary>
- <para>Creates a UnityWebRequest configured to upload raw data to a remote server via HTTP PUT.</para>
- </summary>
- <param name="uri">The URI to which the data will be sent.</param>
- <param name="bodyData">The data to transmit to the remote server.
-
-If a string, the string will be converted to raw bytes via &lt;a href="http:msdn.microsoft.comen-uslibrarysystem.text.encoding.utf8"&gt;System.Text.Encoding.UTF8&lt;a&gt;.</param>
- <returns>
- <para>A UnityWebRequest configured to transmit bodyData to uri via HTTP PUT.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.UnityWebRequest.Put(System.String,System.String)">
- <summary>
- <para>Creates a UnityWebRequest configured to upload raw data to a remote server via HTTP PUT.</para>
- </summary>
- <param name="uri">The URI to which the data will be sent.</param>
- <param name="bodyData">The data to transmit to the remote server.
-
-If a string, the string will be converted to raw bytes via &lt;a href="http:msdn.microsoft.comen-uslibrarysystem.text.encoding.utf8"&gt;System.Text.Encoding.UTF8&lt;a&gt;.</param>
- <returns>
- <para>A UnityWebRequest configured to transmit bodyData to uri via HTTP PUT.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.UnityWebRequest.Send">
- <summary>
- <para>Begin communicating with the remote server.</para>
- </summary>
- <returns>
- <para>An AsyncOperation indicating the progress/completion state of the UnityWebRequest. Yield this object to wait until the UnityWebRequest is done.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.UnityWebRequest.SendWebRequest">
- <summary>
- <para>Begin communicating with the remote server.
-
-After calling this method, the UnityWebRequest will perform DNS resolution (if necessary), transmit an HTTP request to the remote server at the target URL and process the server’s response.
-
-This method can only be called once on any given UnityWebRequest object. Once this method is called, you cannot change any of the UnityWebRequest’s properties.
-
-This method returns a WebRequestAsyncOperation object. Yielding the WebRequestAsyncOperation inside a coroutine will cause the coroutine to pause until the UnityWebRequest encounters a system error or finishes communicating.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Networking.UnityWebRequest.SerializeFormSections(System.Collections.Generic.List`1&lt;UnityEngine.Networking.IMultipartFormSection&gt;,System.Byte[])">
- <summary>
- <para>Converts a List of IMultipartFormSection objects into a byte array containing raw multipart form data.</para>
- </summary>
- <param name="multipartFormSections">A List of IMultipartFormSection objects.</param>
- <param name="boundary">A unique boundary string to separate the form sections.</param>
- <returns>
- <para>A byte array of raw multipart form data.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.UnityWebRequest.SerializeSimpleForm(System.Collections.Generic.Dictionary`2&lt;System.String,System.String&gt;)">
- <summary>
- <para>Serialize a dictionary of strings into a byte array containing URL-encoded UTF8 characters.</para>
- </summary>
- <param name="formFields">A dictionary containing the form keys and values to serialize.</param>
- <returns>
- <para>A byte array containing the serialized form. The form's keys and values have been URL-encoded.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.UnityWebRequest.SetRequestHeader(System.String,System.String)">
- <summary>
- <para>Set a HTTP request header to a custom value.</para>
- </summary>
- <param name="name">The key of the header to be set. Case-sensitive.</param>
- <param name="value">The header's intended value.</param>
- </member>
- <member name="M:UnityEngine.Networking.UnityWebRequest.UnEscapeURL(System.String)">
- <summary>
- <para>Converts URL-friendly escape sequences back to normal text.</para>
- </summary>
- <param name="s">A string containing escaped characters.</param>
- <param name="e">The text encoding to use.</param>
- </member>
- <member name="M:UnityEngine.Networking.UnityWebRequest.UnEscapeURL(System.String,System.Text.Encoding)">
- <summary>
- <para>Converts URL-friendly escape sequences back to normal text.</para>
- </summary>
- <param name="s">A string containing escaped characters.</param>
- <param name="e">The text encoding to use.</param>
- </member>
- <member name="T:UnityEngine.Networking.UnityWebRequestAsyncOperation">
- <summary>
- <para>Asynchronous operation object returned from UnityWebRequest.SendWebRequest().
-
-You can yield until it continues, register an event handler with AsyncOperation.completed, or manually check whether it's done (AsyncOperation.isDone) or progress (AsyncOperation.progress).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.UnityWebRequestAsyncOperation.webRequest">
- <summary>
- <para>Returns the associated UnityWebRequest that created the operation.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Networking.UploadHandler">
- <summary>
- <para>Helper object for UnityWebRequests. Manages the buffering and transmission of body data during HTTP requests.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.UploadHandler.contentType">
- <summary>
- <para>Determines the default Content-Type header which will be transmitted with the outbound HTTP request.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.UploadHandler.data">
- <summary>
- <para>The raw data which will be transmitted to the remote server as body data. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.UploadHandler.progress">
- <summary>
- <para>Returns the proportion of data uploaded to the remote server compared to the total amount of data to upload. (Read Only)</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Networking.UploadHandler.Dispose">
- <summary>
- <para>Signals that this [UploadHandler] is no longer being used, and should clean up any resources it is using.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Networking.UploadHandlerFile">
- <summary>
- <para>A specialized UploadHandler that reads data from a given file and sends raw bytes to the server as the request body.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Networking.UploadHandlerFile.#ctor(System.String)">
- <summary>
- <para>Create a new upload handler to send data from the given file to the server.</para>
- </summary>
- <param name="filePath">A file containing data to send.</param>
- </member>
- <member name="T:UnityEngine.Networking.UploadHandlerRaw">
- <summary>
- <para>A general-purpose UploadHandler subclass, using a native-code memory buffer.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Networking.UploadHandlerRaw.#ctor(System.Byte[])">
- <summary>
- <para>General constructor. Contents of the input argument are copied into a native buffer.</para>
- </summary>
- <param name="data">Raw data to transmit to the remote server.</param>
- </member>
- <member name="A:UnityEngine.UnityWebRequestModule">
- <summary>
- <para>The UnityWebRequest module lets you communicate with http services.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.WWWForm">
- <summary>
- <para>Helper class to generate form data to post to web servers using the UnityWebRequest or WWW classes.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.WWWForm.data">
- <summary>
- <para>(Read Only) The raw data to pass as the POST request body when sending the form.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.WWWForm.headers">
- <summary>
- <para>(Read Only) Returns the correct request headers for posting the form using the WWW class.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.WWWForm.AddBinaryData(System.String,System.Byte[])">
- <summary>
- <para>Add binary data to the form.</para>
- </summary>
- <param name="fieldName"></param>
- <param name="contents"></param>
- <param name="fileName"></param>
- <param name="mimeType"></param>
- </member>
- <member name="M:UnityEngine.WWWForm.AddBinaryData(System.String,System.Byte[],System.String)">
- <summary>
- <para>Add binary data to the form.</para>
- </summary>
- <param name="fieldName"></param>
- <param name="contents"></param>
- <param name="fileName"></param>
- <param name="mimeType"></param>
- </member>
- <member name="M:UnityEngine.WWWForm.AddBinaryData(System.String,System.Byte[],System.String,System.String)">
- <summary>
- <para>Add binary data to the form.</para>
- </summary>
- <param name="fieldName"></param>
- <param name="contents"></param>
- <param name="fileName"></param>
- <param name="mimeType"></param>
- </member>
- <member name="M:UnityEngine.WWWForm.AddField(System.String,System.String)">
- <summary>
- <para>Add a simple field to the form.</para>
- </summary>
- <param name="fieldName"></param>
- <param name="value"></param>
- <param name="e"></param>
- </member>
- <member name="M:UnityEngine.WWWForm.AddField(System.String,System.String,System.Text.Encoding)">
- <summary>
- <para>Add a simple field to the form.</para>
- </summary>
- <param name="fieldName"></param>
- <param name="value"></param>
- <param name="e"></param>
- </member>
- <member name="M:UnityEngine.WWWForm.AddField(System.String,System.Int32)">
- <summary>
- <para>Adds a simple field to the form.</para>
- </summary>
- <param name="fieldName"></param>
- <param name="i"></param>
- </member>
- <member name="M:UnityEngine.WWWForm.#ctor">
- <summary>
- <para>Creates an empty WWWForm object.</para>
- </summary>
- </member>
- </members>
-</doc>
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.UnityWebRequestTextureModule.dll b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.UnityWebRequestTextureModule.dll
deleted file mode 100644
index 25e3441..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.UnityWebRequestTextureModule.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.UnityWebRequestTextureModule.xml b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.UnityWebRequestTextureModule.xml
deleted file mode 100644
index 318c5ba..0000000
--- a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.UnityWebRequestTextureModule.xml
+++ /dev/null
@@ -1,76 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
-<doc>
- <members>
- <assembly>
- <name>UnityEngine.UnityWebRequestTextureModule</name>
- </assembly>
- <member name="T:UnityEngine.Networking.DownloadHandlerTexture">
- <summary>
- <para>A DownloadHandler subclass specialized for downloading images for use as Texture objects.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.DownloadHandlerTexture.texture">
- <summary>
- <para>Returns the downloaded Texture, or null. (Read Only)</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Networking.DownloadHandlerTexture.#ctor">
- <summary>
- <para>Default constructor.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Networking.DownloadHandlerTexture.#ctor(System.Boolean)">
- <summary>
- <para>Constructor, allows TextureImporter.isReadable property to be set.</para>
- </summary>
- <param name="readable">Value to set for TextureImporter.isReadable.</param>
- </member>
- <member name="M:UnityEngine.Networking.DownloadHandlerTexture.GetContent(UnityEngine.Networking.UnityWebRequest)">
- <summary>
- <para>Returns the downloaded Texture, or null.</para>
- </summary>
- <param name="www">A finished UnityWebRequest object with DownloadHandlerTexture attached.</param>
- <returns>
- <para>The same as DownloadHandlerTexture.texture</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.DownloadHandlerTexture.GetData">
- <summary>
- <para>Called by DownloadHandler.data. Returns a copy of the downloaded image data as raw bytes.</para>
- </summary>
- <returns>
- <para>A copy of the downloaded data.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.Networking.UnityWebRequestTexture">
- <summary>
- <para>Helpers for downloading image files into Textures using UnityWebRequest.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Networking.UnityWebRequestTexture.GetTexture(System.String)">
- <summary>
- <para>Create a UnityWebRequest intended to download an image via HTTP GET and create a Texture based on the retrieved data.</para>
- </summary>
- <param name="uri">The URI of the image to download.</param>
- <param name="nonReadable">If true, the texture's raw data will not be accessible to script. This can conserve memory. Default: false.</param>
- <returns>
- <para>A UnityWebRequest properly configured to download an image and convert it to a Texture.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.UnityWebRequestTexture.GetTexture(System.String,System.Boolean)">
- <summary>
- <para>Create a UnityWebRequest intended to download an image via HTTP GET and create a Texture based on the retrieved data.</para>
- </summary>
- <param name="uri">The URI of the image to download.</param>
- <param name="nonReadable">If true, the texture's raw data will not be accessible to script. This can conserve memory. Default: false.</param>
- <returns>
- <para>A UnityWebRequest properly configured to download an image and convert it to a Texture.</para>
- </returns>
- </member>
- <member name="A:UnityEngine.UnityWebRequestTextureModule">
- <summary>
- <para>The UnityWebRequestAudio module provides the DownloadHandlerTexture class to use UnityWebRequest to download Textures.</para>
- </summary>
- </member>
- </members>
-</doc>
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.UnityWebRequestWWWModule.dll b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.UnityWebRequestWWWModule.dll
deleted file mode 100644
index c16372c..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.UnityWebRequestWWWModule.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.UnityWebRequestWWWModule.xml b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.UnityWebRequestWWWModule.xml
deleted file mode 100644
index 59d86fd..0000000
--- a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.UnityWebRequestWWWModule.xml
+++ /dev/null
@@ -1,318 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
-<doc>
- <members>
- <assembly>
- <name>UnityEngine.UnityWebRequestWWWModule</name>
- </assembly>
- <member name="A:UnityEngine.UnityWebRequestWWWModule">
- <summary>
- <para>The UnityWebRequestWWW module implements the legacy WWW lets you communicate with http services.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.WWW">
- <summary>
- <para>Simple access to web pages.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.WWW.assetBundle">
- <summary>
- <para>Streams an AssetBundle that can contain any kind of asset from the project folder.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.WWW.audioClip">
- <summary>
- <para>Returns a AudioClip generated from the downloaded data (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.WWW.bytes">
- <summary>
- <para>Returns the contents of the fetched web page as a byte array (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.WWW.bytesDownloaded">
- <summary>
- <para>The number of bytes downloaded by this WWW query (read only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.WWW.error">
- <summary>
- <para>Returns an error message if there was an error during the download (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.WWW.isDone">
- <summary>
- <para>Is the download already finished? (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.WWW.movie">
- <summary>
- <para>Returns a MovieTexture generated from the downloaded data (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.WWW.progress">
- <summary>
- <para>How far has the download progressed (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.WWW.responseHeaders">
- <summary>
- <para>Dictionary of headers returned by the request.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.WWW.text">
- <summary>
- <para>Returns the contents of the fetched web page as a string (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.WWW.texture">
- <summary>
- <para>Returns a Texture2D generated from the downloaded data (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.WWW.textureNonReadable">
- <summary>
- <para>Returns a non-readable Texture2D generated from the downloaded data (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.WWW.threadPriority">
- <summary>
- <para>Obsolete, has no effect.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.WWW.uploadProgress">
- <summary>
- <para>How far has the upload progressed (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.WWW.url">
- <summary>
- <para>The URL of this WWW request (Read Only).</para>
- </summary>
- </member>
- <member name="M:UnityEngine.WWW.#ctor(System.String)">
- <summary>
- <para>Creates a WWW request with the given URL.</para>
- </summary>
- <param name="url">The url to download. Must be '%' escaped.</param>
- <returns>
- <para>A new WWW object. When it has been downloaded, the results can be fetched from the returned object.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.WWW.#ctor(System.String,UnityEngine.WWWForm)">
- <summary>
- <para>Creates a WWW request with the given URL.</para>
- </summary>
- <param name="url">The url to download. Must be '%' escaped.</param>
- <param name="form">A WWWForm instance containing the form data to post.</param>
- <returns>
- <para>A new WWW object. When it has been downloaded, the results can be fetched from the returned object.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.WWW.#ctor(System.String,System.Byte[])">
- <summary>
- <para>Creates a WWW request with the given URL.</para>
- </summary>
- <param name="url">The url to download. Must be '%' escaped.</param>
- <param name="postData">A byte array of data to be posted to the url.</param>
- <returns>
- <para>A new WWW object. When it has been downloaded, the results can be fetched from the returned object.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.WWW.#ctor(System.String,System.Byte[],System.Collections.Hashtable)">
- <summary>
- <para>Creates a WWW request with the given URL.</para>
- </summary>
- <param name="url">The url to download. Must be '%' escaped.</param>
- <param name="postData">A byte array of data to be posted to the url.</param>
- <param name="headers">A hash table of custom headers to send with the request.</param>
- <returns>
- <para>A new WWW object. When it has been downloaded, the results can be fetched from the returned object.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.WWW.#ctor(System.String,System.Byte[],System.Collections.Generic.Dictionary`2&lt;System.String,System.String&gt;)">
- <summary>
- <para>Creates a WWW request with the given URL.</para>
- </summary>
- <param name="url">The url to download. Must be '%' escaped.</param>
- <param name="postData">A byte array of data to be posted to the url.</param>
- <param name="headers">A dictionary that contains the header keys and values to pass to the server.</param>
- <returns>
- <para>A new WWW object. When it has been downloaded, the results can be fetched from the returned object.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.WWW.Dispose">
- <summary>
- <para>Disposes of an existing WWW object.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.WWW.EscapeURL(System.String)">
- <summary>
- <para>Escapes characters in a string to ensure they are URL-friendly.</para>
- </summary>
- <param name="s">A string with characters to be escaped.</param>
- <param name="e">The text encoding to use.</param>
- </member>
- <member name="M:UnityEngine.WWW.EscapeURL(System.String,System.Text.Encoding)">
- <summary>
- <para>Escapes characters in a string to ensure they are URL-friendly.</para>
- </summary>
- <param name="s">A string with characters to be escaped.</param>
- <param name="e">The text encoding to use.</param>
- </member>
- <member name="M:UnityEngine.WWW.GetAudioClip(System.Boolean)">
- <summary>
- <para>Returns an AudioClip generated from the downloaded data (Read Only).</para>
- </summary>
- <param name="threeD">Use this to specify whether the clip should be a 2D or 3D clip
-the .audioClip property defaults to 3D.</param>
- <param name="stream">Sets whether the clip should be completely downloaded before it's ready to play (false) or the stream can be played even if only part of the clip is downloaded (true).
-The latter will disable seeking on the clip (with .time and/or .timeSamples).</param>
- <param name="audioType">The AudioType of the content your downloading. If this is not set Unity will try to determine the type from URL.</param>
- <returns>
- <para>The returned AudioClip.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.WWW.GetAudioClip(System.Boolean,System.Boolean)">
- <summary>
- <para>Returns an AudioClip generated from the downloaded data (Read Only).</para>
- </summary>
- <param name="threeD">Use this to specify whether the clip should be a 2D or 3D clip
-the .audioClip property defaults to 3D.</param>
- <param name="stream">Sets whether the clip should be completely downloaded before it's ready to play (false) or the stream can be played even if only part of the clip is downloaded (true).
-The latter will disable seeking on the clip (with .time and/or .timeSamples).</param>
- <param name="audioType">The AudioType of the content your downloading. If this is not set Unity will try to determine the type from URL.</param>
- <returns>
- <para>The returned AudioClip.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.WWW.GetAudioClip(System.Boolean,System.Boolean,UnityEngine.AudioType)">
- <summary>
- <para>Returns an AudioClip generated from the downloaded data (Read Only).</para>
- </summary>
- <param name="threeD">Use this to specify whether the clip should be a 2D or 3D clip
-the .audioClip property defaults to 3D.</param>
- <param name="stream">Sets whether the clip should be completely downloaded before it's ready to play (false) or the stream can be played even if only part of the clip is downloaded (true).
-The latter will disable seeking on the clip (with .time and/or .timeSamples).</param>
- <param name="audioType">The AudioType of the content your downloading. If this is not set Unity will try to determine the type from URL.</param>
- <returns>
- <para>The returned AudioClip.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.WWW.GetAudioClipCompressed">
- <summary>
- <para>Returns an AudioClip generated from the downloaded data that is compressed in memory (Read Only).</para>
- </summary>
- <param name="threeD">Use this to specify whether the clip should be a 2D or 3D clip.</param>
- <param name="audioType">The AudioType of the content your downloading. If this is not set Unity will try to determine the type from URL.</param>
- <returns>
- <para>The returned AudioClip.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.WWW.GetAudioClipCompressed(System.Boolean)">
- <summary>
- <para>Returns an AudioClip generated from the downloaded data that is compressed in memory (Read Only).</para>
- </summary>
- <param name="threeD">Use this to specify whether the clip should be a 2D or 3D clip.</param>
- <param name="audioType">The AudioType of the content your downloading. If this is not set Unity will try to determine the type from URL.</param>
- <returns>
- <para>The returned AudioClip.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.WWW.GetAudioClipCompressed(System.Boolean,UnityEngine.AudioType)">
- <summary>
- <para>Returns an AudioClip generated from the downloaded data that is compressed in memory (Read Only).</para>
- </summary>
- <param name="threeD">Use this to specify whether the clip should be a 2D or 3D clip.</param>
- <param name="audioType">The AudioType of the content your downloading. If this is not set Unity will try to determine the type from URL.</param>
- <returns>
- <para>The returned AudioClip.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.WWW.GetMovieTexture">
- <summary>
- <para>MovieTexture has been deprecated. Refer to the new movie playback solution VideoPlayer.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.WWW.LoadFromCacheOrDownload(System.String,System.Int32)">
- <summary>
- <para>Loads an AssetBundle with the specified version number from the cache. If the AssetBundle is not currently cached, it will automatically be downloaded and stored in the cache for future retrieval from local storage.</para>
- </summary>
- <param name="url">The URL to download the AssetBundle from, if it is not present in the cache. Must be '%' escaped.</param>
- <param name="version">Version of the AssetBundle. The file will only be loaded from the disk cache if it has previously been downloaded with the same version parameter. By incrementing the version number requested by your application, you can force Caching to download a new copy of the AssetBundle from url.</param>
- <param name="hash">Hash128 which is used as the version of the AssetBundle.</param>
- <param name="cachedBundle">A structure used to download a given version of AssetBundle to a customized cache path.
-
-Analogous to the cachedAssetBundle parameter for UnityWebRequestAssetBundle.GetAssetBundle.&lt;/param&gt;</param>
- <param name="crc">An optional CRC-32 Checksum of the uncompressed contents. If this is non-zero, then the content will be compared against the checksum before loading it, and give an error if it does not match. You can use this to avoid data corruption from bad downloads or users tampering with the cached files on disk. If the CRC does not match, Unity will try to redownload the data, and if the CRC on the server does not match it will fail with an error. Look at the error string returned to see the correct CRC value to use for an AssetBundle.</param>
- <returns>
- <para>A WWW instance, which can be used to access the data once the load/download operation is completed.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.WWW.LoadFromCacheOrDownload(System.String,System.Int32,System.UInt32)">
- <summary>
- <para>Loads an AssetBundle with the specified version number from the cache. If the AssetBundle is not currently cached, it will automatically be downloaded and stored in the cache for future retrieval from local storage.</para>
- </summary>
- <param name="url">The URL to download the AssetBundle from, if it is not present in the cache. Must be '%' escaped.</param>
- <param name="version">Version of the AssetBundle. The file will only be loaded from the disk cache if it has previously been downloaded with the same version parameter. By incrementing the version number requested by your application, you can force Caching to download a new copy of the AssetBundle from url.</param>
- <param name="hash">Hash128 which is used as the version of the AssetBundle.</param>
- <param name="cachedBundle">A structure used to download a given version of AssetBundle to a customized cache path.
-
-Analogous to the cachedAssetBundle parameter for UnityWebRequestAssetBundle.GetAssetBundle.&lt;/param&gt;</param>
- <param name="crc">An optional CRC-32 Checksum of the uncompressed contents. If this is non-zero, then the content will be compared against the checksum before loading it, and give an error if it does not match. You can use this to avoid data corruption from bad downloads or users tampering with the cached files on disk. If the CRC does not match, Unity will try to redownload the data, and if the CRC on the server does not match it will fail with an error. Look at the error string returned to see the correct CRC value to use for an AssetBundle.</param>
- <returns>
- <para>A WWW instance, which can be used to access the data once the load/download operation is completed.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.WWW.LoadFromCacheOrDownload(System.String,UnityEngine.Hash128,System.UInt32)">
- <summary>
- <para>Loads an AssetBundle with the specified version number from the cache. If the AssetBundle is not currently cached, it will automatically be downloaded and stored in the cache for future retrieval from local storage.</para>
- </summary>
- <param name="url">The URL to download the AssetBundle from, if it is not present in the cache. Must be '%' escaped.</param>
- <param name="version">Version of the AssetBundle. The file will only be loaded from the disk cache if it has previously been downloaded with the same version parameter. By incrementing the version number requested by your application, you can force Caching to download a new copy of the AssetBundle from url.</param>
- <param name="hash">Hash128 which is used as the version of the AssetBundle.</param>
- <param name="cachedBundle">A structure used to download a given version of AssetBundle to a customized cache path.
-
-Analogous to the cachedAssetBundle parameter for UnityWebRequestAssetBundle.GetAssetBundle.&lt;/param&gt;</param>
- <param name="crc">An optional CRC-32 Checksum of the uncompressed contents. If this is non-zero, then the content will be compared against the checksum before loading it, and give an error if it does not match. You can use this to avoid data corruption from bad downloads or users tampering with the cached files on disk. If the CRC does not match, Unity will try to redownload the data, and if the CRC on the server does not match it will fail with an error. Look at the error string returned to see the correct CRC value to use for an AssetBundle.</param>
- <returns>
- <para>A WWW instance, which can be used to access the data once the load/download operation is completed.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.WWW.LoadFromCacheOrDownload(System.String,UnityEngine.CachedAssetBundle,System.UInt32)">
- <summary>
- <para>Loads an AssetBundle with the specified version number from the cache. If the AssetBundle is not currently cached, it will automatically be downloaded and stored in the cache for future retrieval from local storage.</para>
- </summary>
- <param name="url">The URL to download the AssetBundle from, if it is not present in the cache. Must be '%' escaped.</param>
- <param name="version">Version of the AssetBundle. The file will only be loaded from the disk cache if it has previously been downloaded with the same version parameter. By incrementing the version number requested by your application, you can force Caching to download a new copy of the AssetBundle from url.</param>
- <param name="hash">Hash128 which is used as the version of the AssetBundle.</param>
- <param name="cachedBundle">A structure used to download a given version of AssetBundle to a customized cache path.
-
-Analogous to the cachedAssetBundle parameter for UnityWebRequestAssetBundle.GetAssetBundle.&lt;/param&gt;</param>
- <param name="crc">An optional CRC-32 Checksum of the uncompressed contents. If this is non-zero, then the content will be compared against the checksum before loading it, and give an error if it does not match. You can use this to avoid data corruption from bad downloads or users tampering with the cached files on disk. If the CRC does not match, Unity will try to redownload the data, and if the CRC on the server does not match it will fail with an error. Look at the error string returned to see the correct CRC value to use for an AssetBundle.</param>
- <returns>
- <para>A WWW instance, which can be used to access the data once the load/download operation is completed.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.WWW.LoadImageIntoTexture(UnityEngine.Texture2D)">
- <summary>
- <para>Replaces the contents of an existing Texture2D with an image from the downloaded data.</para>
- </summary>
- <param name="tex">An existing texture object to be overwritten with the image data.</param>
- <param name="texture"></param>
- </member>
- <member name="M:UnityEngine.WWW.UnEscapeURL(System.String)">
- <summary>
- <para>Converts URL-friendly escape sequences back to normal text.</para>
- </summary>
- <param name="s">A string containing escaped characters.</param>
- <param name="e">The text encoding to use.</param>
- </member>
- <member name="M:UnityEngine.WWW.UnEscapeURL(System.String,System.Text.Encoding)">
- <summary>
- <para>Converts URL-friendly escape sequences back to normal text.</para>
- </summary>
- <param name="s">A string containing escaped characters.</param>
- <param name="e">The text encoding to use.</param>
- </member>
- </members>
-</doc>
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.VRModule.dll b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.VRModule.dll
deleted file mode 100644
index c0f8a5f..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.VRModule.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.VRModule.xml b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.VRModule.xml
deleted file mode 100644
index 4ad2423..0000000
--- a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.VRModule.xml
+++ /dev/null
@@ -1,415 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
-<doc>
- <members>
- <assembly>
- <name>UnityEngine.VRModule</name>
- </assembly>
- <member name="A:UnityEngine.VRModule">
- <summary>
- <para>The VR module implements support for virtual reality devices in Unity.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.XR.GameViewRenderMode">
- <summary>
- <para>Enumeration of available modes for XR rendering in the Game view or in the main window on a host PC. XR rendering only occurs when the Unity Editor is in Play Mode.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.XR.GameViewRenderMode.BothEyes">
- <summary>
- <para>Renders both eyes of the XR device side-by-side in the Game view or in the main window on a host PC.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.XR.GameViewRenderMode.LeftEye">
- <summary>
- <para>Renders the left eye of the XR device in the Game View window or in main window on a host PC.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.XR.GameViewRenderMode.OcclusionMesh">
- <summary>
- <para>Renders both eyes of the XR device, and the occlusion mesh, side-by-side in the Game view or in the main window on a host PC.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.XR.GameViewRenderMode.RightEye">
- <summary>
- <para>Renders the right eye of the XR device in the Game View window or in main window on a host PC.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.XR.TrackingSpaceType">
- <summary>
- <para>Represents the size of physical space available for XR.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.XR.TrackingSpaceType.RoomScale">
- <summary>
- <para>Represents a space large enough for free movement.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.XR.TrackingSpaceType.Stationary">
- <summary>
- <para>Represents a small space where movement may be constrained or positional tracking is unavailable.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.XR.UserPresenceState">
- <summary>
- <para>Represents the current user presence state detected by the device.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.XR.UserPresenceState.NotPresent">
- <summary>
- <para>The device does not detect that the user is present.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.XR.UserPresenceState.Present">
- <summary>
- <para>The device detects that the user is present.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.XR.UserPresenceState.Unknown">
- <summary>
- <para>The device is currently in a state where it cannot determine user presence.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.XR.UserPresenceState.Unsupported">
- <summary>
- <para>The device does not support detecting user presence.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.XR.WSA.HolographicRemoting">
- <summary>
- <para>he Holographic Remoting interface allows you to connect an application to a remote holographic device, and stream data between the application and that device.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.XR.WSA.HolographicRemoting.ConnectionState">
- <summary>
- <para>Whether the app is displaying protected content.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.XR.WSA.HolographicSettings">
- <summary>
- <para>The Holographic Settings contain functions which effect the performance and presentation of Holograms on Windows Holographic platforms.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.XR.WSA.HolographicSettings.ActivateLatentFramePresentation(System.Boolean)">
- <summary>
- <para>Option to allow developers to achieve higher framerate at the cost of high latency. By default this option is off.</para>
- </summary>
- <param name="activated">True to enable or false to disable Low Latent Frame Presentation.</param>
- </member>
- <member name="T:UnityEngine.XR.WSA.HolographicSettings.HolographicReprojectionMode">
- <summary>
- <para>Represents the kind of reprojection an app is requesting to stabilize its holographic rendering relative to the user's head motion.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.XR.WSA.HolographicSettings.HolographicReprojectionMode.Disabled">
- <summary>
- <para>The image should not be stabilized for the user's head motion, instead remaining fixed in the display. This is generally discouraged, as it is only comfortable for users when used sparingly, such as when the only visible content is a small cursor.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.XR.WSA.HolographicSettings.HolographicReprojectionMode.OrientationOnly">
- <summary>
- <para>The image should be stabilized only for changes to the user's head orientation, ignoring positional changes. This is best for body-locked content that should tag along with the user as they walk around, such as 360-degree video.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.XR.WSA.HolographicSettings.HolographicReprojectionMode.PositionAndOrientation">
- <summary>
- <para>The image should be stabilized for changes to both the user's head position and orientation. This is best for world-locked content that should remain physically stationary as the user walks around.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.XR.WSA.HolographicSettings.IsContentProtectionEnabled">
- <summary>
- <para>Whether the app is displaying protected content.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.XR.WSA.HolographicSettings.IsDisplayOpaque">
- <summary>
- <para>This method returns whether or not the display associated with the main camera reports as opaque.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.XR.WSA.HolographicSettings.IsLatentFramePresentation">
- <summary>
- <para>Returns true if Holographic rendering is currently running with Latent Frame Presentation. Default value is false.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.XR.WSA.HolographicSettings.ReprojectionMode">
- <summary>
- <para>The kind of reprojection the app is requesting to stabilize its holographic rendering relative to the user's head motion.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.XR.WSA.HolographicSettings.SetFocusPointForFrame(UnityEngine.Vector3)">
- <summary>
- <para>Sets a point in 3d space that is the focal point of the scene for the user for this frame. This helps improve the visual fidelity of content around this point. This must be set every frame.</para>
- </summary>
- <param name="position">The position of the focal point in the scene, relative to the camera.</param>
- <param name="normal">Surface normal of the plane being viewed at the focal point.</param>
- <param name="velocity">A vector that describes how the focus point is moving in the scene at this point in time. This allows the HoloLens to compensate for both your head movement and the movement of the object in the scene.</param>
- </member>
- <member name="M:UnityEngine.XR.WSA.HolographicSettings.SetFocusPointForFrame(UnityEngine.Vector3,UnityEngine.Vector3)">
- <summary>
- <para>Sets a point in 3d space that is the focal point of the scene for the user for this frame. This helps improve the visual fidelity of content around this point. This must be set every frame.</para>
- </summary>
- <param name="position">The position of the focal point in the scene, relative to the camera.</param>
- <param name="normal">Surface normal of the plane being viewed at the focal point.</param>
- <param name="velocity">A vector that describes how the focus point is moving in the scene at this point in time. This allows the HoloLens to compensate for both your head movement and the movement of the object in the scene.</param>
- </member>
- <member name="M:UnityEngine.XR.WSA.HolographicSettings.SetFocusPointForFrame(UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.Vector3)">
- <summary>
- <para>Sets a point in 3d space that is the focal point of the scene for the user for this frame. This helps improve the visual fidelity of content around this point. This must be set every frame.</para>
- </summary>
- <param name="position">The position of the focal point in the scene, relative to the camera.</param>
- <param name="normal">Surface normal of the plane being viewed at the focal point.</param>
- <param name="velocity">A vector that describes how the focus point is moving in the scene at this point in time. This allows the HoloLens to compensate for both your head movement and the movement of the object in the scene.</param>
- </member>
- <member name="T:UnityEngine.XR.WSA.HolographicStreamerConnectionFailureReason">
- <summary>
- <para>Enum indicating the reason why connection to remote device has failed.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.XR.WSA.HolographicStreamerConnectionFailureReason.ConnectionLost">
- <summary>
- <para>Enum indicating the reason why remote connection failed.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.XR.WSA.HolographicStreamerConnectionFailureReason.HandshakeFailed">
- <summary>
- <para>Handskahe failed while traying to establish connection with remote device.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.XR.WSA.HolographicStreamerConnectionFailureReason.None">
- <summary>
- <para>No failure.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.XR.WSA.HolographicStreamerConnectionFailureReason.ProtocolVersionMismatch">
- <summary>
- <para>Protocol used by the app does not match remoting app running on remote device.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.XR.WSA.HolographicStreamerConnectionFailureReason.Unknown">
- <summary>
- <para>Couldn't identify the reason why connection failed.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.XR.WSA.HolographicStreamerConnectionFailureReason.Unreachable">
- <summary>
- <para>Remove device is not reachable.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.XR.WSA.HolographicStreamerConnectionState">
- <summary>
- <para>Current state of the holographis streamer remote connection.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.XR.WSA.HolographicStreamerConnectionState.Connected">
- <summary>
- <para>Indicates app being connected to remote device.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.XR.WSA.HolographicStreamerConnectionState.Connecting">
- <summary>
- <para>Indicates app trying to connect to remote device.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.XR.WSA.HolographicStreamerConnectionState.Disconnected">
- <summary>
- <para>Indicates app being currently disconnected from any other remote device.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.XR.XRDevice">
- <summary>
- <para>Contains all functionality related to a XR device.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.XR.XRDevice.family">
- <summary>
- <para>The name of the family of the loaded XR device.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.XR.XRDevice.fovZoomFactor">
- <summary>
- <para>Zooms the XR projection.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.XR.XRDevice.isPresent">
- <summary>
- <para>Successfully detected a XR device in working order.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.XR.XRDevice.model">
- <summary>
- <para>Specific model of loaded XR device.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.XR.XRDevice.refreshRate">
- <summary>
- <para>Refresh rate of the display in Hertz.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.XR.XRDevice.userPresence">
- <summary>
- <para>Indicates whether the user is present and interacting with the device.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.XR.XRDevice.DisableAutoXRCameraTracking">
- <summary>
- <para>Sets whether the camera passed in the first parameter is controlled implicitly by the XR Device</para>
- </summary>
- <param name="Camera">The camera that we wish to change behavior on</param>
- <param name="Disabled">True if the camera's transform is set externally. False if the camera is to be driven implicitly by XRDevice, </param>
- <returns>
- <para>Nothing.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.XR.XRDevice.GetNativePtr">
- <summary>
- <para>This method returns an IntPtr representing the native pointer to the XR device if one is available, otherwise the value will be IntPtr.Zero.</para>
- </summary>
- <returns>
- <para>The native pointer to the XR device.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.XR.XRDevice.GetTrackingSpaceType">
- <summary>
- <para>Returns the device's current TrackingSpaceType. This value determines how the camera is positioned relative to its starting position. For more, see the section "Understanding the camera" in.</para>
- </summary>
- <returns>
- <para>The device's current TrackingSpaceType.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.XR.XRDevice.SetTrackingSpaceType(UnityEngine.XR.TrackingSpaceType)">
- <summary>
- <para>Sets the device's current TrackingSpaceType. Returns true on success. Returns false if the given TrackingSpaceType is not supported or the device fails to switch.</para>
- </summary>
- <param name="TrackingSpaceType">The TrackingSpaceType the device should switch to.</param>
- <param name="trackingSpaceType"></param>
- <returns>
- <para>True on success. False if the given TrackingSpaceType is not supported or the device fails to switch.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.XR.XRSettings">
- <summary>
- <para>Global XR related settings.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.XR.XRSettings.enabled">
- <summary>
- <para>Globally enables or disables XR for the application.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.XR.XRSettings.eyeTextureDesc">
- <summary>
- <para>Fetch the eye texture RenderTextureDescriptor from the active stereo device.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.XR.XRSettings.eyeTextureHeight">
- <summary>
- <para>The current height of an eye texture for the loaded device.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.XR.XRSettings.eyeTextureResolutionScale">
- <summary>
- <para>Controls the actual size of eye textures as a multiplier of the device's default resolution.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.XR.XRSettings.eyeTextureWidth">
- <summary>
- <para>The current width of an eye texture for the loaded device.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.XR.XRSettings.gameViewRenderMode">
- <summary>
- <para>Sets the render mode for the XR device. The render mode controls how the view of the XR device renders in the Game view and in the main window on a host PC.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.XR.XRSettings.isDeviceActive">
- <summary>
- <para>Read-only value that can be used to determine if the XR device is active.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.XR.XRSettings.loadedDeviceName">
- <summary>
- <para>Type of XR device that is currently loaded.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.XR.XRSettings.occlusionMaskScale">
- <summary>
- <para>A scale applied to the standard occulsion mask for each platform.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.XR.XRSettings.renderScale">
- <summary>
- <para>This field has been deprecated. Use XRSettings.eyeTextureResolutionScale instead.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.XR.XRSettings.renderViewportScale">
- <summary>
- <para>Controls how much of the allocated eye texture should be used for rendering.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.XR.XRSettings.showDeviceView">
- <summary>
- <para>This property has been deprecated. Use XRSettings.gameViewRenderMode instead.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.XR.XRSettings.supportedDevices">
- <summary>
- <para>Returns a list of supported XR devices that were included at build time.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.XR.XRSettings.useOcclusionMesh">
- <summary>
- <para>Specifies whether or not the occlusion mesh should be used when rendering. Enabled by default.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.XR.XRSettings.LoadDeviceByName(System.String)">
- <summary>
- <para>Loads the requested device at the beginning of the next frame.</para>
- </summary>
- <param name="deviceName">Name of the device from XRSettings.supportedDevices.</param>
- <param name="prioritizedDeviceNameList">Prioritized list of device names from XRSettings.supportedDevices.</param>
- </member>
- <member name="M:UnityEngine.XR.XRSettings.LoadDeviceByName(System.String[])">
- <summary>
- <para>Loads the requested device at the beginning of the next frame.</para>
- </summary>
- <param name="deviceName">Name of the device from XRSettings.supportedDevices.</param>
- <param name="prioritizedDeviceNameList">Prioritized list of device names from XRSettings.supportedDevices.</param>
- </member>
- <member name="T:UnityEngine.XR.XRStats">
- <summary>
- <para>Timing and other statistics from the XR subsystem.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.XR.XRStats.gpuTimeLastFrame">
- <summary>
- <para>Total GPU time utilized last frame as measured by the XR subsystem.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.XR.XRStats.TryGetDroppedFrameCount(System.Int32&amp;)">
- <summary>
- <para>Retrieves the number of dropped frames reported by the XR SDK.</para>
- </summary>
- <param name="droppedFrameCount">Outputs the number of frames dropped since the last update.</param>
- <returns>
- <para>True if the dropped frame count is available, false otherwise.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.XR.XRStats.TryGetFramePresentCount(System.Int32&amp;)">
- <summary>
- <para>Retrieves the number of times the current frame has been drawn to the device as reported by the XR SDK.</para>
- </summary>
- <param name="framePresentCount">Outputs the number of times the current frame has been presented.</param>
- <returns>
- <para>True if the frame present count is available, false otherwise.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.XR.XRStats.TryGetGPUTimeLastFrame(System.Single&amp;)">
- <summary>
- <para>Retrieves the time spent by the GPU last frame, in seconds, as reported by the XR SDK.</para>
- </summary>
- <param name="gpuTimeLastFrame">Outputs the time spent by the GPU last frame.</param>
- <returns>
- <para>True if the GPU time spent last frame is available, false otherwise.</para>
- </returns>
- </member>
- </members>
-</doc>
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.VehiclesModule.dll b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.VehiclesModule.dll
deleted file mode 100644
index 41aed73..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.VehiclesModule.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.VehiclesModule.xml b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.VehiclesModule.xml
deleted file mode 100644
index 059ecc5..0000000
--- a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.VehiclesModule.xml
+++ /dev/null
@@ -1,159 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
-<doc>
- <members>
- <assembly>
- <name>UnityEngine.VehiclesModule</name>
- </assembly>
- <member name="A:UnityEngine.VehiclesModule">
- <summary>
- <para>The Vehicles module implements vehicle physics simulation through the WheelCollider component.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.WheelCollider">
- <summary>
- <para>A special collider for vehicle wheels.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.WheelCollider.brakeTorque">
- <summary>
- <para>Brake torque expressed in Newton metres.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.WheelCollider.center">
- <summary>
- <para>The center of the wheel, measured in the object's local space.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.WheelCollider.forceAppPointDistance">
- <summary>
- <para>Application point of the suspension and tire forces measured from the base of the resting wheel.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.WheelCollider.forwardFriction">
- <summary>
- <para>Properties of tire friction in the direction the wheel is pointing in.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.WheelCollider.isGrounded">
- <summary>
- <para>Indicates whether the wheel currently collides with something (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.WheelCollider.mass">
- <summary>
- <para>The mass of the wheel, expressed in kilograms. Must be larger than zero. Typical values would be in range (20,80).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.WheelCollider.motorTorque">
- <summary>
- <para>Motor torque on the wheel axle expressed in Newton metres. Positive or negative depending on direction.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.WheelCollider.radius">
- <summary>
- <para>The radius of the wheel, measured in local space.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.WheelCollider.rpm">
- <summary>
- <para>Current wheel axle rotation speed, in rotations per minute (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.WheelCollider.sidewaysFriction">
- <summary>
- <para>Properties of tire friction in the sideways direction.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.WheelCollider.sprungMass">
- <summary>
- <para>The mass supported by this WheelCollider.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.WheelCollider.steerAngle">
- <summary>
- <para>Steering angle in degrees, always around the local y-axis.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.WheelCollider.suspensionDistance">
- <summary>
- <para>Maximum extension distance of wheel suspension, measured in local space.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.WheelCollider.suspensionSpring">
- <summary>
- <para>The parameters of wheel's suspension. The suspension attempts to reach a target position by applying a linear force and a damping force.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.WheelCollider.wheelDampingRate">
- <summary>
- <para>The damping rate of the wheel. Must be larger than zero.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.WheelCollider.ConfigureVehicleSubsteps(System.Single,System.Int32,System.Int32)">
- <summary>
- <para>Configure vehicle sub-stepping parameters.</para>
- </summary>
- <param name="speedThreshold">The speed threshold of the sub-stepping algorithm.</param>
- <param name="stepsBelowThreshold">Amount of simulation sub-steps when vehicle's speed is below speedThreshold.</param>
- <param name="stepsAboveThreshold">Amount of simulation sub-steps when vehicle's speed is above speedThreshold.</param>
- </member>
- <member name="M:UnityEngine.WheelCollider.GetGroundHit(UnityEngine.WheelHit&amp;)">
- <summary>
- <para>Gets ground collision data for the wheel.</para>
- </summary>
- <param name="hit"></param>
- </member>
- <member name="M:UnityEngine.WheelCollider.GetWorldPose(UnityEngine.Vector3&amp;,UnityEngine.Quaternion&amp;)">
- <summary>
- <para>Gets the world space pose of the wheel accounting for ground contact, suspension limits, steer angle, and rotation angle (angles in degrees).</para>
- </summary>
- <param name="pos">Position of the wheel in world space.</param>
- <param name="quat">Rotation of the wheel in world space.</param>
- </member>
- <member name="T:UnityEngine.WheelHit">
- <summary>
- <para>Contact information for the wheel, reported by WheelCollider.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.WheelHit.collider">
- <summary>
- <para>The other Collider the wheel is hitting.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.WheelHit.force">
- <summary>
- <para>The magnitude of the force being applied for the contact.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.WheelHit.forwardDir">
- <summary>
- <para>The direction the wheel is pointing in.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.WheelHit.forwardSlip">
- <summary>
- <para>Tire slip in the rolling direction. Acceleration slip is negative, braking slip is positive.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.WheelHit.normal">
- <summary>
- <para>The normal at the point of contact.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.WheelHit.point">
- <summary>
- <para>The point of contact between the wheel and the ground.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.WheelHit.sidewaysDir">
- <summary>
- <para>The sideways direction of the wheel.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.WheelHit.sidewaysSlip">
- <summary>
- <para>Tire slip in the sideways direction.</para>
- </summary>
- </member>
- </members>
-</doc>
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.VideoModule.dll b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.VideoModule.dll
deleted file mode 100644
index 3a510ea..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.VideoModule.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.VideoModule.xml b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.VideoModule.xml
deleted file mode 100644
index 75e1bae..0000000
--- a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.VideoModule.xml
+++ /dev/null
@@ -1,652 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
-<doc>
- <members>
- <assembly>
- <name>UnityEngine.VideoModule</name>
- </assembly>
- <member name="T:UnityEngine.Experimental.Video.VideoClipPlayable">
- <summary>
- <para>An implementation of IPlayable that controls playback of a VideoClip.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.Video.VideoClipPlayable.Create(UnityEngine.Playables.PlayableGraph,UnityEngine.Video.VideoClip,System.Boolean)">
- <summary>
- <para>Creates a VideoClipPlayable in the PlayableGraph.</para>
- </summary>
- <param name="graph">The PlayableGraph object that will own the VideoClipPlayable.</param>
- <param name="looping">Indicates if VideoClip loops when it reaches the end.</param>
- <param name="clip">VideoClip used to produce textures in the PlayableGraph.</param>
- <returns>
- <para>A VideoClipPlayable linked to the PlayableGraph.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.Experimental.Video.VideoPlayerExtensions">
- <summary>
- <para>Extension methods for the Video.VideoPlayer class.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.Video.VideoPlayerExtensions.GetAudioSampleProvider(UnityEngine.Video.VideoPlayer,System.UInt16)">
- <summary>
- <para>Return the Experimental.Audio.AudioSampleProvider for the specified track, used to receive audio samples during playback.</para>
- </summary>
- <param name="vp">The "this" pointer for the extension method.</param>
- <param name="trackIndex">The audio track index for which the sample provider is queried.</param>
- <returns>
- <para>The sample provider for the specified track.</para>
- </returns>
- </member>
- <member name="A:UnityEngine.VideoModule">
- <summary>
- <para>The Video module lets you play back video files in your content.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Video.Video3DLayout">
- <summary>
- <para>Types of 3D content layout within a video.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Video.Video3DLayout.No3D">
- <summary>
- <para>Video does not have any 3D content.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Video.Video3DLayout.OverUnder3D">
- <summary>
- <para>Video contains 3D content where the left eye occupies the upper half and right eye occupies the lower half of video frames.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Video.Video3DLayout.SideBySide3D">
- <summary>
- <para>Video contains 3D content where the left eye occupies the left half and right eye occupies the right half of video frames.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Video.VideoAspectRatio">
- <summary>
- <para>Methods used to fit a video in the target area.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Video.VideoAspectRatio.FitHorizontally">
- <summary>
- <para>Resize proportionally so that width fits the target area, cropping or adding black bars above and below if needed.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Video.VideoAspectRatio.FitInside">
- <summary>
- <para>Resize proportionally so that content fits the target area, adding black bars if needed.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Video.VideoAspectRatio.FitOutside">
- <summary>
- <para>Resize proportionally so that content fits the target area, cropping if needed.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Video.VideoAspectRatio.FitVertically">
- <summary>
- <para>Resize proportionally so that height fits the target area, cropping or adding black bars on each side if needed.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Video.VideoAspectRatio.NoScaling">
- <summary>
- <para>Preserve the pixel size without adjusting for target area.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Video.VideoAspectRatio.Stretch">
- <summary>
- <para>Resize non-proportionally to fit the target area.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Video.VideoAudioOutputMode">
- <summary>
- <para>Places where the audio embedded in a video can be sent.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Video.VideoAudioOutputMode.APIOnly">
- <summary>
- <para>Send the embedded audio to the associated AudioSampleProvider.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Video.VideoAudioOutputMode.AudioSource">
- <summary>
- <para>Send the embedded audio into a specified AudioSource.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Video.VideoAudioOutputMode.Direct">
- <summary>
- <para>Send the embedded audio direct to the platform's audio hardware.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Video.VideoAudioOutputMode.None">
- <summary>
- <para>Disable the embedded audio.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Video.VideoClip">
- <summary>
- <para>A container for video data.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Video.VideoClip.audioTrackCount">
- <summary>
- <para>Number of audio tracks in the clip.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Video.VideoClip.frameCount">
- <summary>
- <para>The length of the VideoClip in frames. (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Video.VideoClip.frameRate">
- <summary>
- <para>The frame rate of the clip in frames/second. (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Video.VideoClip.height">
- <summary>
- <para>The height of the images in the video clip in pixels. (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Video.VideoClip.length">
- <summary>
- <para>The length of the video clip in seconds. (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Video.VideoClip.originalPath">
- <summary>
- <para>The video clip path in the project's assets. (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Video.VideoClip.pixelAspectRatioDenominator">
- <summary>
- <para>Denominator of the pixel aspect ratio (num:den). (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Video.VideoClip.pixelAspectRatioNumerator">
- <summary>
- <para>Numerator of the pixel aspect ratio (num:den). (Read Only).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Video.VideoClip.width">
- <summary>
- <para>The width of the images in the video clip in pixels. (Read Only).</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Video.VideoClip.GetAudioChannelCount(System.UInt16)">
- <summary>
- <para>The number of channels in the audio track. E.g. 2 for a stereo track.</para>
- </summary>
- <param name="audioTrackIdx">Index of the audio queried audio track.</param>
- <returns>
- <para>The number of channels.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Video.VideoClip.GetAudioLanguage(System.UInt16)">
- <summary>
- <para>Get the audio track language. Can be unknown.</para>
- </summary>
- <param name="audioTrackIdx">Index of the audio queried audio track.</param>
- <returns>
- <para>The abbreviated name of the language.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Video.VideoClip.GetAudioSampleRate(System.UInt16)">
- <summary>
- <para>Get the audio track sampling rate in Hertz.</para>
- </summary>
- <param name="audioTrackIdx">Index of the audio queried audio track.</param>
- <returns>
- <para>The sampling rate in Hertz.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.Video.VideoPlayer">
- <summary>
- <para>Plays video content onto a target.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Video.VideoPlayer.aspectRatio">
- <summary>
- <para>Defines how the video content will be stretched to fill the target area.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Video.VideoPlayer.audioOutputMode">
- <summary>
- <para>Destination for the audio embedded in the video.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Video.VideoPlayer.audioTrackCount">
- <summary>
- <para>Number of audio tracks found in the data source currently configured.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Video.VideoPlayer.canSetDirectAudioVolume">
- <summary>
- <para>Whether direct-output volume controls are supported for the current platform and video format. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Video.VideoPlayer.canSetPlaybackSpeed">
- <summary>
- <para>Whether the playback speed can be changed. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Video.VideoPlayer.canSetSkipOnDrop">
- <summary>
- <para>Determines whether the VideoPlayer skips frames to catch up with current time. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Video.VideoPlayer.canSetTime">
- <summary>
- <para>Whether current time can be changed using the time or timeFrames property. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Video.VideoPlayer.canSetTimeSource">
- <summary>
- <para>Whether the time source followed by the VideoPlayer can be changed. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Video.VideoPlayer.canStep">
- <summary>
- <para>Returns true if the VideoPlayer can step forward through the video content. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Video.VideoPlayer.clip">
- <summary>
- <para>The clip being played by the VideoPlayer.</para>
- </summary>
- </member>
- <member name="?:UnityEngine.Video.VideoPlayer.clockResyncOccurred(UnityEngine.Video.VideoPlayer/TimeEventHandler)">
- <summary>
- <para>Invoked when the VideoPlayer's clock is synced back to its Video.VideoTimeReference.</para>
- </summary>
- <param name="value"></param>
- </member>
- <member name="P:UnityEngine.Video.VideoPlayer.controlledAudioTrackCount">
- <summary>
- <para>Number of audio tracks that this VideoPlayer will take control of. The other ones will be silenced. A maximum of 64 tracks are allowed.
-The actual number of audio tracks cannot be known in advance when playing URLs, which is why this value is independent of the Video.VideoPlayer.audioTrackCount property.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Video.VideoPlayer.controlledAudioTrackMaxCount">
- <summary>
- <para>Maximum number of audio tracks that can be controlled.</para>
- </summary>
- </member>
- <member name="?:UnityEngine.Video.VideoPlayer.errorReceived(UnityEngine.Video.VideoPlayer/ErrorEventHandler)">
- <summary>
- <para>Errors such as HTTP connection problems are reported through this callback.</para>
- </summary>
- <param name="value"></param>
- </member>
- <member name="P:UnityEngine.Video.VideoPlayer.externalReferenceTime">
- <summary>
- <para>Reference time of the external clock the Video.VideoPlayer uses to correct its drift.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Video.VideoPlayer.frame">
- <summary>
- <para>The frame index currently being displayed by the VideoPlayer.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Video.VideoPlayer.frameCount">
- <summary>
- <para>Number of frames in the current video content.</para>
- </summary>
- </member>
- <member name="?:UnityEngine.Video.VideoPlayer.frameDropped(UnityEngine.Video.VideoPlayer/EventHandler)">
- <summary>
- <para>[NOT YET IMPLEMENTED] Invoked when the video decoder does not produce a frame as per the time source during playback.</para>
- </summary>
- <param name="value"></param>
- </member>
- <member name="P:UnityEngine.Video.VideoPlayer.frameRate">
- <summary>
- <para>The frame rate of the clip or URL in frames/second. (Read Only).</para>
- </summary>
- </member>
- <member name="?:UnityEngine.Video.VideoPlayer.frameReady(UnityEngine.Video.VideoPlayer/FrameReadyEventHandler)">
- <summary>
- <para>Invoked when a new frame is ready.</para>
- </summary>
- <param name="value"></param>
- </member>
- <member name="P:UnityEngine.Video.VideoPlayer.isLooping">
- <summary>
- <para>Determines whether the VideoPlayer restarts from the beginning when it reaches the end of the clip.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Video.VideoPlayer.isPlaying">
- <summary>
- <para>Whether content is being played. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Video.VideoPlayer.isPrepared">
- <summary>
- <para>Whether the VideoPlayer has successfully prepared the content to be played. (Read Only)</para>
- </summary>
- </member>
- <member name="?:UnityEngine.Video.VideoPlayer.loopPointReached(UnityEngine.Video.VideoPlayer/EventHandler)">
- <summary>
- <para>Invoked when the VideoPlayer reaches the end of the content to play.</para>
- </summary>
- <param name="value"></param>
- </member>
- <member name="P:UnityEngine.Video.VideoPlayer.playbackSpeed">
- <summary>
- <para>Factor by which the basic playback rate will be multiplied.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Video.VideoPlayer.playOnAwake">
- <summary>
- <para>Whether the content will start playing back as soon as the component awakes.</para>
- </summary>
- </member>
- <member name="?:UnityEngine.Video.VideoPlayer.prepareCompleted(UnityEngine.Video.VideoPlayer/EventHandler)">
- <summary>
- <para>Invoked when the VideoPlayer preparation is complete.</para>
- </summary>
- <param name="value"></param>
- </member>
- <member name="P:UnityEngine.Video.VideoPlayer.renderMode">
- <summary>
- <para>Where the video content will be drawn.</para>
- </summary>
- </member>
- <member name="?:UnityEngine.Video.VideoPlayer.seekCompleted(UnityEngine.Video.VideoPlayer/EventHandler)">
- <summary>
- <para>Invoke after a seek operation completes.</para>
- </summary>
- <param name="value"></param>
- </member>
- <member name="P:UnityEngine.Video.VideoPlayer.sendFrameReadyEvents">
- <summary>
- <para>Enables the frameReady events.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Video.VideoPlayer.skipOnDrop">
- <summary>
- <para>Whether the VideoPlayer is allowed to skip frames to catch up with current time.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Video.VideoPlayer.source">
- <summary>
- <para>The source that the VideoPlayer uses for playback.</para>
- </summary>
- </member>
- <member name="?:UnityEngine.Video.VideoPlayer.started(UnityEngine.Video.VideoPlayer/EventHandler)">
- <summary>
- <para>Invoked immediately after Play is called.</para>
- </summary>
- <param name="value"></param>
- </member>
- <member name="P:UnityEngine.Video.VideoPlayer.targetCamera">
- <summary>
- <para>Camera component to draw to when Video.VideoPlayer.renderMode is set to either Video.VideoRenderMode.CameraFarPlane or Video.VideoRenderMode.CameraNearPlane.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Video.VideoPlayer.targetCamera3DLayout">
- <summary>
- <para>Type of 3D content contained in the source video media.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Video.VideoPlayer.targetCameraAlpha">
- <summary>
- <para>Overall transparency level of the target camera plane video.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Video.VideoPlayer.targetMaterialProperty">
- <summary>
- <para>Material texture property which is targeted when Video.VideoPlayer.renderMode is set to Video.VideoTarget.MaterialOverride.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Video.VideoPlayer.targetMaterialRenderer">
- <summary>
- <para>Renderer which is targeted when Video.VideoPlayer.renderMode is set to Video.VideoTarget.MaterialOverride</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Video.VideoPlayer.targetTexture">
- <summary>
- <para>RenderTexture to draw to when Video.VideoPlayer.renderMode is set to Video.VideoTarget.RenderTexture.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Video.VideoPlayer.texture">
- <summary>
- <para>Internal texture in which video content is placed.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Video.VideoPlayer.time">
- <summary>
- <para>The VideoPlayer current time in seconds.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Video.VideoPlayer.timeReference">
- <summary>
- <para>The clock that the Video.VideoPlayer observes to detect and correct drift.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Video.VideoPlayer.timeSource">
- <summary>
- <para>[NOT YET IMPLEMENTED] The source used used by the VideoPlayer to derive its current time.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Video.VideoPlayer.url">
- <summary>
- <para>The file or HTTP URL that the VideoPlayer will read content from.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Video.VideoPlayer.waitForFirstFrame">
- <summary>
- <para>Determines whether the VideoPlayer will wait for the first frame to be loaded into the texture before starting playback when Video.VideoPlayer.playOnAwake is on.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Video.VideoPlayer.EnableAudioTrack(System.UInt16,System.Boolean)">
- <summary>
- <para>Enable/disable audio track decoding. Only effective when the VideoPlayer is not currently playing.</para>
- </summary>
- <param name="trackIndex">Index of the audio track to enable/disable.</param>
- <param name="enabled">True for enabling the track. False for disabling the track.</param>
- </member>
- <member name="T:UnityEngine.Video.VideoPlayer.ErrorEventHandler">
- <summary>
- <para>Delegate type for VideoPlayer events that contain an error message.</para>
- </summary>
- <param name="source">The VideoPlayer that is emitting the event.</param>
- <param name="message">Message describing the error just encountered.</param>
- </member>
- <member name="T:UnityEngine.Video.VideoPlayer.EventHandler">
- <summary>
- <para>Delegate type for all parameter-less events emitted by VideoPlayers.</para>
- </summary>
- <param name="source">The VideoPlayer that is emitting the event.</param>
- </member>
- <member name="T:UnityEngine.Video.VideoPlayer.FrameReadyEventHandler">
- <summary>
- <para>Delegate type for VideoPlayer events that carry a frame number.</para>
- </summary>
- <param name="source">The VideoPlayer that is emitting the event.</param>
- <param name="frameNum">The frame the VideoPlayer is now at.</param>
- <param name="frameIdx"></param>
- </member>
- <member name="M:UnityEngine.Video.VideoPlayer.GetAudioChannelCount(System.UInt16)">
- <summary>
- <para>The number of audio channels in the specified audio track.</para>
- </summary>
- <param name="trackIndex">Index for the audio track being queried.</param>
- <returns>
- <para>Number of audio channels.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Video.VideoPlayer.GetAudioLanguageCode(System.UInt16)">
- <summary>
- <para>Returns the language code, if any, for the specified track.</para>
- </summary>
- <param name="trackIndex">Index of the audio track to query.</param>
- <returns>
- <para>Language code.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Video.VideoPlayer.GetDirectAudioMute(System.UInt16)">
- <summary>
- <para>Get the direct-output audio mute status for the specified track.</para>
- </summary>
- <param name="trackIndex"></param>
- </member>
- <member name="M:UnityEngine.Video.VideoPlayer.GetDirectAudioVolume(System.UInt16)">
- <summary>
- <para>Return the direct-output volume for specified track.</para>
- </summary>
- <param name="trackIndex">Track index for which the volume is queried.</param>
- <returns>
- <para>Volume, between 0 and 1.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Video.VideoPlayer.GetTargetAudioSource(System.UInt16)">
- <summary>
- <para>Gets the AudioSource that will receive audio samples for the specified track if Video.VideoPlayer.audioOutputMode is set to Video.VideoAudioOutputMode.AudioSource.</para>
- </summary>
- <param name="trackIndex">Index of the audio track for which the AudioSource is wanted.</param>
- <returns>
- <para>The source associated with the audio track.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Video.VideoPlayer.IsAudioTrackEnabled(System.UInt16)">
- <summary>
- <para>Returns whether decoding for the specified audio track is enabled. See Video.VideoPlayer.EnableAudioTrack for distinction with mute.</para>
- </summary>
- <param name="trackIndex">Index of the audio track being queried.</param>
- <returns>
- <para>True if decoding for the specified audio track is enabled.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Video.VideoPlayer.Pause">
- <summary>
- <para>Pauses the playback and leaves the current time intact.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Video.VideoPlayer.Play">
- <summary>
- <para>Starts playback.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Video.VideoPlayer.Prepare">
- <summary>
- <para>Initiates playback engine prepration.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Video.VideoPlayer.SetDirectAudioMute(System.UInt16,System.Boolean)">
- <summary>
- <para>Set the direct-output audio mute status for the specified track.</para>
- </summary>
- <param name="trackIndex">Track index for which the mute is set.</param>
- <param name="mute">Mute on/off.</param>
- </member>
- <member name="M:UnityEngine.Video.VideoPlayer.SetDirectAudioVolume(System.UInt16,System.Single)">
- <summary>
- <para>Set the direct-output audio volume for the specified track.</para>
- </summary>
- <param name="trackIndex">Track index for which the volume is set.</param>
- <param name="volume">New volume, between 0 and 1.</param>
- </member>
- <member name="M:UnityEngine.Video.VideoPlayer.SetTargetAudioSource(System.UInt16,UnityEngine.AudioSource)">
- <summary>
- <para>Sets the AudioSource that will receive audio samples for the specified track if this audio target is selected with Video.VideoPlayer.audioOutputMode.</para>
- </summary>
- <param name="trackIndex">Index of the audio track to associate with the specified AudioSource.</param>
- <param name="source">AudioSource to associate with the audio track.</param>
- </member>
- <member name="M:UnityEngine.Video.VideoPlayer.StepForward">
- <summary>
- <para>Advances the current time by one frame immediately.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Video.VideoPlayer.Stop">
- <summary>
- <para>Pauses the playback and sets the current time to 0.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Video.VideoPlayer.TimeEventHandler">
- <summary>
- <para>Delegate type for VideoPlayer events that carry a time position.</para>
- </summary>
- <param name="source">The VideoPlayer that is emitting the event.</param>
- <param name="seconds">Time position.</param>
- </member>
- <member name="T:UnityEngine.Video.VideoRenderMode">
- <summary>
- <para>Type of destination for the images read by a VideoPlayer.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Video.VideoRenderMode.APIOnly">
- <summary>
- <para>Don't draw the video content anywhere, but still make it available via the VideoPlayer's texture property in the API.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Video.VideoRenderMode.CameraFarPlane">
- <summary>
- <para>Draw video content behind a camera's scene.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Video.VideoRenderMode.CameraNearPlane">
- <summary>
- <para>Draw video content in front of a camera's scene.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Video.VideoRenderMode.MaterialOverride">
- <summary>
- <para>Draw the video content into a user-specified property of the current GameObject's material.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Video.VideoRenderMode.RenderTexture">
- <summary>
- <para>Draw video content into a RenderTexture.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Video.VideoSource">
- <summary>
- <para>Source of the video content for a VideoPlayer.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Video.VideoSource.Url">
- <summary>
- <para>Use the current URL as the video content source.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Video.VideoSource.VideoClip">
- <summary>
- <para>Use the current clip as the video content source.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Video.VideoTimeReference">
- <summary>
- <para>The clock that the Video.VideoPlayer observes to detect and correct drift.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Video.VideoTimeReference.ExternalTime">
- <summary>
- <para>External reference clock the Video.VideoPlayer observes to detect and correct drift.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Video.VideoTimeReference.Freerun">
- <summary>
- <para>Disables the drift detection.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Video.VideoTimeReference.InternalTime">
- <summary>
- <para>Internal reference clock the Video.VideoPlayer observes to detect and correct drift.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Video.VideoTimeSource">
- <summary>
- <para>Time source followed by the Video.VideoPlayer when reading content.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Video.VideoTimeSource.AudioDSPTimeSource">
- <summary>
- <para>The audio hardware clock.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Video.VideoTimeSource.GameTimeSource">
- <summary>
- <para>The unscaled game time as defined by Time.realtimeSinceStartup.</para>
- </summary>
- </member>
- </members>
-</doc>
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.WindModule.dll b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.WindModule.dll
deleted file mode 100644
index 1b718ec..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.WindModule.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.WindModule.xml b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.WindModule.xml
deleted file mode 100644
index 626a79e..0000000
--- a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.WindModule.xml
+++ /dev/null
@@ -1,68 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
-<doc>
- <members>
- <assembly>
- <name>UnityEngine.WindModule</name>
- </assembly>
- <member name="A:UnityEngine.WindModule">
- <summary>
- <para>The Wind module implements the WindZone component which can affect terrain rendering and particle simulations.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.WindZone">
- <summary>
- <para>Wind Zones add realism to the trees you create by making them wave their branches and leaves as if blown by the wind.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.WindZone.mode">
- <summary>
- <para>Defines the type of wind zone to be used (Spherical or Directional).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.WindZone.radius">
- <summary>
- <para>Radius of the Spherical Wind Zone (only active if the WindZoneMode is set to Spherical).</para>
- </summary>
- </member>
- <member name="P:UnityEngine.WindZone.windMain">
- <summary>
- <para>The primary wind force.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.WindZone.windPulseFrequency">
- <summary>
- <para>Defines the frequency of the wind changes.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.WindZone.windPulseMagnitude">
- <summary>
- <para>Defines how much the wind changes over time.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.WindZone.windTurbulence">
- <summary>
- <para>The turbulence wind force.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.WindZone.#ctor">
- <summary>
- <para>The constructor.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.WindZoneMode">
- <summary>
- <para>Modes a Wind Zone can have, either Spherical or Directional.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.WindZoneMode.Directional">
- <summary>
- <para>Wind zone affects the entire scene in one direction.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.WindZoneMode.Spherical">
- <summary>
- <para>Wind zone only has an effect inside the radius, and has a falloff from the center towards the edge.</para>
- </summary>
- </member>
- </members>
-</doc>
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.XRModule.dll b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.XRModule.dll
deleted file mode 100644
index 9aff109..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.XRModule.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.XRModule.xml b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.XRModule.xml
deleted file mode 100644
index edba217..0000000
--- a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.XRModule.xml
+++ /dev/null
@@ -1,954 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
-<doc>
- <members>
- <assembly>
- <name>UnityEngine.XRModule</name>
- </assembly>
- <member name="T:UnityEngine.Experimental.Subsystem">
- <summary>
- <para>An Subsystem is initialized from an SubsystemDescriptor for a given Subsystem (Example, Input, Environment, Display, etc.) and provides an interface to interact with that given Subsystem until it is Destroyed. After an Subsystem is created it can be Started or Stopped to turn on and off functionality (and preserve performance). The base type for Subsystem only exposes this functionality; this class is designed to be a base class for derived classes that expose more functionality specific to a given Subsystem.
-
- Note: initializing a second Subsystem from the same SubsystemDescriptor will return a reference to the existing Subsystem as only one Subsystem is currently allowed for a single Subsystem provider.
- </para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.Subsystem.Destroy">
- <summary>
- <para>Destroys this instance of a subsystem.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.Subsystem.Start">
- <summary>
- <para>Starts an instance of a subsystem.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.Subsystem.Stop">
- <summary>
- <para>Stops an instance of a subsystem.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.SubsystemDescriptor`1">
- <summary>
- <para>Information about a subsystem that can be queried before creating a subsystem instance.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.SubsystemDescriptor_1.Create">
- <summary>
- <para>Creates an Subsystem from this descriptor.</para>
- </summary>
- <returns>
- <para>Instance of subsystem.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.Experimental.SubsystemManager">
- <summary>
- <para>Gives access to subsystems which provide additional functionality through plugins.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.SubsystemManager.GetInstances(System.Collections.Generic.List`1&lt;T&gt;)">
- <summary>
- <para>Returns active Subsystems of a specific instance type.</para>
- </summary>
- <param name="instances">Active instances.</param>
- </member>
- <member name="M:UnityEngine.Experimental.SubsystemManager.GetSubsystemDescriptors(System.Collections.Generic.List`1&lt;T&gt;)">
- <summary>
- <para>Returns a list of SubsystemDescriptors which describe additional functionality that can be enabled.</para>
- </summary>
- <param name="descriptors">Subsystem specific descriptors.</param>
- </member>
- <member name="T:UnityEngine.Experimental.XR.BoundedPlane">
- <summary>
- <para>Structure describing a bounded plane representing a real-world surface.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.XR.BoundedPlane.Alignment">
- <summary>
- <para>The alignment of the plane, e.g., horizontal or vertical.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.XR.BoundedPlane.Center">
- <summary>
- <para>Center point of the plane in device space.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.XR.BoundedPlane.GetCorners(UnityEngine.Vector3&amp;,UnityEngine.Vector3&amp;,UnityEngine.Vector3&amp;,UnityEngine.Vector3&amp;)">
- <summary>
- <para>Outputs four points, in device space, representing the four corners of the plane. The corners are in clockwise order.</para>
- </summary>
- <param name="p0">The vertex of the first corner.</param>
- <param name="p1">The vertex of the second corner.</param>
- <param name="p2">The vertex of the third corner.</param>
- <param name="p3">The vertex of the fourth corner.</param>
- </member>
- <member name="P:UnityEngine.Experimental.XR.BoundedPlane.Height">
- <summary>
- <para>Current height of the plane.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.XR.BoundedPlane.Id">
- <summary>
- <para>A session-unique identifier for the plane.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.XR.BoundedPlane.Normal">
- <summary>
- <para>Normal vector of the plane in device space.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.XR.BoundedPlane.Plane">
- <summary>
- <para>Returns the infinite Plane associated with this BoundedPlane.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.XR.BoundedPlane.Pose">
- <summary>
- <para>Pose of the plane in device space.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.XR.BoundedPlane.Size">
- <summary>
- <para>Current size of the plane.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.XR.BoundedPlane.SubsumedById">
- <summary>
- <para>A session-unique identifier for the BoundedPlane that subsumed this plane.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.XR.BoundedPlane.TryGetBoundary(System.Collections.Generic.List`1&lt;UnityEngine.Vector3&gt;)">
- <summary>
- <para>Try to retrieve a list of positions in device space describing current plane boundary.</para>
- </summary>
- <param name="boundaryOut">A list of vertices representing the boundary.</param>
- <returns>
- <para>True if the plane exists (i.e., is still being tracked), otherwise false.</para>
- </returns>
- </member>
- <member name="P:UnityEngine.Experimental.XR.BoundedPlane.Width">
- <summary>
- <para>Current width of the plane.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.XR.FrameReceivedEventArgs">
- <summary>
- <para>Structure containing data passed during Frame Received Event.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.XR.FrameReceivedEventArgs.CameraSubsystem">
- <summary>
- <para>Reference to the XRCameraSubsystem associated with this event.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.XR.PlaneAddedEventArgs">
- <summary>
- <para>Contains data supplied to a XRPlaneSubsystem.PlaneAdded event.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.XR.PlaneAddedEventArgs.Plane">
- <summary>
- <para>The BoundedPlane that was added.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.XR.PlaneAddedEventArgs.PlaneSubsystem">
- <summary>
- <para>A reference to the PlaneSubsystem object from which the event originated.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.XR.PlaneAlignment">
- <summary>
- <para>Describes current plane alignment in mixed reality space.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.XR.PlaneAlignment.Horizontal">
- <summary>
- <para>Plane has horizontal alignment.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.XR.PlaneAlignment.NonAxis">
- <summary>
- <para>Plane is not alligned along cardinal (X, Y or Z) axis.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.XR.PlaneAlignment.Vertical">
- <summary>
- <para>Plane has vertical alignment.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.XR.PlaneRemovedEventArgs">
- <summary>
- <para>Contains data supplied to a XRPlaneSubsystem.PlaneRemoved event.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.XR.PlaneRemovedEventArgs.Plane">
- <summary>
- <para>The BoundedPlane that was removed.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.XR.PlaneRemovedEventArgs.PlaneSubsystem">
- <summary>
- <para>A reference to the XRPlaneSubsystem object from which the event originated.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.XR.PlaneUpdatedEventArgs">
- <summary>
- <para>Contains data supplied to a XRPlaneSubsystem.PlaneUpdated event.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.XR.PlaneUpdatedEventArgs.Plane">
- <summary>
- <para>The BoundedPlane that was updated.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.XR.PlaneUpdatedEventArgs.PlaneSubsystem">
- <summary>
- <para>A reference to the XRPlaneSubsystem object from which the event originated.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.XR.PointCloudUpdatedEventArgs">
- <summary>
- <para>Contains data supplied to a XRDepth.PointCloudUpdated event.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.XR.PointCloudUpdatedEventArgs.DepthSubsystem">
- <summary>
- <para>A reference to the XRDepthSubsystem object from which the event originated.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.XR.ReferencePoint">
- <summary>
- <para>Describes the transform data of a real-world point.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.XR.ReferencePoint.Id">
- <summary>
- <para>ID for the reference point that is unique across the session.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.XR.ReferencePoint.Pose">
- <summary>
- <para>The pose (position and rotation) of the reference point. Respond to changes in this pose to correct for changes in the device's understanding of where this point is in the real world.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.XR.ReferencePoint.TrackingState">
- <summary>
- <para>The TrackingState of the reference point.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.XR.ReferencePointUpdatedEventArgs">
- <summary>
- <para>Data to be passed to the user when the device corrects its understanding of the world enough that the ReferencePoint's position or rotation has changed.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.XR.ReferencePointUpdatedEventArgs.PreviousPose">
- <summary>
- <para>The previous Pose of the ReferencePoint, prior to this event.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.XR.ReferencePointUpdatedEventArgs.PreviousTrackingState">
- <summary>
- <para>The previous TrackingState of the ReferencePoint, prior to this event.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.XR.ReferencePointUpdatedEventArgs.ReferencePoint">
- <summary>
- <para>The reference point that has the value of its position, rotation, or both changed enough through the device correcting its understanding of where this point should be located in device space.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.XR.SessionTrackingStateChangedEventArgs">
- <summary>
- <para>Structure defining Tracking State Changed event arguments passed when tracking state changes.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.XR.SessionTrackingStateChangedEventArgs.NewState">
- <summary>
- <para>New Tracking State.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.XR.SessionTrackingStateChangedEventArgs.SessionSubsystem">
- <summary>
- <para>Reference to the XRSessionSubsystem object associated with the event.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.XR.TrackableId">
- <summary>
- <para>A session-unique identifier for trackables in the environment, e.g., planes and feature points.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.XR.TrackableId.InvalidId">
- <summary>
- <para>Represents an invalid id.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.XR.TrackableId.ToString">
- <summary>
- <para>Generates a nicely formatted version of the id.</para>
- </summary>
- <returns>
- <para>A string unique to this id</para>
- </returns>
- </member>
- <member name="T:UnityEngine.Experimental.XR.TrackableType">
- <summary>
- <para>A trackable is feature in the physical environment that a device is able to track, such as a plane.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.XR.TrackableType.All">
- <summary>
- <para>All trackables (planes and point cloud)</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.XR.TrackableType.FeaturePoint">
- <summary>
- <para>A feature point.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.XR.TrackableType.None">
- <summary>
- <para>No trackable.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.XR.TrackableType.PlaneEstimated">
- <summary>
- <para>An estimated plane.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.XR.TrackableType.Planes">
- <summary>
- <para>Any of the plane types.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.XR.TrackableType.PlaneWithinBounds">
- <summary>
- <para>Within the BoundedPlane.Size of a BoundedPlane</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.XR.TrackableType.PlaneWithinInfinity">
- <summary>
- <para>The infinite plane of a BoundedPlane</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.XR.TrackableType.PlaneWithinPolygon">
- <summary>
- <para>The boundary of a BoundedPlane</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.XR.TrackingState">
- <summary>
- <para>Current tracking state of the device.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.XR.TrackingState.Tracking">
- <summary>
- <para>Tracking is currently working.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.XR.TrackingState.Unavailable">
- <summary>
- <para>Tracking is not available.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.Experimental.XR.TrackingState.Unknown">
- <summary>
- <para>Tracking state is unknown.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.XR.XRCameraSubsystem">
- <summary>
- <para>Provides access to a device's camera.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.XR.XRCameraSubsystem.Camera">
- <summary>
- <para>Set current Camera component within the app to be used by this XRCameraInstance.</para>
- </summary>
- </member>
- <member name="?:UnityEngine.Experimental.XR.XRCameraSubsystem.FrameReceived(System.Action`1&lt;UnityEngine.Experimental.XR.FrameReceivedEventArgs&gt;)">
- <summary>
- <para>Event raised when a new camera frame is received.</para>
- </summary>
- <param name="value"></param>
- </member>
- <member name="M:UnityEngine.Experimental.XR.XRCameraSubsystem.GetTextures(System.Collections.Generic.List`1&lt;UnityEngine.Texture2D&gt;)">
- <summary>
- <para>Fills the provided texturesOut with the texture(s) associated with the XRCameraSubsystem.</para>
- </summary>
- <param name="texturesOut">A List of Texture2D to be filled. Passing null will throw an ArgumentNullException.</param>
- </member>
- <member name="P:UnityEngine.Experimental.XR.XRCameraSubsystem.LastUpdatedFrame">
- <summary>
- <para>The frame during which the camera subsystem was last successfully updated.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.XR.XRCameraSubsystem.LightEstimationRequested">
- <summary>
- <para>True if the XRCameraSubsystem should try to provide light estimation.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.XR.XRCameraSubsystem.Material">
- <summary>
- <para>Set current Material to be used while rendering to the render target.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.XR.XRCameraSubsystem.TryGetAverageBrightness(System.Single&amp;)">
- <summary>
- <para>Provides brightness for the whole image as an average of all pixels' brightness.</para>
- </summary>
- <param name="averageBrightness">An estimated average brightness for the environment.</param>
- <returns>
- <para>Returns true if average brigthness was provided.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.XR.XRCameraSubsystem.TryGetAverageColorTemperature(System.Single&amp;)">
- <summary>
- <para>Provides color temperature for the whole image as an average of all pixels' color temperature.</para>
- </summary>
- <param name="averageColorTemperature">An estimated color temperature.</param>
- <returns>
- <para>Return true if succesful.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.XR.XRCameraSubsystem.TryGetDisplayMatrix(UnityEngine.Matrix4x4&amp;)">
- <summary>
- <para>Provides display matrix defining how texture is being rendered on the screen.</para>
- </summary>
- <param name="displayMatrix"></param>
- </member>
- <member name="M:UnityEngine.Experimental.XR.XRCameraSubsystem.TryGetProjectionMatrix(UnityEngine.Matrix4x4&amp;)">
- <summary>
- <para>Provides projection matrix used by camera subsystem.</para>
- </summary>
- <param name="projectionMatrix"></param>
- </member>
- <member name="M:UnityEngine.Experimental.XR.XRCameraSubsystem.TryGetShaderName(System.String&amp;)">
- <summary>
- <para>Provides shader name used by Camera subsystem to render texture.</para>
- </summary>
- <param name="shaderName"></param>
- </member>
- <member name="M:UnityEngine.Experimental.XR.XRCameraSubsystem.TryGetTimestamp(System.Int64&amp;)">
- <summary>
- <para>Provides timestamp.</para>
- </summary>
- <param name="timestampNs"></param>
- </member>
- <member name="T:UnityEngine.Experimental.XR.XRCameraSubsystemDescriptor">
- <summary>
- <para>Class providing information about XRCameraSubsystem registration.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.XR.XRCameraSubsystemDescriptor.ProvidesAverageBrightness">
- <summary>
- <para>Specifies if current subsystem is allowed to provide average brightness.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.XR.XRCameraSubsystemDescriptor.ProvidesAverageColorTemperature">
- <summary>
- <para>Specifies if current subsystem is allowed to provide average camera temperature.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.XR.XRCameraSubsystemDescriptor.ProvidesDisplayMatrix">
- <summary>
- <para>Specifies if current subsystem is allowed to provide display matrix.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.XR.XRCameraSubsystemDescriptor.ProvidesProjectionMatrix">
- <summary>
- <para>Specifies if current subsystem is allowed to provide projection matrix.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.XR.XRCameraSubsystemDescriptor.ProvidesTimestamp">
- <summary>
- <para>Specifies if current subsystem is allowed to provide timestamp.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.XR.XRDepthSubsystem">
- <summary>
- <para>Provides access to depth data of the physical environment, such as a point cloud.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.XR.XRDepthSubsystem.GetConfidence(System.Collections.Generic.List`1&lt;System.Single&gt;)">
- <summary>
- <para>Retrieves the confidence values for each point in the point cloud.</para>
- </summary>
- <param name="confidenceOut">A list of floats containing all confidence values for the point cloud.</param>
- </member>
- <member name="M:UnityEngine.Experimental.XR.XRDepthSubsystem.GetPoints(System.Collections.Generic.List`1&lt;UnityEngine.Vector3&gt;)">
- <summary>
- <para>Retrieves the point cloud points.</para>
- </summary>
- <param name="pointsOut">A list of Vector3s containing all points in the point cloud.</param>
- </member>
- <member name="P:UnityEngine.Experimental.XR.XRDepthSubsystem.LastUpdatedFrame">
- <summary>
- <para>The frame during which the point cloud was last updated.</para>
- </summary>
- </member>
- <member name="?:UnityEngine.Experimental.XR.XRDepthSubsystem.PointCloudUpdated(System.Action`1&lt;UnityEngine.Experimental.XR.PointCloudUpdatedEventArgs&gt;)">
- <summary>
- <para>Raised once during each frame in which the point cloud is updated.</para>
- </summary>
- <param name="value"></param>
- </member>
- <member name="T:UnityEngine.Experimental.XR.XRDepthSubsystemDescriptor">
- <summary>
- <para>Class providing information about XRDepthSubsystem registration.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.XR.XRDepthSubsystemDescriptor.SupportsFeaturePoints">
- <summary>
- <para>When true, XRDepthSubsystem will provide list of feature points detected so far.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.XR.XRInputSubsystem">
- <summary>
- <para>XRInputSubsystem
-Instance is used to enable and disable the inputs coming from a specific plugin.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.XR.XRInputSubsystemDescriptor">
- <summary>
- <para>Information about an Input subsystem.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.XR.XRInputSubsystemDescriptor.disablesLegacyInput">
- <summary>
- <para>When true, will suppress legacy support for Daydream, Oculus, OpenVR, and Windows MR built directly into the Unity runtime from generating input. This is useful when adding an XRInputSubsystem that supports these devices.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.XR.XRPlaneSubsystem">
- <summary>
- <para>Provides methods, events, and properties that provides information about planes detected in the environment. </para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.XR.XRPlaneSubsystem.GetAllPlanes(System.Collections.Generic.List`1&lt;UnityEngine.Experimental.XR.BoundedPlane&gt;)">
- <summary>
- <para>Get all the BoundedPlanes currently tracked by the system.</para>
- </summary>
- <param name="planesOut">A list of BoundedPlanes containing all planes currently tracked by the system.</param>
- </member>
- <member name="P:UnityEngine.Experimental.XR.XRPlaneSubsystem.LastUpdatedFrame">
- <summary>
- <para>The frame during which the planes were last updated.</para>
- </summary>
- </member>
- <member name="?:UnityEngine.Experimental.XR.XRPlaneSubsystem.PlaneAdded(System.Action`1&lt;UnityEngine.Experimental.XR.PlaneAddedEventArgs&gt;)">
- <summary>
- <para>Raised for each BoundedPlane that has been added in the current frame.</para>
- </summary>
- <param name="value"></param>
- </member>
- <member name="?:UnityEngine.Experimental.XR.XRPlaneSubsystem.PlaneRemoved(System.Action`1&lt;UnityEngine.Experimental.XR.PlaneRemovedEventArgs&gt;)">
- <summary>
- <para>Raised for each BoundedPlane that has been removed in the current frame.</para>
- </summary>
- <param name="value"></param>
- </member>
- <member name="?:UnityEngine.Experimental.XR.XRPlaneSubsystem.PlaneUpdated(System.Action`1&lt;UnityEngine.Experimental.XR.PlaneUpdatedEventArgs&gt;)">
- <summary>
- <para>Raised for each plane that has been updated in the current frame.</para>
- </summary>
- <param name="value"></param>
- </member>
- <member name="M:UnityEngine.Experimental.XR.XRPlaneSubsystem.TryGetPlane(UnityEngine.Experimental.XR.TrackableId,UnityEngine.Experimental.XR.BoundedPlane&amp;)">
- <summary>
- <para>Get a BoundedPlane by TrackableId</para>
- </summary>
- <param name="planeId">The session-unique TrackableId of the plane to get.</param>
- <param name="plane">The BoundedPlane with the supplied planeId</param>
- <returns>
- <para>True if the BoundedPlane with planeId exists, false otherwise.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.XR.XRPlaneSubsystem.TryGetPlaneBoundary(UnityEngine.Experimental.XR.TrackableId,System.Collections.Generic.List`1&lt;UnityEngine.Vector3&gt;)">
- <summary>
- <para>Try to retrieve a list of positions in device space describing the current plane boundary.</para>
- </summary>
- <param name="planeId">The session-unique TrackableId of the plane.</param>
- <param name="boundaryOut">A list of vertices representing the plane's boundary.</param>
- <returns>
- <para>True if the plane exists (i.e., is still being tracked), otherwise false.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.Experimental.XR.XRPlaneSubsystemDescriptor">
- <summary>
- <para>Class providing information about XRPlaneSubsystem registration.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.XR.XRRaycastHit">
- <summary>
- <para>Structure describing the result of a XRRaycastSubsystem.Raycast hit.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.XR.XRRaycastHit.Distance">
- <summary>
- <para>The distance, in meters, from the screen to the hit's XRRaycastSubsystemHit.Position.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.XR.XRRaycastHit.HitType">
- <summary>
- <para>The TrackableType(s) that were hit.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.XR.XRRaycastHit.Pose">
- <summary>
- <para>The position and rotation of the hit result in device space where the ray hit the trackable.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.XR.XRRaycastHit.TrackableId">
- <summary>
- <para>The TrackableId of the trackable that was hit by the raycast.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.XR.XRRaycastSubsystem">
- <summary>
- <para>Provides methods and properties that allow for querying portions of the physical environment that are near a provided specified ray. These trackables include planes and depth data.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.XR.XRRaycastSubsystem.Raycast(UnityEngine.Vector3,System.Collections.Generic.List`1&lt;UnityEngine.Experimental.XR.XRRaycastHit&gt;,UnityEngine.Experimental.XR.TrackableType)">
- <summary>
- <para>Casts a ray from a screen point against selected trackables (e.g., planes and feature points).</para>
- </summary>
- <param name="screenPoint">The screen point from which to cast.</param>
- <param name="hitResults">The resulting list of XRRaycastHit.</param>
- <param name="trackableTypeMask">An optional mask of TrackableType to raycast against.</param>
- </member>
- <member name="M:UnityEngine.Experimental.XR.XRRaycastSubsystem.Raycast(UnityEngine.Ray,UnityEngine.Experimental.XR.XRDepthSubsystem,UnityEngine.Experimental.XR.XRPlaneSubsystem,System.Collections.Generic.List`1&lt;UnityEngine.Experimental.XR.XRRaycastHit&gt;,UnityEngine.Experimental.XR.TrackableType,System.Single)">
- <summary>
- <para>Casts a ray using ray against selected trackables (e.g., planes and feature points).</para>
- </summary>
- <param name="ray">The Ray to use.</param>
- <param name="depthSubsystem">The XRDepthSubsystem to raycast against. May be null.</param>
- <param name="planeSubsystem">The XRPlaneSubsystem to raycast against. May be null.</param>
- <param name="hitResults">The resulting list of XRRaycastHit.</param>
- <param name="trackableTypeMask">An optional mask of TrackableType to raycast against.</param>
- <param name="pointCloudRaycastAngleInDegrees">When raycasting against feature points, cast a cone with this angle.</param>
- </member>
- <member name="T:UnityEngine.Experimental.XR.XRRaycastSubsystemDescriptor">
- <summary>
- <para>Class providing information about XRRaycastSubsystem registration.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.XR.XRReferencePointSubsystem">
- <summary>
- <para>Provides methods and properties that allow for querying, creating, and removing of reference points. These reference points are cues to the XRSessionSubsystem that indicate areas of interest in the environment which helps assure that tracking of these points remains accurate.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Experimental.XR.XRReferencePointSubsystem.GetAllReferencePoints(System.Collections.Generic.List`1&lt;UnityEngine.Experimental.XR.ReferencePoint&gt;)">
- <summary>
- <para>Retrieves all ReferencePoints added by calls to XRReferencePointSubsystem.TryAddReferencePoint.</para>
- </summary>
- <param name="referencePointsOut">A list of ReferencePoints containing all reference points.</param>
- </member>
- <member name="P:UnityEngine.Experimental.XR.XRReferencePointSubsystem.LastUpdatedFrame">
- <summary>
- <para>The frame during which the reference points were last updated.</para>
- </summary>
- </member>
- <member name="?:UnityEngine.Experimental.XR.XRReferencePointSubsystem.ReferencePointUpdated(System.Action`1&lt;UnityEngine.Experimental.XR.ReferencePointUpdatedEventArgs&gt;)">
- <summary>
- <para>Raised each frame for each ReferencePoint that had the values of its position, rotation, or both changed enough by the device correcting its understanding of where the point should be located in Unity space.</para>
- </summary>
- <param name="value"></param>
- </member>
- <member name="M:UnityEngine.Experimental.XR.XRReferencePointSubsystem.TryAddReferencePoint(UnityEngine.Vector3,UnityEngine.Quaternion,UnityEngine.Experimental.XR.TrackableId&amp;)">
- <summary>
- <para>Attempt to add a ReferencePoint that gets tracked by the device.</para>
- </summary>
- <param name="position">Current position, in device space, of a point you want the device to track.</param>
- <param name="rotation">Current rotation, in device space, of a point you want the device to track.</param>
- <param name="referencePointId">If this method returns true, this is filled out with the ID (unique to the session) of the point.</param>
- <returns>
- <para>If the ReferencePoint was added successfully, this method returns true. Otherwise, it returns false.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.XR.XRReferencePointSubsystem.TryAddReferencePoint(UnityEngine.Pose,UnityEngine.Experimental.XR.TrackableId&amp;)">
- <summary>
- <para>Attempt to add a ReferencePoint that gets tracked by the device.</para>
- </summary>
- <param name="pose">Current pose, in device space, of a point you want the device to track.</param>
- <param name="referencePointId">If this method returns true, this is filled out with the ID (unique to the session) of the point.</param>
- <returns>
- <para>If the ReferencePoint was added successfully, this method returns true. Otherwise, it returns false.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.XR.XRReferencePointSubsystem.TryGetReferencePoint(UnityEngine.Experimental.XR.TrackableId,UnityEngine.Experimental.XR.ReferencePoint&amp;)">
- <summary>
- <para>Attempt to retrieve a ReferencePoint.</para>
- </summary>
- <param name="referencePointId">The ID of the ReferencePoint that TryAddReferencePoint filled out when you added this point.</param>
- <param name="referencePoint">The ReferencePoint to be filled out that matches the ID passed in.</param>
- <returns>
- <para>If the ReferencePoint was found and filled out successfully, this method returns true. Otherwise, it return false.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Experimental.XR.XRReferencePointSubsystem.TryRemoveReferencePoint(UnityEngine.Experimental.XR.TrackableId)">
- <summary>
- <para>Attempt to remove a ReferencePoint getting tracked by the device.</para>
- </summary>
- <param name="referencePointId">ID of the ReferencePoint you wish to remove so the device no longer tries to track it.</param>
- <returns>
- <para>If the ReferencePoint was removed successfully, this method returns true. Otherwise, it returns false.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.Experimental.XR.XRReferencePointSubsystemDescriptor">
- <summary>
- <para>Class providing information about XRReferencePointSubsystem registration.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.Experimental.XR.XRSessionSubsystem">
- <summary>
- <para>A collection of methods and properties used to interact with and configure an XR session.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.XR.XRSessionSubsystem.LastUpdatedFrame">
- <summary>
- <para>The frame during which the tracking state was last updated.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Experimental.XR.XRSessionSubsystem.TrackingState">
- <summary>
- <para>Get current tracking status of the device.</para>
- </summary>
- </member>
- <member name="?:UnityEngine.Experimental.XR.XRSessionSubsystem.TrackingStateChanged(System.Action`1&lt;UnityEngine.Experimental.XR.SessionTrackingStateChangedEventArgs&gt;)">
- <summary>
- <para>Raised when the TrackingState changes.</para>
- </summary>
- <param name="value"></param>
- </member>
- <member name="T:UnityEngine.Experimental.XR.XRSessionSubsystemDescriptor">
- <summary>
- <para>Class providing information about XRSessionSubsystem registration.</para>
- </summary>
- </member>
- <member name="A:UnityEngine.XRModule">
- <summary>
- <para>The XR module contains the VR and AR related platform support functionality.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.XR.InputTracking">
- <summary>
- <para>A collection of methods and properties for interacting with the XR tracking system.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.XR.InputTracking.disablePositionalTracking">
- <summary>
- <para>Disables positional tracking in XR. This takes effect the next time the head pose is sampled. If set to true the camera only tracks headset rotation state.</para>
- </summary>
- </member>
- <member name="?:UnityEngine.XR.InputTracking.nodeAdded(System.Action`1&lt;UnityEngine.XR.XRNodeState&gt;)">
- <summary>
- <para>Called when a tracked node is added to the underlying XR system.</para>
- </summary>
- <param name="nodeState">Describes the node that has been added.</param>
- <param name="value"></param>
- </member>
- <member name="?:UnityEngine.XR.InputTracking.nodeRemoved(System.Action`1&lt;UnityEngine.XR.XRNodeState&gt;)">
- <summary>
- <para>Called when a tracked node is removed from the underlying XR system.</para>
- </summary>
- <param name="nodeState">Describes the node that has been removed.</param>
- <param name="value"></param>
- </member>
- <member name="?:UnityEngine.XR.InputTracking.trackingAcquired(System.Action`1&lt;UnityEngine.XR.XRNodeState&gt;)">
- <summary>
- <para>Called when a tracked node begins reporting tracking information.</para>
- </summary>
- <param name="nodeState">Describes the node that has begun being tracked.</param>
- <param name="value"></param>
- </member>
- <member name="?:UnityEngine.XR.InputTracking.trackingLost(System.Action`1&lt;UnityEngine.XR.XRNodeState&gt;)">
- <summary>
- <para>Called when a tracked node stops reporting tracking information.</para>
- </summary>
- <param name="nodeState">Describes the node that has lost tracking.</param>
- <param name="value"></param>
- </member>
- <member name="M:UnityEngine.XR.InputTracking.GetLocalPosition(UnityEngine.XR.XRNode)">
- <summary>
- <para>Gets the position of a specific node.</para>
- </summary>
- <param name="node">Specifies which node's position should be returned.</param>
- <returns>
- <para>The position of the node in its local tracking space.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.XR.InputTracking.GetLocalRotation(UnityEngine.XR.XRNode)">
- <summary>
- <para>Gets the rotation of a specific node.</para>
- </summary>
- <param name="node">Specifies which node's rotation should be returned.</param>
- <returns>
- <para>The rotation of the node in its local tracking space.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.XR.InputTracking.GetNodeName(System.UInt64)">
- <summary>
- <para>Accepts the unique identifier for a tracked node and returns a friendly name for it.</para>
- </summary>
- <param name="uniqueID">The unique identifier for the Node index.</param>
- <returns>
- <para>The name of the tracked node if the given 64-bit identifier maps to a currently tracked node. Empty string otherwise.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.XR.InputTracking.GetNodeStates">
- <summary>
- <para>Describes all currently connected XRNodes and provides available tracking states for each.</para>
- </summary>
- <param name="nodeStates">A list that is populated with XR.XRNodeState objects.</param>
- </member>
- <member name="M:UnityEngine.XR.InputTracking.Recenter">
- <summary>
- <para>Center tracking to the current position and orientation of the HMD.</para>
- </summary>
- </member>
- <member name="T:UnityEngine.XR.XRNode">
- <summary>
- <para>Enumeration of tracked XR nodes which can be updated by XR input.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.XR.XRNode.CenterEye">
- <summary>
- <para>Node representing a point between the left and right eyes.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.XR.XRNode.GameController">
- <summary>
- <para>Represents a tracked game Controller not associated with a specific hand.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.XR.XRNode.HardwareTracker">
- <summary>
- <para>Represents a physical device that provides tracking data for objects to which it is attached.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.XR.XRNode.Head">
- <summary>
- <para>Node representing the user's head.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.XR.XRNode.LeftEye">
- <summary>
- <para>Node representing the left eye.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.XR.XRNode.LeftHand">
- <summary>
- <para>Node representing the left hand.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.XR.XRNode.RightEye">
- <summary>
- <para>Node representing the right eye.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.XR.XRNode.RightHand">
- <summary>
- <para>Node representing the right hand.</para>
- </summary>
- </member>
- <member name="F:UnityEngine.XR.XRNode.TrackingReference">
- <summary>
- <para>Represents a stationary physical device that can be used as a point of reference in the tracked area.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.XR.XRNodeState.acceleration">
- <summary>
- <para>Sets the vector representing the current acceleration of the tracked node.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.XR.XRNodeState.angularAcceleration">
- <summary>
- <para>Sets the vector representing the current angular acceleration of the tracked node.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.XR.XRNodeState.angularVelocity">
- <summary>
- <para>Sets the vector representing the current angular velocity of the tracked node.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.XR.XRNodeState.nodeType">
- <summary>
- <para>The type of the tracked node as specified in XR.XRNode.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.XR.XRNodeState.position">
- <summary>
- <para>Sets the vector representing the current position of the tracked node.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.XR.XRNodeState.rotation">
- <summary>
- <para>Sets the quaternion representing the current rotation of the tracked node.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.XR.XRNodeState.tracked">
- <summary>
- <para>
- Set to true if the node is presently being tracked by the underlying XR system,
-and false if the node is not presently being tracked by the underlying XR system.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.XR.XRNodeState.uniqueID">
- <summary>
- <para>The unique identifier of the tracked node.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.XR.XRNodeState.velocity">
- <summary>
- <para>Sets the vector representing the current velocity of the tracked node.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.XR.XRNodeState.TryGetAcceleration">
- <summary>
- <para>Attempt to retrieve a vector representing the current acceleration of the tracked node.</para>
- </summary>
- <returns>
- <para>True if the acceleration was set in the output parameter. False if the acceleration is not available due to limitations of the underlying platform or if the node is not presently tracked.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.XR.XRNodeState.TryGetAngularAcceleration(UnityEngine.Vector3&amp;)">
- <summary>
- <para>Attempt to retrieve a Vector3 representing the current angular acceleration of the tracked node.</para>
- </summary>
- <param name="angularAcceleration"></param>
- <returns>
- <para>True if the angular acceleration was set in the output parameter. False if the angular acceleration is not available due to limitations of the underlying platform or if the node is not presently tracked.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.XR.XRNodeState.TryGetAngularVelocity(UnityEngine.Vector3&amp;)">
- <summary>
- <para>Attempt to retrieve a Vector3 representing the current angular velocity of the tracked node.</para>
- </summary>
- <param name="angularVelocity"></param>
- <returns>
- <para>True if the angular velocity was set in the output parameter. False if the angular velocity is not available due to limitations of the underlying platform or if the node is not presently tracked.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.XR.XRNodeState.TryGetPosition">
- <summary>
- <para>Attempt to retrieve a vector representing the current position of the tracked node.</para>
- </summary>
- <returns>
- <para>True if the position was set in the output parameter. False if the position is not available due to limitations of the underlying platform or if the node is not presently tracked.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.XR.XRNodeState.TryGetRotation">
- <summary>
- <para>Attempt to retrieve a quaternion representing the current rotation of the tracked node.</para>
- </summary>
- <returns>
- <para>True if the rotation was set in the output parameter. False if the rotation is not available due to limitations of the underlying platform or if the node is not presently tracked.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.XR.XRNodeState.TryGetVelocity">
- <summary>
- <para>Attempt to retrieve a vector representing the current velocity of the tracked node.</para>
- </summary>
- <returns>
- <para>True if the velocity was set in the output parameter. False if the velocity is not available due to limitations of the underlying platform or if the node is not presently tracked.</para>
- </returns>
- </member>
- </members>
-</doc>
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.dll b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.dll
deleted file mode 100755
index b08a5de..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.xml b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.xml
deleted file mode 100644
index a465812..0000000
--- a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/UnityEngine.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
-<doc>
- <members>
- <assembly>
- <name>UnityEngine</name>
- </assembly>
- </members>
-</doc>
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/mscorlib.dll b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/mscorlib.dll
deleted file mode 100755
index 694c788..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Managed/mscorlib.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Resources/unity_builtin_extra b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Resources/unity_builtin_extra
deleted file mode 100644
index 7a2b539..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/Resources/unity_builtin_extra and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/boot.config b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/boot.config
deleted file mode 100644
index 7c9a5a2..0000000
--- a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/boot.config
+++ /dev/null
@@ -1,3 +0,0 @@
-gfx-enable-native-gfx-jobs=
-wait-for-native-debugger=0
-vr-enabled=0
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/globalgamemanagers b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/globalgamemanagers
deleted file mode 100644
index 1d75691..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/globalgamemanagers and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/globalgamemanagers.assets b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/globalgamemanagers.assets
deleted file mode 100644
index 937d33a..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/globalgamemanagers.assets and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/level0 b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/level0
deleted file mode 100644
index 0662cee..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/level0 and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/sharedassets0.assets b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/sharedassets0.assets
deleted file mode 100644
index 010b3c8..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/sharedassets0.assets and /dev/null differ
diff --git a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/sharedassets0.assets.resS b/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/sharedassets0.assets.resS
deleted file mode 100644
index a6dc4ca..0000000
Binary files a/EscapeTheGhost/Library/PlayerDataCache/Linux64/Data/sharedassets0.assets.resS and /dev/null differ
diff --git a/EscapeTheGhost/Library/ProjectSettings.asset b/EscapeTheGhost/Library/ProjectSettings.asset
deleted file mode 100644
index 39b8c01..0000000
--- a/EscapeTheGhost/Library/ProjectSettings.asset
+++ /dev/null
@@ -1,722 +0,0 @@
-%YAML 1.1
-%TAG !u! tag:unity3d.com,2011:
---- !u!129 &1
-PlayerSettings:
- m_ObjectHideFlags: 0
- serializedVersion: 15
- productGUID: 63bab7eeb335448028ab46cee417621d
- AndroidProfiler: 0
- AndroidFilterTouchesWhenObscured: 0
- AndroidEnableSustainedPerformanceMode: 0
- defaultScreenOrientation: 4
- targetDevice: 2
- useOnDemandResources: 0
- accelerometerFrequency: 60
- companyName: ch.epfl.chili
- productName: EscapeTheGhost
- defaultCursor: {fileID: 0}
- cursorHotspot: {x: 0, y: 0}
- m_SplashScreenBackgroundColor: {r: 0.13725491, g: 0.12156863, b: 0.1254902, a: 1}
- m_ShowUnitySplashScreen: 1
- m_ShowUnitySplashLogo: 1
- m_SplashScreenOverlayOpacity: 1
- m_SplashScreenAnimation: 1
- m_SplashScreenLogoStyle: 1
- m_SplashScreenDrawMode: 0
- m_SplashScreenBackgroundAnimationZoom: 1
- m_SplashScreenLogoAnimationZoom: 1
- m_SplashScreenBackgroundLandscapeAspect: 1
- m_SplashScreenBackgroundPortraitAspect: 1
- m_SplashScreenBackgroundLandscapeUvs:
- serializedVersion: 2
- x: 0
- y: 0
- width: 1
- height: 1
- m_SplashScreenBackgroundPortraitUvs:
- serializedVersion: 2
- x: 0
- y: 0
- width: 1
- height: 1
- m_SplashScreenLogos: []
- m_VirtualRealitySplashScreen: {fileID: 0}
- m_HolographicTrackingLossScreen: {fileID: 0}
- defaultScreenWidth: 1024
- defaultScreenHeight: 768
- defaultScreenWidthWeb: 960
- defaultScreenHeightWeb: 600
- m_StereoRenderingPath: 0
- m_ActiveColorSpace: 0
- m_MTRendering: 1
- m_StackTraceTypes: 010000000100000001000000010000000100000001000000
- iosShowActivityIndicatorOnLoading: -1
- androidShowActivityIndicatorOnLoading: -1
- iosAppInBackgroundBehavior: 0
- displayResolutionDialog: 1
- iosAllowHTTPDownload: 1
- allowedAutorotateToPortrait: 1
- allowedAutorotateToPortraitUpsideDown: 1
- allowedAutorotateToLandscapeRight: 1
- allowedAutorotateToLandscapeLeft: 1
- useOSAutorotation: 1
- use32BitDisplayBuffer: 1
- preserveFramebufferAlpha: 0
- disableDepthAndStencilBuffers: 0
- androidBlitType: 0
- defaultIsNativeResolution: 1
- macRetinaSupport: 1
- runInBackground: 1
- captureSingleScreen: 0
- muteOtherAudioSources: 0
- Prepare IOS For Recording: 0
- Force IOS Speakers When Recording: 0
- deferSystemGesturesMode: 0
- hideHomeButton: 0
- submitAnalytics: 1
- usePlayerLog: 1
- bakeCollisionMeshes: 0
- forceSingleInstance: 0
- resizableWindow: 0
- useMacAppStoreValidation: 0
- macAppStoreCategory: public.app-category.games
- gpuSkinning: 0
- graphicsJobs: 0
- xboxPIXTextureCapture: 0
- xboxEnableAvatar: 0
- xboxEnableKinect: 0
- xboxEnableKinectAutoTracking: 0
- xboxEnableFitness: 0
- visibleInBackground: 1
- allowFullscreenSwitch: 1
- graphicsJobMode: 0
- fullscreenMode: 1
- xboxSpeechDB: 0
- xboxEnableHeadOrientation: 0
- xboxEnableGuest: 0
- xboxEnablePIXSampling: 0
- metalFramebufferOnly: 0
- n3dsDisableStereoscopicView: 0
- n3dsEnableSharedListOpt: 1
- n3dsEnableVSync: 0
- xboxOneResolution: 0
- xboxOneSResolution: 0
- xboxOneXResolution: 3
- xboxOneMonoLoggingLevel: 0
- xboxOneLoggingLevel: 1
- xboxOneDisableEsram: 0
- xboxOnePresentImmediateThreshold: 0
- switchQueueCommandMemory: 0
- videoMemoryForVertexBuffers: 0
- psp2PowerMode: 0
- psp2AcquireBGM: 1
- vulkanEnableSetSRGBWrite: 0
- vulkanUseSWCommandBuffers: 0
- m_SupportedAspectRatios:
- 4:3: 1
- 5:4: 1
- 16:10: 1
- 16:9: 1
- Others: 1
- bundleVersion: 0.1
- preloadedAssets: []
- metroInputSource: 0
- wsaTransparentSwapchain: 0
- m_HolographicPauseOnTrackingLoss: 1
- xboxOneDisableKinectGpuReservation: 0
- xboxOneEnable7thCore: 0
- vrSettings:
- cardboard:
- depthFormat: 0
- enableTransitionView: 0
- daydream:
- depthFormat: 0
- useSustainedPerformanceMode: 0
- enableVideoLayer: 0
- useProtectedVideoMemory: 0
- minimumSupportedHeadTracking: 0
- maximumSupportedHeadTracking: 1
- hololens:
- depthFormat: 1
- depthBufferSharingEnabled: 0
- oculus:
- sharedDepthBuffer: 0
- dashSupport: 0
- enable360StereoCapture: 0
- protectGraphicsMemory: 0
- useHDRDisplay: 0
- m_ColorGamuts: 00000000
- targetPixelDensity: 30
- resolutionScalingMode: 0
- androidSupportedAspectRatio: 1
- androidMaxAspectRatio: 2.1
- applicationIdentifier:
- Android: ch.epfl.chili.escapetheghost
- Standalone: com.Company.ProductName
- buildNumber: {}
- AndroidBundleVersionCode: 1
- AndroidMinSdkVersion: 16
- AndroidTargetSdkVersion: 0
- AndroidPreferredInstallLocation: 1
- aotOptions:
- stripEngineCode: 1
- iPhoneStrippingLevel: 0
- iPhoneScriptCallOptimization: 0
- ForceInternetPermission: 0
- ForceSDCardPermission: 0
- CreateWallpaper: 0
- APKExpansionFiles: 0
- keepLoadedShadersAlive: 0
- StripUnusedMeshComponents: 1
- VertexChannelCompressionMask: 4054
- iPhoneSdkVersion: 988
- iOSTargetOSVersionString: 8.0
- tvOSSdkVersion: 0
- tvOSRequireExtendedGameController: 0
- tvOSTargetOSVersionString: 9.0
- uIPrerenderedIcon: 0
- uIRequiresPersistentWiFi: 0
- uIRequiresFullScreen: 1
- uIStatusBarHidden: 1
- uIExitOnSuspend: 0
- uIStatusBarStyle: 0
- iPhoneSplashScreen: {fileID: 0}
- iPhoneHighResSplashScreen: {fileID: 0}
- iPhoneTallHighResSplashScreen: {fileID: 0}
- iPhone47inSplashScreen: {fileID: 0}
- iPhone55inPortraitSplashScreen: {fileID: 0}
- iPhone55inLandscapeSplashScreen: {fileID: 0}
- iPhone58inPortraitSplashScreen: {fileID: 0}
- iPhone58inLandscapeSplashScreen: {fileID: 0}
- iPadPortraitSplashScreen: {fileID: 0}
- iPadHighResPortraitSplashScreen: {fileID: 0}
- iPadLandscapeSplashScreen: {fileID: 0}
- iPadHighResLandscapeSplashScreen: {fileID: 0}
- appleTVSplashScreen: {fileID: 0}
- appleTVSplashScreen2x: {fileID: 0}
- tvOSSmallIconLayers: []
- tvOSSmallIconLayers2x: []
- tvOSLargeIconLayers: []
- tvOSLargeIconLayers2x: []
- tvOSTopShelfImageLayers: []
- tvOSTopShelfImageLayers2x: []
- tvOSTopShelfImageWideLayers: []
- tvOSTopShelfImageWideLayers2x: []
- iOSLaunchScreenType: 0
- iOSLaunchScreenPortrait: {fileID: 0}
- iOSLaunchScreenLandscape: {fileID: 0}
- iOSLaunchScreenBackgroundColor:
- serializedVersion: 2
- rgba: 0
- iOSLaunchScreenFillPct: 100
- iOSLaunchScreenSize: 100
- iOSLaunchScreenCustomXibPath:
- iOSLaunchScreeniPadType: 0
- iOSLaunchScreeniPadImage: {fileID: 0}
- iOSLaunchScreeniPadBackgroundColor:
- serializedVersion: 2
- rgba: 0
- iOSLaunchScreeniPadFillPct: 100
- iOSLaunchScreeniPadSize: 100
- iOSLaunchScreeniPadCustomXibPath:
- iOSUseLaunchScreenStoryboard: 0
- iOSLaunchScreenCustomStoryboardPath:
- iOSDeviceRequirements: []
- iOSURLSchemes: []
- iOSBackgroundModes: 0
- iOSMetalForceHardShadows: 0
- metalEditorSupport: 1
- metalAPIValidation: 1
- iOSRenderExtraFrameOnPause: 0
- appleDeveloperTeamID:
- iOSManualSigningProvisioningProfileID:
- tvOSManualSigningProvisioningProfileID:
- iOSManualSigningProvisioningProfileType: 0
- tvOSManualSigningProvisioningProfileType: 0
- appleEnableAutomaticSigning: 0
- iOSRequireARKit: 0
- appleEnableProMotion: 0
- vulkanEditorSupport: 0
- clonedFromGUID: 5f34be1353de5cf4398729fda238591b
- templatePackageId: com.unity.template.2d@1.0.1
- templateDefaultScene: Assets/Scenes/SampleScene.unity
- AndroidTargetArchitectures: 5
- AndroidSplashScreenScale: 0
- androidSplashScreen: {fileID: 0}
- AndroidKeystoreName:
- AndroidKeyaliasName:
- AndroidBuildApkPerCpuArchitecture: 0
- AndroidTVCompatibility: 1
- AndroidIsGame: 1
- AndroidEnableTango: 0
- androidEnableBanner: 1
- androidUseLowAccuracyLocation: 0
- m_AndroidBanners:
- - width: 320
- height: 180
- banner: {fileID: 0}
- androidGamepadSupportLevel: 0
- resolutionDialogBanner: {fileID: 0}
- m_BuildTargetIcons: []
- m_BuildTargetPlatformIcons:
- - m_BuildTarget: Android
- m_Icons:
- - m_Textures: []
- m_Width: 432
- m_Height: 432
- m_Kind: 2
- m_SubKind:
- - m_Textures: []
- m_Width: 324
- m_Height: 324
- m_Kind: 2
- m_SubKind:
- - m_Textures: []
- m_Width: 216
- m_Height: 216
- m_Kind: 2
- m_SubKind:
- - m_Textures: []
- m_Width: 162
- m_Height: 162
- m_Kind: 2
- m_SubKind:
- - m_Textures: []
- m_Width: 108
- m_Height: 108
- m_Kind: 2
- m_SubKind:
- - m_Textures: []
- m_Width: 81
- m_Height: 81
- m_Kind: 2
- m_SubKind:
- - m_Textures: []
- m_Width: 192
- m_Height: 192
- m_Kind: 1
- m_SubKind:
- - m_Textures: []
- m_Width: 144
- m_Height: 144
- m_Kind: 1
- m_SubKind:
- - m_Textures: []
- m_Width: 96
- m_Height: 96
- m_Kind: 1
- m_SubKind:
- - m_Textures: []
- m_Width: 72
- m_Height: 72
- m_Kind: 1
- m_SubKind:
- - m_Textures: []
- m_Width: 48
- m_Height: 48
- m_Kind: 1
- m_SubKind:
- - m_Textures: []
- m_Width: 36
- m_Height: 36
- m_Kind: 1
- m_SubKind:
- - m_Textures: []
- m_Width: 192
- m_Height: 192
- m_Kind: 0
- m_SubKind:
- - m_Textures: []
- m_Width: 144
- m_Height: 144
- m_Kind: 0
- m_SubKind:
- - m_Textures: []
- m_Width: 96
- m_Height: 96
- m_Kind: 0
- m_SubKind:
- - m_Textures: []
- m_Width: 72
- m_Height: 72
- m_Kind: 0
- m_SubKind:
- - m_Textures: []
- m_Width: 48
- m_Height: 48
- m_Kind: 0
- m_SubKind:
- - m_Textures: []
- m_Width: 36
- m_Height: 36
- m_Kind: 0
- m_SubKind:
- m_BuildTargetBatching: []
- m_BuildTargetGraphicsAPIs: []
- m_BuildTargetVRSettings: []
- m_BuildTargetEnableVuforiaSettings: []
- openGLRequireES31: 0
- openGLRequireES31AEP: 0
- m_TemplateCustomTags: {}
- mobileMTRendering:
- Android: 1
- iPhone: 1
- tvOS: 1
- m_BuildTargetGroupLightmapEncodingQuality: []
- m_BuildTargetGroupLightmapSettings: []
- playModeTestRunnerEnabled: 0
- runPlayModeTestAsEditModeTest: 0
- actionOnDotNetUnhandledException: 1
- enableInternalProfiler: 0
- logObjCUncaughtExceptions: 1
- enableCrashReportAPI: 0
- cameraUsageDescription:
- locationUsageDescription:
- microphoneUsageDescription:
- switchNetLibKey:
- switchSocketMemoryPoolSize: 6144
- switchSocketAllocatorPoolSize: 128
- switchSocketConcurrencyLimit: 14
- switchScreenResolutionBehavior: 2
- switchUseCPUProfiler: 0
- switchApplicationID: 0x01004b9000490000
- switchNSODependencies:
- switchTitleNames_0:
- switchTitleNames_1:
- switchTitleNames_2:
- switchTitleNames_3:
- switchTitleNames_4:
- switchTitleNames_5:
- switchTitleNames_6:
- switchTitleNames_7:
- switchTitleNames_8:
- switchTitleNames_9:
- switchTitleNames_10:
- switchTitleNames_11:
- switchTitleNames_12:
- switchTitleNames_13:
- switchTitleNames_14:
- switchPublisherNames_0:
- switchPublisherNames_1:
- switchPublisherNames_2:
- switchPublisherNames_3:
- switchPublisherNames_4:
- switchPublisherNames_5:
- switchPublisherNames_6:
- switchPublisherNames_7:
- switchPublisherNames_8:
- switchPublisherNames_9:
- switchPublisherNames_10:
- switchPublisherNames_11:
- switchPublisherNames_12:
- switchPublisherNames_13:
- switchPublisherNames_14:
- switchIcons_0: {fileID: 0}
- switchIcons_1: {fileID: 0}
- switchIcons_2: {fileID: 0}
- switchIcons_3: {fileID: 0}
- switchIcons_4: {fileID: 0}
- switchIcons_5: {fileID: 0}
- switchIcons_6: {fileID: 0}
- switchIcons_7: {fileID: 0}
- switchIcons_8: {fileID: 0}
- switchIcons_9: {fileID: 0}
- switchIcons_10: {fileID: 0}
- switchIcons_11: {fileID: 0}
- switchIcons_12: {fileID: 0}
- switchIcons_13: {fileID: 0}
- switchIcons_14: {fileID: 0}
- switchSmallIcons_0: {fileID: 0}
- switchSmallIcons_1: {fileID: 0}
- switchSmallIcons_2: {fileID: 0}
- switchSmallIcons_3: {fileID: 0}
- switchSmallIcons_4: {fileID: 0}
- switchSmallIcons_5: {fileID: 0}
- switchSmallIcons_6: {fileID: 0}
- switchSmallIcons_7: {fileID: 0}
- switchSmallIcons_8: {fileID: 0}
- switchSmallIcons_9: {fileID: 0}
- switchSmallIcons_10: {fileID: 0}
- switchSmallIcons_11: {fileID: 0}
- switchSmallIcons_12: {fileID: 0}
- switchSmallIcons_13: {fileID: 0}
- switchSmallIcons_14: {fileID: 0}
- switchManualHTML:
- switchAccessibleURLs:
- switchLegalInformation:
- switchMainThreadStackSize: 1048576
- switchPresenceGroupId:
- switchLogoHandling: 0
- switchReleaseVersion: 0
- switchDisplayVersion: 1.0.0
- switchStartupUserAccount: 0
- switchTouchScreenUsage: 0
- switchSupportedLanguagesMask: 0
- switchLogoType: 0
- switchApplicationErrorCodeCategory:
- switchUserAccountSaveDataSize: 0
- switchUserAccountSaveDataJournalSize: 0
- switchApplicationAttribute: 0
- switchCardSpecSize: -1
- switchCardSpecClock: -1
- switchRatingsMask: 0
- switchRatingsInt_0: 0
- switchRatingsInt_1: 0
- switchRatingsInt_2: 0
- switchRatingsInt_3: 0
- switchRatingsInt_4: 0
- switchRatingsInt_5: 0
- switchRatingsInt_6: 0
- switchRatingsInt_7: 0
- switchRatingsInt_8: 0
- switchRatingsInt_9: 0
- switchRatingsInt_10: 0
- switchRatingsInt_11: 0
- switchLocalCommunicationIds_0:
- switchLocalCommunicationIds_1:
- switchLocalCommunicationIds_2:
- switchLocalCommunicationIds_3:
- switchLocalCommunicationIds_4:
- switchLocalCommunicationIds_5:
- switchLocalCommunicationIds_6:
- switchLocalCommunicationIds_7:
- switchParentalControl: 0
- switchAllowsScreenshot: 1
- switchAllowsVideoCapturing: 1
- switchAllowsRuntimeAddOnContentInstall: 0
- switchDataLossConfirmation: 0
- switchSupportedNpadStyles: 3
- switchNativeFsCacheSize: 32
- switchIsHoldTypeHorizontal: 0
- switchSupportedNpadCount: 8
- switchSocketConfigEnabled: 0
- switchTcpInitialSendBufferSize: 32
- switchTcpInitialReceiveBufferSize: 64
- switchTcpAutoSendBufferSizeMax: 256
- switchTcpAutoReceiveBufferSizeMax: 256
- switchUdpSendBufferSize: 9
- switchUdpReceiveBufferSize: 42
- switchSocketBufferEfficiency: 4
- switchSocketInitializeEnabled: 1
- switchNetworkInterfaceManagerInitializeEnabled: 1
- switchPlayerConnectionEnabled: 1
- ps4NPAgeRating: 12
- ps4NPTitleSecret:
- ps4NPTrophyPackPath:
- ps4ParentalLevel: 11
- ps4ContentID: ED1633-NPXX51362_00-0000000000000000
- ps4Category: 0
- ps4MasterVersion: 01.00
- ps4AppVersion: 01.00
- ps4AppType: 0
- ps4ParamSfxPath:
- ps4VideoOutPixelFormat: 0
- ps4VideoOutInitialWidth: 1920
- ps4VideoOutBaseModeInitialWidth: 1920
- ps4VideoOutReprojectionRate: 60
- ps4PronunciationXMLPath:
- ps4PronunciationSIGPath:
- ps4BackgroundImagePath:
- ps4StartupImagePath:
- ps4StartupImagesFolder:
- ps4IconImagesFolder:
- ps4SaveDataImagePath:
- ps4SdkOverride:
- ps4BGMPath:
- ps4ShareFilePath:
- ps4ShareOverlayImagePath:
- ps4PrivacyGuardImagePath:
- ps4NPtitleDatPath:
- ps4RemotePlayKeyAssignment: -1
- ps4RemotePlayKeyMappingDir:
- ps4PlayTogetherPlayerCount: 0
- ps4EnterButtonAssignment: 1
- ps4ApplicationParam1: 0
- ps4ApplicationParam2: 0
- ps4ApplicationParam3: 0
- ps4ApplicationParam4: 0
- ps4DownloadDataSize: 0
- ps4GarlicHeapSize: 2048
- ps4ProGarlicHeapSize: 2560
- ps4Passcode: frAQBc8Wsa1xVPfvJcrgRYwTiizs2trQ
- ps4pnSessions: 1
- ps4pnPresence: 1
- ps4pnFriends: 1
- ps4pnGameCustomData: 1
- playerPrefsSupport: 0
- enableApplicationExit: 0
- restrictedAudioUsageRights: 0
- ps4UseResolutionFallback: 0
- ps4ReprojectionSupport: 0
- ps4UseAudio3dBackend: 0
- ps4SocialScreenEnabled: 0
- ps4ScriptOptimizationLevel: 0
- ps4Audio3dVirtualSpeakerCount: 14
- ps4attribCpuUsage: 0
- ps4PatchPkgPath:
- ps4PatchLatestPkgPath:
- ps4PatchChangeinfoPath:
- ps4PatchDayOne: 0
- ps4attribUserManagement: 0
- ps4attribMoveSupport: 0
- ps4attrib3DSupport: 0
- ps4attribShareSupport: 0
- ps4attribExclusiveVR: 0
- ps4disableAutoHideSplash: 0
- ps4videoRecordingFeaturesUsed: 0
- ps4contentSearchFeaturesUsed: 0
- ps4attribEyeToEyeDistanceSettingVR: 0
- ps4IncludedModules: []
- monoEnv:
- psp2Splashimage: {fileID: 0}
- psp2NPTrophyPackPath:
- psp2NPSupportGBMorGJP: 0
- psp2NPAgeRating: 12
- psp2NPTitleDatPath:
- psp2NPCommsID:
- psp2NPCommunicationsID:
- psp2NPCommsPassphrase:
- psp2NPCommsSig:
- psp2ParamSfxPath:
- psp2ManualPath:
- psp2LiveAreaGatePath:
- psp2LiveAreaBackroundPath:
- psp2LiveAreaPath:
- psp2LiveAreaTrialPath:
- psp2PatchChangeInfoPath:
- psp2PatchOriginalPackage:
- psp2PackagePassword: F69AzBlax3CF3EDNhm3soLBPh71Yexui
- psp2KeystoneFile:
- psp2MemoryExpansionMode: 0
- psp2DRMType: 0
- psp2StorageType: 0
- psp2MediaCapacity: 0
- psp2DLCConfigPath:
- psp2ThumbnailPath:
- psp2BackgroundPath:
- psp2SoundPath:
- psp2TrophyCommId:
- psp2TrophyPackagePath:
- psp2PackagedResourcesPath:
- psp2SaveDataQuota: 10240
- psp2ParentalLevel: 1
- psp2ShortTitle: Not Set
- psp2ContentID: IV0000-ABCD12345_00-0123456789ABCDEF
- psp2Category: 0
- psp2MasterVersion: 01.00
- psp2AppVersion: 01.00
- psp2TVBootMode: 0
- psp2EnterButtonAssignment: 2
- psp2TVDisableEmu: 0
- psp2AllowTwitterDialog: 1
- psp2Upgradable: 0
- psp2HealthWarning: 0
- psp2UseLibLocation: 0
- psp2InfoBarOnStartup: 0
- psp2InfoBarColor: 0
- psp2ScriptOptimizationLevel: 0
- splashScreenBackgroundSourceLandscape: {fileID: 0}
- splashScreenBackgroundSourcePortrait: {fileID: 0}
- spritePackerPolicy:
- webGLMemorySize: 256
- webGLExceptionSupport: 1
- webGLNameFilesAsHashes: 0
- webGLDataCaching: 1
- webGLDebugSymbols: 0
- webGLEmscriptenArgs:
- webGLModulesDirectory:
- webGLTemplate: APPLICATION:Default
- webGLAnalyzeBuildSize: 0
- webGLUseEmbeddedResources: 0
- webGLCompressionFormat: 1
- webGLLinkerTarget: 1
- scriptingDefineSymbols: {}
- platformArchitecture: {}
- scriptingBackend: {}
- il2cppCompilerConfiguration: {}
- incrementalIl2cppBuild: {}
- allowUnsafeCode: 0
- additionalIl2CppArgs:
- scriptingRuntimeVersion: 0
- apiCompatibilityLevelPerPlatform: {}
- m_RenderingPath: 1
- m_MobileRenderingPath: 1
- metroPackageName: Template_2D
- metroPackageVersion:
- metroCertificatePath:
- metroCertificatePassword:
- metroCertificateSubject:
- metroCertificateIssuer:
- metroCertificateNotAfter: 0000000000000000
- metroApplicationDescription: Template_2D
- wsaImages: {}
- metroTileShortName:
- metroTileShowName: 0
- metroMediumTileShowName: 0
- metroLargeTileShowName: 0
- metroWideTileShowName: 0
- metroDefaultTileSize: 1
- metroTileForegroundText: 2
- metroTileBackgroundColor: {r: 0.13333334, g: 0.17254902, b: 0.21568628, a: 0}
- metroSplashScreenBackgroundColor: {r: 0.12941177, g: 0.17254902, b: 0.21568628,
- a: 1}
- metroSplashScreenUseBackgroundColor: 0
- platformCapabilities: {}
- metroFTAName:
- metroFTAFileTypes: []
- metroProtocolName:
- metroCompilationOverrides: 1
- n3dsUseExtSaveData: 0
- n3dsCompressStaticMem: 1
- n3dsExtSaveDataNumber: 0x12345
- n3dsStackSize: 131072
- n3dsTargetPlatform: 2
- n3dsRegion: 7
- n3dsMediaSize: 0
- n3dsLogoStyle: 3
- n3dsTitle: GameName
- n3dsProductCode:
- n3dsApplicationId: 0xFF3FF
- XboxOneProductId:
- XboxOneUpdateKey:
- XboxOneSandboxId:
- XboxOneContentId:
- XboxOneTitleId:
- XboxOneSCId:
- XboxOneGameOsOverridePath:
- XboxOnePackagingOverridePath:
- XboxOneAppManifestOverridePath:
- XboxOneVersion: 1.0.0.0
- XboxOnePackageEncryption: 0
- XboxOnePackageUpdateGranularity: 2
- XboxOneDescription:
- XboxOneLanguage:
- - enus
- XboxOneCapability: []
- XboxOneGameRating: {}
- XboxOneIsContentPackage: 0
- XboxOneEnableGPUVariability: 0
- XboxOneSockets: {}
- XboxOneSplashScreen: {fileID: 0}
- XboxOneAllowedProductIds: []
- XboxOnePersistentLocalStorageSize: 0
- XboxOneXTitleMemory: 8
- xboxOneScriptCompiler: 0
- vrEditorSettings:
- daydream:
- daydreamIconForeground: {fileID: 0}
- daydreamIconBackground: {fileID: 0}
- cloudServicesEnabled:
- Build: 0
- Collab: 0
- ErrorHub: 0
- Hub: 0
- UNet: 0
- facebookSdkVersion: 7.9.4
- apiCompatibilityLevel: 2
- cloudProjectId: 16be371e-c8b2-4b7e-8015-a8a74fbc6ab8
- projectName: EscapeTheGhost
- organizationId: etoestja1
- cloudEnabled: 0
- enableNativePlatformBackendsForNewInputSystem: 0
- disableOldInputManagerSupport: 0
diff --git a/EscapeTheGhost/Library/ScriptAssemblies/Assembly-CSharp.dll b/EscapeTheGhost/Library/ScriptAssemblies/Assembly-CSharp.dll
deleted file mode 100755
index 898e597..0000000
Binary files a/EscapeTheGhost/Library/ScriptAssemblies/Assembly-CSharp.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/ScriptAssemblies/Assembly-CSharp.dll.mdb b/EscapeTheGhost/Library/ScriptAssemblies/Assembly-CSharp.dll.mdb
deleted file mode 100644
index 3256376..0000000
Binary files a/EscapeTheGhost/Library/ScriptAssemblies/Assembly-CSharp.dll.mdb and /dev/null differ
diff --git a/EscapeTheGhost/Library/ScriptAssemblies/BuiltinAssemblies.stamp b/EscapeTheGhost/Library/ScriptAssemblies/BuiltinAssemblies.stamp
deleted file mode 100644
index c311fe9..0000000
--- a/EscapeTheGhost/Library/ScriptAssemblies/BuiltinAssemblies.stamp
+++ /dev/null
@@ -1 +0,0 @@
-08d5f3c9b6953100.08d5f3c9b6953100
\ No newline at end of file
diff --git a/EscapeTheGhost/Library/ScriptAssemblies/Unity.PackageManagerUI.Editor.dll b/EscapeTheGhost/Library/ScriptAssemblies/Unity.PackageManagerUI.Editor.dll
deleted file mode 100755
index c808de6..0000000
Binary files a/EscapeTheGhost/Library/ScriptAssemblies/Unity.PackageManagerUI.Editor.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/ScriptAssemblies/Unity.PackageManagerUI.Editor.dll.mdb b/EscapeTheGhost/Library/ScriptAssemblies/Unity.PackageManagerUI.Editor.dll.mdb
deleted file mode 100644
index e4a8102..0000000
Binary files a/EscapeTheGhost/Library/ScriptAssemblies/Unity.PackageManagerUI.Editor.dll.mdb and /dev/null differ
diff --git a/EscapeTheGhost/Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll b/EscapeTheGhost/Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll
deleted file mode 100755
index feb05c8..0000000
Binary files a/EscapeTheGhost/Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll.mdb b/EscapeTheGhost/Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll.mdb
deleted file mode 100644
index 93cbd26..0000000
Binary files a/EscapeTheGhost/Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll.mdb and /dev/null differ
diff --git a/EscapeTheGhost/Library/ScriptAssemblies/Unity.TextMeshPro.dll b/EscapeTheGhost/Library/ScriptAssemblies/Unity.TextMeshPro.dll
deleted file mode 100755
index 1c6e27e..0000000
Binary files a/EscapeTheGhost/Library/ScriptAssemblies/Unity.TextMeshPro.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/ScriptAssemblies/Unity.TextMeshPro.dll.mdb b/EscapeTheGhost/Library/ScriptAssemblies/Unity.TextMeshPro.dll.mdb
deleted file mode 100644
index e6047bb..0000000
Binary files a/EscapeTheGhost/Library/ScriptAssemblies/Unity.TextMeshPro.dll.mdb and /dev/null differ
diff --git a/EscapeTheGhost/Library/ScriptAssemblies/UnityEditor.StandardEvents.dll b/EscapeTheGhost/Library/ScriptAssemblies/UnityEditor.StandardEvents.dll
deleted file mode 100755
index 1028312..0000000
Binary files a/EscapeTheGhost/Library/ScriptAssemblies/UnityEditor.StandardEvents.dll and /dev/null differ
diff --git a/EscapeTheGhost/Library/ScriptAssemblies/UnityEditor.StandardEvents.dll.mdb b/EscapeTheGhost/Library/ScriptAssemblies/UnityEditor.StandardEvents.dll.mdb
deleted file mode 100644
index b579f91..0000000
Binary files a/EscapeTheGhost/Library/ScriptAssemblies/UnityEditor.StandardEvents.dll.mdb and /dev/null differ
diff --git a/EscapeTheGhost/Library/ScriptMapper b/EscapeTheGhost/Library/ScriptMapper
deleted file mode 100644
index 4f238ba..0000000
Binary files a/EscapeTheGhost/Library/ScriptMapper and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache.db b/EscapeTheGhost/Library/ShaderCache.db
deleted file mode 100644
index 93f0bb9..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache.db and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/0/001834b6045ffe59e001e7abce8eacf2.bin b/EscapeTheGhost/Library/ShaderCache/0/001834b6045ffe59e001e7abce8eacf2.bin
deleted file mode 100644
index bfd2099..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/0/001834b6045ffe59e001e7abce8eacf2.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/0/00317d04f2510afe29ba956fc1cc7cd0.bin b/EscapeTheGhost/Library/ShaderCache/0/00317d04f2510afe29ba956fc1cc7cd0.bin
deleted file mode 100644
index 0f6167a..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/0/00317d04f2510afe29ba956fc1cc7cd0.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/0/00869398eccf93e0456dce552c67186b.bin b/EscapeTheGhost/Library/ShaderCache/0/00869398eccf93e0456dce552c67186b.bin
deleted file mode 100644
index 849b5a2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/0/00869398eccf93e0456dce552c67186b.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/0/00fc3a99bfd672bac708b4785bf225f9.bin b/EscapeTheGhost/Library/ShaderCache/0/00fc3a99bfd672bac708b4785bf225f9.bin
deleted file mode 100644
index 3753553..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/0/00fc3a99bfd672bac708b4785bf225f9.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/0/01a987e082cef6f2bb604d46adabc2b4.bin b/EscapeTheGhost/Library/ShaderCache/0/01a987e082cef6f2bb604d46adabc2b4.bin
deleted file mode 100644
index 58297ef..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/0/01a987e082cef6f2bb604d46adabc2b4.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/0/01cad02aa0a0bc655d955fb4da146445.bin b/EscapeTheGhost/Library/ShaderCache/0/01cad02aa0a0bc655d955fb4da146445.bin
deleted file mode 100644
index 479665b..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/0/01cad02aa0a0bc655d955fb4da146445.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/0/0335220992cbdc25dc35478749d6a3e7.bin b/EscapeTheGhost/Library/ShaderCache/0/0335220992cbdc25dc35478749d6a3e7.bin
deleted file mode 100644
index 849b5a2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/0/0335220992cbdc25dc35478749d6a3e7.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/0/0379d32794551ddc4e76dbb374e4b769.bin b/EscapeTheGhost/Library/ShaderCache/0/0379d32794551ddc4e76dbb374e4b769.bin
deleted file mode 100644
index f8b14df..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/0/0379d32794551ddc4e76dbb374e4b769.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/0/03f1a58f59d9875f151a3df561633ed0.bin b/EscapeTheGhost/Library/ShaderCache/0/03f1a58f59d9875f151a3df561633ed0.bin
deleted file mode 100644
index 2a15a1a..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/0/03f1a58f59d9875f151a3df561633ed0.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/0/049ef169a07013cdf72a50ea58edd5c0.bin b/EscapeTheGhost/Library/ShaderCache/0/049ef169a07013cdf72a50ea58edd5c0.bin
deleted file mode 100644
index ea0cc2f..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/0/049ef169a07013cdf72a50ea58edd5c0.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/0/04e94caba4be05d53606603be18ef351.bin b/EscapeTheGhost/Library/ShaderCache/0/04e94caba4be05d53606603be18ef351.bin
deleted file mode 100644
index 02a24c4..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/0/04e94caba4be05d53606603be18ef351.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/0/0505059a9dc3495b0b49a8691b4d8d43.bin b/EscapeTheGhost/Library/ShaderCache/0/0505059a9dc3495b0b49a8691b4d8d43.bin
deleted file mode 100644
index 534a67e..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/0/0505059a9dc3495b0b49a8691b4d8d43.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/0/0567cee6d9b07c8b34c9ba6eb6e87999.bin b/EscapeTheGhost/Library/ShaderCache/0/0567cee6d9b07c8b34c9ba6eb6e87999.bin
deleted file mode 100644
index 8a6bf51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/0/0567cee6d9b07c8b34c9ba6eb6e87999.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/0/06e268797bedb5e137690b62f0a5761c.bin b/EscapeTheGhost/Library/ShaderCache/0/06e268797bedb5e137690b62f0a5761c.bin
deleted file mode 100644
index ab8bcf7..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/0/06e268797bedb5e137690b62f0a5761c.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/0/08036325cd6e8b9445c16a0de0c5e371.bin b/EscapeTheGhost/Library/ShaderCache/0/08036325cd6e8b9445c16a0de0c5e371.bin
deleted file mode 100644
index c8d010a..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/0/08036325cd6e8b9445c16a0de0c5e371.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/0/08b76ef9479f74c14bafec9d538d0896.bin b/EscapeTheGhost/Library/ShaderCache/0/08b76ef9479f74c14bafec9d538d0896.bin
deleted file mode 100644
index 902941b..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/0/08b76ef9479f74c14bafec9d538d0896.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/0/08cc2e194ef26bdff16f01f6ade13f84.bin b/EscapeTheGhost/Library/ShaderCache/0/08cc2e194ef26bdff16f01f6ade13f84.bin
deleted file mode 100644
index 8c38bf0..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/0/08cc2e194ef26bdff16f01f6ade13f84.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/0/08ea78d7ee386309b68c582fe6aaa93e.bin b/EscapeTheGhost/Library/ShaderCache/0/08ea78d7ee386309b68c582fe6aaa93e.bin
deleted file mode 100644
index d379421..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/0/08ea78d7ee386309b68c582fe6aaa93e.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/0/0989d0c31d5bc01e2cf95a71a78f0cf7.bin b/EscapeTheGhost/Library/ShaderCache/0/0989d0c31d5bc01e2cf95a71a78f0cf7.bin
deleted file mode 100644
index 8a6bf51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/0/0989d0c31d5bc01e2cf95a71a78f0cf7.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/0/09ba8f480fc423d270b2dcfbab8cae1e.bin b/EscapeTheGhost/Library/ShaderCache/0/09ba8f480fc423d270b2dcfbab8cae1e.bin
deleted file mode 100644
index e0cfeb1..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/0/09ba8f480fc423d270b2dcfbab8cae1e.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/0/09fa1ad82e1534f6118c7db49a8aa382.bin b/EscapeTheGhost/Library/ShaderCache/0/09fa1ad82e1534f6118c7db49a8aa382.bin
deleted file mode 100644
index 79c1c93..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/0/09fa1ad82e1534f6118c7db49a8aa382.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/0/0d244b096faef86e777473bdf4e2518d.bin b/EscapeTheGhost/Library/ShaderCache/0/0d244b096faef86e777473bdf4e2518d.bin
deleted file mode 100644
index 7c362a6..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/0/0d244b096faef86e777473bdf4e2518d.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/0/0d32b6c014ad5d08f06700292bfc0da7.bin b/EscapeTheGhost/Library/ShaderCache/0/0d32b6c014ad5d08f06700292bfc0da7.bin
deleted file mode 100644
index c181092..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/0/0d32b6c014ad5d08f06700292bfc0da7.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/0/0dd28b39d72e1ce58ececa8f1e885a4f.bin b/EscapeTheGhost/Library/ShaderCache/0/0dd28b39d72e1ce58ececa8f1e885a4f.bin
deleted file mode 100644
index dac857d..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/0/0dd28b39d72e1ce58ececa8f1e885a4f.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/0/0f130de8440ad119c3fe3383994f34de.bin b/EscapeTheGhost/Library/ShaderCache/0/0f130de8440ad119c3fe3383994f34de.bin
deleted file mode 100644
index 8505f74..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/0/0f130de8440ad119c3fe3383994f34de.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/0/0f286cd991561e7fb8892d2c191c3f4a.bin b/EscapeTheGhost/Library/ShaderCache/0/0f286cd991561e7fb8892d2c191c3f4a.bin
deleted file mode 100644
index 849b5a2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/0/0f286cd991561e7fb8892d2c191c3f4a.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/0/0f42a123c2e12a279eb19bae151b663a.bin b/EscapeTheGhost/Library/ShaderCache/0/0f42a123c2e12a279eb19bae151b663a.bin
deleted file mode 100644
index 84dfc25..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/0/0f42a123c2e12a279eb19bae151b663a.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/0/0f827e9e62fa321d1138a4a2e83f8010.bin b/EscapeTheGhost/Library/ShaderCache/0/0f827e9e62fa321d1138a4a2e83f8010.bin
deleted file mode 100644
index b3c18e6..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/0/0f827e9e62fa321d1138a4a2e83f8010.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/0/0f9d40b1900862bde64ce70a425c2d6c.bin b/EscapeTheGhost/Library/ShaderCache/0/0f9d40b1900862bde64ce70a425c2d6c.bin
deleted file mode 100644
index 36f4b11..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/0/0f9d40b1900862bde64ce70a425c2d6c.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/0/0fa2809372ba427e3f0aeb9470290e09.bin b/EscapeTheGhost/Library/ShaderCache/0/0fa2809372ba427e3f0aeb9470290e09.bin
deleted file mode 100644
index bf83ab0..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/0/0fa2809372ba427e3f0aeb9470290e09.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/0/0fe6dcb417ca04c535be56d24d52cc58.bin b/EscapeTheGhost/Library/ShaderCache/0/0fe6dcb417ca04c535be56d24d52cc58.bin
deleted file mode 100644
index 92bf714..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/0/0fe6dcb417ca04c535be56d24d52cc58.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/1/101d79c1e5f3d6033617de335b47576d.bin b/EscapeTheGhost/Library/ShaderCache/1/101d79c1e5f3d6033617de335b47576d.bin
deleted file mode 100644
index 42d9cce..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/1/101d79c1e5f3d6033617de335b47576d.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/1/10989a2c9d355ed611f7da92a83e68e1.bin b/EscapeTheGhost/Library/ShaderCache/1/10989a2c9d355ed611f7da92a83e68e1.bin
deleted file mode 100644
index 849b5a2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/1/10989a2c9d355ed611f7da92a83e68e1.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/1/10d18c4eb027160d0cc97d72e5fec3fc.bin b/EscapeTheGhost/Library/ShaderCache/1/10d18c4eb027160d0cc97d72e5fec3fc.bin
deleted file mode 100644
index 7689bc5..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/1/10d18c4eb027160d0cc97d72e5fec3fc.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/1/10e9eabc270e9c3c3875bedbf1f6e98c.bin b/EscapeTheGhost/Library/ShaderCache/1/10e9eabc270e9c3c3875bedbf1f6e98c.bin
deleted file mode 100644
index 849b5a2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/1/10e9eabc270e9c3c3875bedbf1f6e98c.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/1/112fb9c505a142fdb768e6b66cc10624.bin b/EscapeTheGhost/Library/ShaderCache/1/112fb9c505a142fdb768e6b66cc10624.bin
deleted file mode 100644
index 8fc9891..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/1/112fb9c505a142fdb768e6b66cc10624.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/1/114c42989a4a5d49aee0a4eed806005b.bin b/EscapeTheGhost/Library/ShaderCache/1/114c42989a4a5d49aee0a4eed806005b.bin
deleted file mode 100644
index da2ef93..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/1/114c42989a4a5d49aee0a4eed806005b.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/1/11c291afcf62e81cb0f08bba3545f046.bin b/EscapeTheGhost/Library/ShaderCache/1/11c291afcf62e81cb0f08bba3545f046.bin
deleted file mode 100644
index 835f6e3..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/1/11c291afcf62e81cb0f08bba3545f046.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/1/11d2dc794024b87de9f1958504dac5e5.bin b/EscapeTheGhost/Library/ShaderCache/1/11d2dc794024b87de9f1958504dac5e5.bin
deleted file mode 100644
index 835f6e3..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/1/11d2dc794024b87de9f1958504dac5e5.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/1/11f7dd9f06c321b0b289ecc88545abaf.bin b/EscapeTheGhost/Library/ShaderCache/1/11f7dd9f06c321b0b289ecc88545abaf.bin
deleted file mode 100644
index 6b90e55..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/1/11f7dd9f06c321b0b289ecc88545abaf.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/1/120d2206563cc80b19c6870d0be02d61.bin b/EscapeTheGhost/Library/ShaderCache/1/120d2206563cc80b19c6870d0be02d61.bin
deleted file mode 100644
index b893d60..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/1/120d2206563cc80b19c6870d0be02d61.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/1/1255f06830a4968be49b39ebe6bef2a7.bin b/EscapeTheGhost/Library/ShaderCache/1/1255f06830a4968be49b39ebe6bef2a7.bin
deleted file mode 100644
index 27115dd..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/1/1255f06830a4968be49b39ebe6bef2a7.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/1/12adf2827f813b66f337f1f5a124bca9.bin b/EscapeTheGhost/Library/ShaderCache/1/12adf2827f813b66f337f1f5a124bca9.bin
deleted file mode 100644
index ddf4e98..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/1/12adf2827f813b66f337f1f5a124bca9.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/1/12cf88cdc15a541c8cba242377b821a0.bin b/EscapeTheGhost/Library/ShaderCache/1/12cf88cdc15a541c8cba242377b821a0.bin
deleted file mode 100644
index 849b5a2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/1/12cf88cdc15a541c8cba242377b821a0.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/1/12e106690043148a3d929bc75657263d.bin b/EscapeTheGhost/Library/ShaderCache/1/12e106690043148a3d929bc75657263d.bin
deleted file mode 100644
index 7b356eb..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/1/12e106690043148a3d929bc75657263d.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/1/12fe53862674855fa1a68c1b8bed0ccc.bin b/EscapeTheGhost/Library/ShaderCache/1/12fe53862674855fa1a68c1b8bed0ccc.bin
deleted file mode 100644
index 8a6bf51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/1/12fe53862674855fa1a68c1b8bed0ccc.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/1/1310d0edf17719e93e8345814707deba.bin b/EscapeTheGhost/Library/ShaderCache/1/1310d0edf17719e93e8345814707deba.bin
deleted file mode 100644
index 391a9b1..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/1/1310d0edf17719e93e8345814707deba.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/1/132daceec6f42594d05652b50952978e.bin b/EscapeTheGhost/Library/ShaderCache/1/132daceec6f42594d05652b50952978e.bin
deleted file mode 100644
index 428eeb4..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/1/132daceec6f42594d05652b50952978e.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/1/137b48c1b963fae90f58af65113575f0.bin b/EscapeTheGhost/Library/ShaderCache/1/137b48c1b963fae90f58af65113575f0.bin
deleted file mode 100644
index f9f9349..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/1/137b48c1b963fae90f58af65113575f0.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/1/1404e31a314e47299dd1ca951de72394.bin b/EscapeTheGhost/Library/ShaderCache/1/1404e31a314e47299dd1ca951de72394.bin
deleted file mode 100644
index f2f0b51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/1/1404e31a314e47299dd1ca951de72394.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/1/14707a9aecdaf53209d6d098eb2dd548.bin b/EscapeTheGhost/Library/ShaderCache/1/14707a9aecdaf53209d6d098eb2dd548.bin
deleted file mode 100644
index e1a23f9..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/1/14707a9aecdaf53209d6d098eb2dd548.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/1/1476b9325d79b159bc8a2e8fed63bf37.bin b/EscapeTheGhost/Library/ShaderCache/1/1476b9325d79b159bc8a2e8fed63bf37.bin
deleted file mode 100644
index f9f9349..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/1/1476b9325d79b159bc8a2e8fed63bf37.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/1/149ba0a036b95a85640d71f95f87f7dd.bin b/EscapeTheGhost/Library/ShaderCache/1/149ba0a036b95a85640d71f95f87f7dd.bin
deleted file mode 100644
index 782bc62..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/1/149ba0a036b95a85640d71f95f87f7dd.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/1/14ae563d631e58f6517b1933d2f1a350.bin b/EscapeTheGhost/Library/ShaderCache/1/14ae563d631e58f6517b1933d2f1a350.bin
deleted file mode 100644
index 8a6bf51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/1/14ae563d631e58f6517b1933d2f1a350.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/1/14d403cd82f576d6a8020c0ee88043e3.bin b/EscapeTheGhost/Library/ShaderCache/1/14d403cd82f576d6a8020c0ee88043e3.bin
deleted file mode 100644
index b893d60..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/1/14d403cd82f576d6a8020c0ee88043e3.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/1/154e3b6871fda55038b2a802df637e66.bin b/EscapeTheGhost/Library/ShaderCache/1/154e3b6871fda55038b2a802df637e66.bin
deleted file mode 100644
index 6ceed51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/1/154e3b6871fda55038b2a802df637e66.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/1/15c51c236ecb585ac63cd20f963112aa.bin b/EscapeTheGhost/Library/ShaderCache/1/15c51c236ecb585ac63cd20f963112aa.bin
deleted file mode 100644
index 63831df..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/1/15c51c236ecb585ac63cd20f963112aa.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/1/16206964619fe8a4e94853aed96757d9.bin b/EscapeTheGhost/Library/ShaderCache/1/16206964619fe8a4e94853aed96757d9.bin
deleted file mode 100644
index f039f08..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/1/16206964619fe8a4e94853aed96757d9.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/1/165505181778612ff6ef3edfaa8f24c7.bin b/EscapeTheGhost/Library/ShaderCache/1/165505181778612ff6ef3edfaa8f24c7.bin
deleted file mode 100644
index 8ebeb85..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/1/165505181778612ff6ef3edfaa8f24c7.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/1/16a6b31a9cd1b8c401ec839fbbcd267d.bin b/EscapeTheGhost/Library/ShaderCache/1/16a6b31a9cd1b8c401ec839fbbcd267d.bin
deleted file mode 100644
index 8a6bf51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/1/16a6b31a9cd1b8c401ec839fbbcd267d.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/1/170fe34715ac95e7d01630aa84154663.bin b/EscapeTheGhost/Library/ShaderCache/1/170fe34715ac95e7d01630aa84154663.bin
deleted file mode 100644
index 8a6bf51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/1/170fe34715ac95e7d01630aa84154663.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/1/174c2f80da333cbe8369c5270e096ce8.bin b/EscapeTheGhost/Library/ShaderCache/1/174c2f80da333cbe8369c5270e096ce8.bin
deleted file mode 100644
index e1f988e..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/1/174c2f80da333cbe8369c5270e096ce8.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/1/17ae64b7073b4f8d6e86e5225605eea8.bin b/EscapeTheGhost/Library/ShaderCache/1/17ae64b7073b4f8d6e86e5225605eea8.bin
deleted file mode 100644
index 8a6bf51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/1/17ae64b7073b4f8d6e86e5225605eea8.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/1/1801669daba6a30ff49545933482f0dc.bin b/EscapeTheGhost/Library/ShaderCache/1/1801669daba6a30ff49545933482f0dc.bin
deleted file mode 100644
index 00d006f..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/1/1801669daba6a30ff49545933482f0dc.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/1/1890cd083e64d4a75204898441eabcc5.bin b/EscapeTheGhost/Library/ShaderCache/1/1890cd083e64d4a75204898441eabcc5.bin
deleted file mode 100644
index 2210eca..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/1/1890cd083e64d4a75204898441eabcc5.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/1/18b77e79431fcac11f6cd65e87bfec50.bin b/EscapeTheGhost/Library/ShaderCache/1/18b77e79431fcac11f6cd65e87bfec50.bin
deleted file mode 100644
index 724f861..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/1/18b77e79431fcac11f6cd65e87bfec50.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/1/18d2c40adc036f6178b560c2c2d7b3b8.bin b/EscapeTheGhost/Library/ShaderCache/1/18d2c40adc036f6178b560c2c2d7b3b8.bin
deleted file mode 100644
index 849b5a2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/1/18d2c40adc036f6178b560c2c2d7b3b8.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/1/19750df359fbcd00c6f6a91c11900c06.bin b/EscapeTheGhost/Library/ShaderCache/1/19750df359fbcd00c6f6a91c11900c06.bin
deleted file mode 100644
index d379421..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/1/19750df359fbcd00c6f6a91c11900c06.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/1/19889cd33ea1558f316665f92e9982e4.bin b/EscapeTheGhost/Library/ShaderCache/1/19889cd33ea1558f316665f92e9982e4.bin
deleted file mode 100644
index 152df67..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/1/19889cd33ea1558f316665f92e9982e4.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/1/19c5e64b52882a50c27bb4dbdff47b65.bin b/EscapeTheGhost/Library/ShaderCache/1/19c5e64b52882a50c27bb4dbdff47b65.bin
deleted file mode 100644
index f32f7ef..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/1/19c5e64b52882a50c27bb4dbdff47b65.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/1/1a4aca80ece2ac3fca2fe1d0271c215b.bin b/EscapeTheGhost/Library/ShaderCache/1/1a4aca80ece2ac3fca2fe1d0271c215b.bin
deleted file mode 100644
index 72a358e..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/1/1a4aca80ece2ac3fca2fe1d0271c215b.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/1/1a70d4625189c36ea8f151752bb9dfeb.bin b/EscapeTheGhost/Library/ShaderCache/1/1a70d4625189c36ea8f151752bb9dfeb.bin
deleted file mode 100644
index 4c96ee6..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/1/1a70d4625189c36ea8f151752bb9dfeb.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/1/1b5b593a186268e2811af0530d19f257.bin b/EscapeTheGhost/Library/ShaderCache/1/1b5b593a186268e2811af0530d19f257.bin
deleted file mode 100644
index f32f7ef..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/1/1b5b593a186268e2811af0530d19f257.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/1/1b618832c7c4768a0b842b1c2e302460.bin b/EscapeTheGhost/Library/ShaderCache/1/1b618832c7c4768a0b842b1c2e302460.bin
deleted file mode 100644
index c602d23..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/1/1b618832c7c4768a0b842b1c2e302460.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/1/1b70310966c6620a6ad329faacf56831.bin b/EscapeTheGhost/Library/ShaderCache/1/1b70310966c6620a6ad329faacf56831.bin
deleted file mode 100644
index f7e391d..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/1/1b70310966c6620a6ad329faacf56831.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/1/1b7392d3066264ed0012d4deef792c51.bin b/EscapeTheGhost/Library/ShaderCache/1/1b7392d3066264ed0012d4deef792c51.bin
deleted file mode 100644
index 0ec2e22..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/1/1b7392d3066264ed0012d4deef792c51.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/1/1b9b141130480772469265431bfa4918.bin b/EscapeTheGhost/Library/ShaderCache/1/1b9b141130480772469265431bfa4918.bin
deleted file mode 100644
index be9e35d..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/1/1b9b141130480772469265431bfa4918.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/1/1baf827c15938c8b971f0ea8fc99e05b.bin b/EscapeTheGhost/Library/ShaderCache/1/1baf827c15938c8b971f0ea8fc99e05b.bin
deleted file mode 100644
index e945766..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/1/1baf827c15938c8b971f0ea8fc99e05b.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/1/1bea0b205ac3008a55302d7c1d1bcdeb.bin b/EscapeTheGhost/Library/ShaderCache/1/1bea0b205ac3008a55302d7c1d1bcdeb.bin
deleted file mode 100644
index bfd2099..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/1/1bea0b205ac3008a55302d7c1d1bcdeb.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/1/1c0670a86bac1cb1752f99be99501b4b.bin b/EscapeTheGhost/Library/ShaderCache/1/1c0670a86bac1cb1752f99be99501b4b.bin
deleted file mode 100644
index af66b16..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/1/1c0670a86bac1cb1752f99be99501b4b.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/1/1c9b86c4238b8d86c1ae56cbbc8bc963.bin b/EscapeTheGhost/Library/ShaderCache/1/1c9b86c4238b8d86c1ae56cbbc8bc963.bin
deleted file mode 100644
index be9e35d..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/1/1c9b86c4238b8d86c1ae56cbbc8bc963.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/1/1d84fef7fc9a4c7de36e7dd59ba7da5c.bin b/EscapeTheGhost/Library/ShaderCache/1/1d84fef7fc9a4c7de36e7dd59ba7da5c.bin
deleted file mode 100644
index 4641fa8..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/1/1d84fef7fc9a4c7de36e7dd59ba7da5c.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/1/1da68db408525fb2bef2f4d0ab06e971.bin b/EscapeTheGhost/Library/ShaderCache/1/1da68db408525fb2bef2f4d0ab06e971.bin
deleted file mode 100644
index 65f06d1..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/1/1da68db408525fb2bef2f4d0ab06e971.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/1/1e04b23aca20e795757f7dc60bedec9e.bin b/EscapeTheGhost/Library/ShaderCache/1/1e04b23aca20e795757f7dc60bedec9e.bin
deleted file mode 100644
index 77a96d7..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/1/1e04b23aca20e795757f7dc60bedec9e.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/1/1e45229dfd25fd27404620e207ecc9d3.bin b/EscapeTheGhost/Library/ShaderCache/1/1e45229dfd25fd27404620e207ecc9d3.bin
deleted file mode 100644
index 8a6bf51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/1/1e45229dfd25fd27404620e207ecc9d3.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/1/1e7b1c6acc8b528b5b8d27297b08e5f9.bin b/EscapeTheGhost/Library/ShaderCache/1/1e7b1c6acc8b528b5b8d27297b08e5f9.bin
deleted file mode 100644
index 849b5a2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/1/1e7b1c6acc8b528b5b8d27297b08e5f9.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/1/1ea3af3a00a6a347295e91df62ecdf77.bin b/EscapeTheGhost/Library/ShaderCache/1/1ea3af3a00a6a347295e91df62ecdf77.bin
deleted file mode 100644
index f60197b..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/1/1ea3af3a00a6a347295e91df62ecdf77.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/1/1ec464a8f092933a8f9a93f6dab2790c.bin b/EscapeTheGhost/Library/ShaderCache/1/1ec464a8f092933a8f9a93f6dab2790c.bin
deleted file mode 100644
index 849b5a2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/1/1ec464a8f092933a8f9a93f6dab2790c.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/2/20092d18220c6abc7033061f1e718f6d.bin b/EscapeTheGhost/Library/ShaderCache/2/20092d18220c6abc7033061f1e718f6d.bin
deleted file mode 100644
index 836beff..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/2/20092d18220c6abc7033061f1e718f6d.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/2/201c2d491b7443efd02522c3eae5394c.bin b/EscapeTheGhost/Library/ShaderCache/2/201c2d491b7443efd02522c3eae5394c.bin
deleted file mode 100644
index 8a6bf51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/2/201c2d491b7443efd02522c3eae5394c.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/2/206c9d292a366335286ebf11b416216d.bin b/EscapeTheGhost/Library/ShaderCache/2/206c9d292a366335286ebf11b416216d.bin
deleted file mode 100644
index a2e5239..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/2/206c9d292a366335286ebf11b416216d.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/2/20977db4889696308b2e36995107f653.bin b/EscapeTheGhost/Library/ShaderCache/2/20977db4889696308b2e36995107f653.bin
deleted file mode 100644
index 07e5060..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/2/20977db4889696308b2e36995107f653.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/2/20ddd04f05bd11780546dcf469b8d34c.bin b/EscapeTheGhost/Library/ShaderCache/2/20ddd04f05bd11780546dcf469b8d34c.bin
deleted file mode 100644
index 0da90b2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/2/20ddd04f05bd11780546dcf469b8d34c.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/2/20f9aba5977fbe4e84faf1e023f1dc1f.bin b/EscapeTheGhost/Library/ShaderCache/2/20f9aba5977fbe4e84faf1e023f1dc1f.bin
deleted file mode 100644
index 8a6bf51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/2/20f9aba5977fbe4e84faf1e023f1dc1f.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/2/215a681af71875c90349a0c81463b073.bin b/EscapeTheGhost/Library/ShaderCache/2/215a681af71875c90349a0c81463b073.bin
deleted file mode 100644
index 32a00e6..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/2/215a681af71875c90349a0c81463b073.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/2/21a34b9b00de5d521778363e6549d46f.bin b/EscapeTheGhost/Library/ShaderCache/2/21a34b9b00de5d521778363e6549d46f.bin
deleted file mode 100644
index aed5181..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/2/21a34b9b00de5d521778363e6549d46f.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/2/22597fd5eecbf77f00278959ad2f3c14.bin b/EscapeTheGhost/Library/ShaderCache/2/22597fd5eecbf77f00278959ad2f3c14.bin
deleted file mode 100644
index d379421..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/2/22597fd5eecbf77f00278959ad2f3c14.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/2/2383cca6faba0678ea53f68687036390.bin b/EscapeTheGhost/Library/ShaderCache/2/2383cca6faba0678ea53f68687036390.bin
deleted file mode 100644
index 0a11083..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/2/2383cca6faba0678ea53f68687036390.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/2/23f50e744b8d2631e2a31a0373878f36.bin b/EscapeTheGhost/Library/ShaderCache/2/23f50e744b8d2631e2a31a0373878f36.bin
deleted file mode 100644
index 1904a55..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/2/23f50e744b8d2631e2a31a0373878f36.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/2/2491dc22488a34b6a3c5a9bb68708835.bin b/EscapeTheGhost/Library/ShaderCache/2/2491dc22488a34b6a3c5a9bb68708835.bin
deleted file mode 100644
index 1a1464a..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/2/2491dc22488a34b6a3c5a9bb68708835.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/2/249df04e0e56c6923394986dd7a35a26.bin b/EscapeTheGhost/Library/ShaderCache/2/249df04e0e56c6923394986dd7a35a26.bin
deleted file mode 100644
index 8f441a6..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/2/249df04e0e56c6923394986dd7a35a26.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/2/24b46d47097cef0383adbaf8b57820e3.bin b/EscapeTheGhost/Library/ShaderCache/2/24b46d47097cef0383adbaf8b57820e3.bin
deleted file mode 100644
index c63882e..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/2/24b46d47097cef0383adbaf8b57820e3.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/2/2502447190205c841860e12561ed16c2.bin b/EscapeTheGhost/Library/ShaderCache/2/2502447190205c841860e12561ed16c2.bin
deleted file mode 100644
index fac56fd..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/2/2502447190205c841860e12561ed16c2.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/2/251c772fa8b21db93234123aa3d7844e.bin b/EscapeTheGhost/Library/ShaderCache/2/251c772fa8b21db93234123aa3d7844e.bin
deleted file mode 100644
index 7689bc5..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/2/251c772fa8b21db93234123aa3d7844e.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/2/2589bbb9172dcf7a47f10ec5bd9edda0.bin b/EscapeTheGhost/Library/ShaderCache/2/2589bbb9172dcf7a47f10ec5bd9edda0.bin
deleted file mode 100644
index 3f3db07..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/2/2589bbb9172dcf7a47f10ec5bd9edda0.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/2/25af2d6ded70165e4407b48bd6d9c916.bin b/EscapeTheGhost/Library/ShaderCache/2/25af2d6ded70165e4407b48bd6d9c916.bin
deleted file mode 100644
index 8a6bf51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/2/25af2d6ded70165e4407b48bd6d9c916.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/2/2624f505d4fb517e80dd83af74b82c1e.bin b/EscapeTheGhost/Library/ShaderCache/2/2624f505d4fb517e80dd83af74b82c1e.bin
deleted file mode 100644
index 2563223..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/2/2624f505d4fb517e80dd83af74b82c1e.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/2/26b69d780cacd87b01eff9c16bef5053.bin b/EscapeTheGhost/Library/ShaderCache/2/26b69d780cacd87b01eff9c16bef5053.bin
deleted file mode 100644
index f32f7ef..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/2/26b69d780cacd87b01eff9c16bef5053.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/2/2766a56454c28e8a648048ae6c0b794c.bin b/EscapeTheGhost/Library/ShaderCache/2/2766a56454c28e8a648048ae6c0b794c.bin
deleted file mode 100644
index 90c6803..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/2/2766a56454c28e8a648048ae6c0b794c.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/2/276cd2ebb25a58d0c3b213a0c41d59aa.bin b/EscapeTheGhost/Library/ShaderCache/2/276cd2ebb25a58d0c3b213a0c41d59aa.bin
deleted file mode 100644
index 20a7ba3..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/2/276cd2ebb25a58d0c3b213a0c41d59aa.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/2/278857e45ecef3211daa85cebe5a6871.bin b/EscapeTheGhost/Library/ShaderCache/2/278857e45ecef3211daa85cebe5a6871.bin
deleted file mode 100644
index 5cf91a3..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/2/278857e45ecef3211daa85cebe5a6871.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/2/27a2b8aa8196a4d649a47fda60cf590a.bin b/EscapeTheGhost/Library/ShaderCache/2/27a2b8aa8196a4d649a47fda60cf590a.bin
deleted file mode 100644
index d09fbcb..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/2/27a2b8aa8196a4d649a47fda60cf590a.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/2/28b758744b5d7d0794c1a127ba0cb947.bin b/EscapeTheGhost/Library/ShaderCache/2/28b758744b5d7d0794c1a127ba0cb947.bin
deleted file mode 100644
index ebd8390..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/2/28b758744b5d7d0794c1a127ba0cb947.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/2/28ca3a15d96a18f68cbf6a9b37d921eb.bin b/EscapeTheGhost/Library/ShaderCache/2/28ca3a15d96a18f68cbf6a9b37d921eb.bin
deleted file mode 100644
index a805865..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/2/28ca3a15d96a18f68cbf6a9b37d921eb.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/2/28cd546990047604e707ec0568fccfcd.bin b/EscapeTheGhost/Library/ShaderCache/2/28cd546990047604e707ec0568fccfcd.bin
deleted file mode 100644
index 1882286..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/2/28cd546990047604e707ec0568fccfcd.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/2/28e0194c6f4bfbdd50813d331facafc7.bin b/EscapeTheGhost/Library/ShaderCache/2/28e0194c6f4bfbdd50813d331facafc7.bin
deleted file mode 100644
index 60f0f0b..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/2/28e0194c6f4bfbdd50813d331facafc7.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/2/29009b7f18e8a4a7918c9322e32efae0.bin b/EscapeTheGhost/Library/ShaderCache/2/29009b7f18e8a4a7918c9322e32efae0.bin
deleted file mode 100644
index 7394c73..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/2/29009b7f18e8a4a7918c9322e32efae0.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/2/2a247a5fff8f481f84172bfe90221a43.bin b/EscapeTheGhost/Library/ShaderCache/2/2a247a5fff8f481f84172bfe90221a43.bin
deleted file mode 100644
index 5d93260..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/2/2a247a5fff8f481f84172bfe90221a43.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/2/2a701a74899027780e811174e74cb0b5.bin b/EscapeTheGhost/Library/ShaderCache/2/2a701a74899027780e811174e74cb0b5.bin
deleted file mode 100644
index bf877f7..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/2/2a701a74899027780e811174e74cb0b5.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/2/2a907dd9f80130e037013468c9257901.bin b/EscapeTheGhost/Library/ShaderCache/2/2a907dd9f80130e037013468c9257901.bin
deleted file mode 100644
index 24801cc..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/2/2a907dd9f80130e037013468c9257901.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/2/2aba38312f9a352d823d50a9d204dbff.bin b/EscapeTheGhost/Library/ShaderCache/2/2aba38312f9a352d823d50a9d204dbff.bin
deleted file mode 100644
index be47a8b..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/2/2aba38312f9a352d823d50a9d204dbff.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/2/2b6c65101c1b63c6b4606c639106296a.bin b/EscapeTheGhost/Library/ShaderCache/2/2b6c65101c1b63c6b4606c639106296a.bin
deleted file mode 100644
index 2738dbd..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/2/2b6c65101c1b63c6b4606c639106296a.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/2/2c8ad7e20d1e141e0245eb0e8acac656.bin b/EscapeTheGhost/Library/ShaderCache/2/2c8ad7e20d1e141e0245eb0e8acac656.bin
deleted file mode 100644
index 0e3bbdb..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/2/2c8ad7e20d1e141e0245eb0e8acac656.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/2/2c94485c0b3fb377de991b6c016b58ad.bin b/EscapeTheGhost/Library/ShaderCache/2/2c94485c0b3fb377de991b6c016b58ad.bin
deleted file mode 100644
index de69509..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/2/2c94485c0b3fb377de991b6c016b58ad.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/2/2c9fd0fef1f37926a21081f541d3e13f.bin b/EscapeTheGhost/Library/ShaderCache/2/2c9fd0fef1f37926a21081f541d3e13f.bin
deleted file mode 100644
index 90470b6..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/2/2c9fd0fef1f37926a21081f541d3e13f.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/2/2cbafa6335927fbc9c0bcebb3feda06d.bin b/EscapeTheGhost/Library/ShaderCache/2/2cbafa6335927fbc9c0bcebb3feda06d.bin
deleted file mode 100644
index 5844f35..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/2/2cbafa6335927fbc9c0bcebb3feda06d.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/2/2d561e76ee3ffdb2cf7b01e3b0efbc95.bin b/EscapeTheGhost/Library/ShaderCache/2/2d561e76ee3ffdb2cf7b01e3b0efbc95.bin
deleted file mode 100644
index 849b5a2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/2/2d561e76ee3ffdb2cf7b01e3b0efbc95.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/2/2d5740c015b10f981deb6060781e0483.bin b/EscapeTheGhost/Library/ShaderCache/2/2d5740c015b10f981deb6060781e0483.bin
deleted file mode 100644
index 849b5a2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/2/2d5740c015b10f981deb6060781e0483.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/2/2d614d6d8acd265284667539b002f483.bin b/EscapeTheGhost/Library/ShaderCache/2/2d614d6d8acd265284667539b002f483.bin
deleted file mode 100644
index bae4522..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/2/2d614d6d8acd265284667539b002f483.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/2/2d66469eec557884a7cce64a31706c74.bin b/EscapeTheGhost/Library/ShaderCache/2/2d66469eec557884a7cce64a31706c74.bin
deleted file mode 100644
index 50eac99..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/2/2d66469eec557884a7cce64a31706c74.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/2/2dd5bbfc8133153aa3c10ce5a1320118.bin b/EscapeTheGhost/Library/ShaderCache/2/2dd5bbfc8133153aa3c10ce5a1320118.bin
deleted file mode 100644
index 8a6bf51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/2/2dd5bbfc8133153aa3c10ce5a1320118.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/2/2dec0c2e8c6c51fbdb9a3baf79ef94c5.bin b/EscapeTheGhost/Library/ShaderCache/2/2dec0c2e8c6c51fbdb9a3baf79ef94c5.bin
deleted file mode 100644
index 8a6bf51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/2/2dec0c2e8c6c51fbdb9a3baf79ef94c5.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/2/2e95487ba60e31ab84ad59fcd21a453d.bin b/EscapeTheGhost/Library/ShaderCache/2/2e95487ba60e31ab84ad59fcd21a453d.bin
deleted file mode 100644
index fb401ef..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/2/2e95487ba60e31ab84ad59fcd21a453d.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/2/2ecc16bc0ace05aa546b12d1c1043338.bin b/EscapeTheGhost/Library/ShaderCache/2/2ecc16bc0ace05aa546b12d1c1043338.bin
deleted file mode 100644
index cee4ded..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/2/2ecc16bc0ace05aa546b12d1c1043338.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/2/2ee388e1aafe277e47e508edbe320cd6.bin b/EscapeTheGhost/Library/ShaderCache/2/2ee388e1aafe277e47e508edbe320cd6.bin
deleted file mode 100644
index 87ae9e5..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/2/2ee388e1aafe277e47e508edbe320cd6.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/2/2efcce372193d1888be12234f0e3a6e4.bin b/EscapeTheGhost/Library/ShaderCache/2/2efcce372193d1888be12234f0e3a6e4.bin
deleted file mode 100644
index 91172d9..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/2/2efcce372193d1888be12234f0e3a6e4.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/3/3038cb0b18585b687199b7ec4c28b34b.bin b/EscapeTheGhost/Library/ShaderCache/3/3038cb0b18585b687199b7ec4c28b34b.bin
deleted file mode 100644
index fa7d632..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/3/3038cb0b18585b687199b7ec4c28b34b.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/3/30674670890810f9a7f263e8073c22ea.bin b/EscapeTheGhost/Library/ShaderCache/3/30674670890810f9a7f263e8073c22ea.bin
deleted file mode 100644
index d379421..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/3/30674670890810f9a7f263e8073c22ea.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/3/315ea2c34e68cd38372a6971a46f4dd3.bin b/EscapeTheGhost/Library/ShaderCache/3/315ea2c34e68cd38372a6971a46f4dd3.bin
deleted file mode 100644
index be05f86..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/3/315ea2c34e68cd38372a6971a46f4dd3.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/3/31a7800655c611b94171d5b744299016.bin b/EscapeTheGhost/Library/ShaderCache/3/31a7800655c611b94171d5b744299016.bin
deleted file mode 100644
index 46e6690..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/3/31a7800655c611b94171d5b744299016.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/3/31cc6b7852522f2947998061f0430fb4.bin b/EscapeTheGhost/Library/ShaderCache/3/31cc6b7852522f2947998061f0430fb4.bin
deleted file mode 100644
index fbc1e85..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/3/31cc6b7852522f2947998061f0430fb4.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/3/32257260798d63ba5e094dd48992c7da.bin b/EscapeTheGhost/Library/ShaderCache/3/32257260798d63ba5e094dd48992c7da.bin
deleted file mode 100644
index 302b46c..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/3/32257260798d63ba5e094dd48992c7da.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/3/3252c9a983f8829b35984c35c83afd94.bin b/EscapeTheGhost/Library/ShaderCache/3/3252c9a983f8829b35984c35c83afd94.bin
deleted file mode 100644
index 47b21d2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/3/3252c9a983f8829b35984c35c83afd94.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/3/33094b5f135f3cdd1d6e6f5b559be37c.bin b/EscapeTheGhost/Library/ShaderCache/3/33094b5f135f3cdd1d6e6f5b559be37c.bin
deleted file mode 100644
index 849b5a2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/3/33094b5f135f3cdd1d6e6f5b559be37c.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/3/3313f77f0f9ed624f9b99ff07357a8a9.bin b/EscapeTheGhost/Library/ShaderCache/3/3313f77f0f9ed624f9b99ff07357a8a9.bin
deleted file mode 100644
index d49fb97..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/3/3313f77f0f9ed624f9b99ff07357a8a9.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/3/3346f530d811069f500f7181f0f9b03f.bin b/EscapeTheGhost/Library/ShaderCache/3/3346f530d811069f500f7181f0f9b03f.bin
deleted file mode 100644
index 69e2232..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/3/3346f530d811069f500f7181f0f9b03f.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/3/334bcadb668a199711c2e6631e352846.bin b/EscapeTheGhost/Library/ShaderCache/3/334bcadb668a199711c2e6631e352846.bin
deleted file mode 100644
index 80fb40d..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/3/334bcadb668a199711c2e6631e352846.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/3/33664b88468d8f1e7bdf17cf42174f50.bin b/EscapeTheGhost/Library/ShaderCache/3/33664b88468d8f1e7bdf17cf42174f50.bin
deleted file mode 100644
index d7511ef..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/3/33664b88468d8f1e7bdf17cf42174f50.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/3/3367cd53397a4786e7707a4d40c1bb12.bin b/EscapeTheGhost/Library/ShaderCache/3/3367cd53397a4786e7707a4d40c1bb12.bin
deleted file mode 100644
index 8a6bf51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/3/3367cd53397a4786e7707a4d40c1bb12.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/3/33d17fadbe30140c333a16a0ad4fb622.bin b/EscapeTheGhost/Library/ShaderCache/3/33d17fadbe30140c333a16a0ad4fb622.bin
deleted file mode 100644
index 6f484bf..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/3/33d17fadbe30140c333a16a0ad4fb622.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/3/33e7b7842d421be813d5137577768f98.bin b/EscapeTheGhost/Library/ShaderCache/3/33e7b7842d421be813d5137577768f98.bin
deleted file mode 100644
index 8a6bf51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/3/33e7b7842d421be813d5137577768f98.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/3/340ddec896b428f0c0fbfb108b5b5806.bin b/EscapeTheGhost/Library/ShaderCache/3/340ddec896b428f0c0fbfb108b5b5806.bin
deleted file mode 100644
index c63882e..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/3/340ddec896b428f0c0fbfb108b5b5806.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/3/341886824af1db09c3ef0e6f3844b5bc.bin b/EscapeTheGhost/Library/ShaderCache/3/341886824af1db09c3ef0e6f3844b5bc.bin
deleted file mode 100644
index 772a7f3..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/3/341886824af1db09c3ef0e6f3844b5bc.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/3/345d6c95bdb44ae8109dc81d7a028b75.bin b/EscapeTheGhost/Library/ShaderCache/3/345d6c95bdb44ae8109dc81d7a028b75.bin
deleted file mode 100644
index 849b5a2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/3/345d6c95bdb44ae8109dc81d7a028b75.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/3/34749bad04f135634d17559e7e634b17.bin b/EscapeTheGhost/Library/ShaderCache/3/34749bad04f135634d17559e7e634b17.bin
deleted file mode 100644
index d30dde4..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/3/34749bad04f135634d17559e7e634b17.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/3/34f11af2a76477c153f7c6f357179334.bin b/EscapeTheGhost/Library/ShaderCache/3/34f11af2a76477c153f7c6f357179334.bin
deleted file mode 100644
index 29db6e4..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/3/34f11af2a76477c153f7c6f357179334.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/3/3568fd10a2072b9556a654c7be87ddae.bin b/EscapeTheGhost/Library/ShaderCache/3/3568fd10a2072b9556a654c7be87ddae.bin
deleted file mode 100644
index 238c235..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/3/3568fd10a2072b9556a654c7be87ddae.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/3/361c5133b13332bfab99c2d7bd12d7cb.bin b/EscapeTheGhost/Library/ShaderCache/3/361c5133b13332bfab99c2d7bd12d7cb.bin
deleted file mode 100644
index 591076b..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/3/361c5133b13332bfab99c2d7bd12d7cb.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/3/364ceb7390375e6018f47b68617bf942.bin b/EscapeTheGhost/Library/ShaderCache/3/364ceb7390375e6018f47b68617bf942.bin
deleted file mode 100644
index 849b5a2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/3/364ceb7390375e6018f47b68617bf942.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/3/36c5d67107b99a06fef34268a094dc86.bin b/EscapeTheGhost/Library/ShaderCache/3/36c5d67107b99a06fef34268a094dc86.bin
deleted file mode 100644
index ab0808c..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/3/36c5d67107b99a06fef34268a094dc86.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/3/36e66ff1bca3de69988f32489ad530bd.bin b/EscapeTheGhost/Library/ShaderCache/3/36e66ff1bca3de69988f32489ad530bd.bin
deleted file mode 100644
index 8aec643..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/3/36e66ff1bca3de69988f32489ad530bd.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/3/37fdfeeadf2ab5cc9b24ffe5a7d01e04.bin b/EscapeTheGhost/Library/ShaderCache/3/37fdfeeadf2ab5cc9b24ffe5a7d01e04.bin
deleted file mode 100644
index 35e365e..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/3/37fdfeeadf2ab5cc9b24ffe5a7d01e04.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/3/3839a6542868af1154b2b6fd4c438850.bin b/EscapeTheGhost/Library/ShaderCache/3/3839a6542868af1154b2b6fd4c438850.bin
deleted file mode 100644
index bd075f6..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/3/3839a6542868af1154b2b6fd4c438850.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/3/383e55806af5e79e96fc75002c1aa21e.bin b/EscapeTheGhost/Library/ShaderCache/3/383e55806af5e79e96fc75002c1aa21e.bin
deleted file mode 100644
index 428eeb4..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/3/383e55806af5e79e96fc75002c1aa21e.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/3/385a0500f2c92a1784911c1256a98d43.bin b/EscapeTheGhost/Library/ShaderCache/3/385a0500f2c92a1784911c1256a98d43.bin
deleted file mode 100644
index 11adcad..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/3/385a0500f2c92a1784911c1256a98d43.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/3/3883e2f3799b12681be240f5b0e45299.bin b/EscapeTheGhost/Library/ShaderCache/3/3883e2f3799b12681be240f5b0e45299.bin
deleted file mode 100644
index 85ac3bb..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/3/3883e2f3799b12681be240f5b0e45299.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/3/38a0b743c5994a93f0779bf3a3d0ac5d.bin b/EscapeTheGhost/Library/ShaderCache/3/38a0b743c5994a93f0779bf3a3d0ac5d.bin
deleted file mode 100644
index 1a7b083..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/3/38a0b743c5994a93f0779bf3a3d0ac5d.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/3/38ac749d4e38266d40ccebc47bd37065.bin b/EscapeTheGhost/Library/ShaderCache/3/38ac749d4e38266d40ccebc47bd37065.bin
deleted file mode 100644
index 671b282..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/3/38ac749d4e38266d40ccebc47bd37065.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/3/38d75b26a27ef9601948e8c5fe284d22.bin b/EscapeTheGhost/Library/ShaderCache/3/38d75b26a27ef9601948e8c5fe284d22.bin
deleted file mode 100644
index 30a7386..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/3/38d75b26a27ef9601948e8c5fe284d22.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/3/38e484f0b859de0f0b6afe4c723af693.bin b/EscapeTheGhost/Library/ShaderCache/3/38e484f0b859de0f0b6afe4c723af693.bin
deleted file mode 100644
index 8a6bf51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/3/38e484f0b859de0f0b6afe4c723af693.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/3/390f3803bf11da769988e921a2d04d38.bin b/EscapeTheGhost/Library/ShaderCache/3/390f3803bf11da769988e921a2d04d38.bin
deleted file mode 100644
index 8a6bf51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/3/390f3803bf11da769988e921a2d04d38.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/3/3a02d4b7c72c69a4a94d8d771dce2898.bin b/EscapeTheGhost/Library/ShaderCache/3/3a02d4b7c72c69a4a94d8d771dce2898.bin
deleted file mode 100644
index 6ceed51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/3/3a02d4b7c72c69a4a94d8d771dce2898.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/3/3a74fe1c37871ac9761c4c961859c004.bin b/EscapeTheGhost/Library/ShaderCache/3/3a74fe1c37871ac9761c4c961859c004.bin
deleted file mode 100644
index edc0885..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/3/3a74fe1c37871ac9761c4c961859c004.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/3/3b7847db806a5321961fe42abd6dd89c.bin b/EscapeTheGhost/Library/ShaderCache/3/3b7847db806a5321961fe42abd6dd89c.bin
deleted file mode 100644
index 6bfae87..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/3/3b7847db806a5321961fe42abd6dd89c.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/3/3c09a601ec99958acc9accf528213788.bin b/EscapeTheGhost/Library/ShaderCache/3/3c09a601ec99958acc9accf528213788.bin
deleted file mode 100644
index 9466436..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/3/3c09a601ec99958acc9accf528213788.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/3/3c18929243d71a3882321e7a605e2105.bin b/EscapeTheGhost/Library/ShaderCache/3/3c18929243d71a3882321e7a605e2105.bin
deleted file mode 100644
index d6958dd..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/3/3c18929243d71a3882321e7a605e2105.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/3/3c420fb60c1d2c59f9cf7ba565203d60.bin b/EscapeTheGhost/Library/ShaderCache/3/3c420fb60c1d2c59f9cf7ba565203d60.bin
deleted file mode 100644
index 849b5a2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/3/3c420fb60c1d2c59f9cf7ba565203d60.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/3/3c4d22b2b1d33498c080169b7b31ab74.bin b/EscapeTheGhost/Library/ShaderCache/3/3c4d22b2b1d33498c080169b7b31ab74.bin
deleted file mode 100644
index 1904a55..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/3/3c4d22b2b1d33498c080169b7b31ab74.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/3/3c668a10d596bf8344acb3d0ac893e29.bin b/EscapeTheGhost/Library/ShaderCache/3/3c668a10d596bf8344acb3d0ac893e29.bin
deleted file mode 100644
index cddfcca..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/3/3c668a10d596bf8344acb3d0ac893e29.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/3/3caf80ef76a47e86eb89c8d8bc3fb16b.bin b/EscapeTheGhost/Library/ShaderCache/3/3caf80ef76a47e86eb89c8d8bc3fb16b.bin
deleted file mode 100644
index 849b5a2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/3/3caf80ef76a47e86eb89c8d8bc3fb16b.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/3/3ce5683bfbc7dcbaadd84c4320a88b3b.bin b/EscapeTheGhost/Library/ShaderCache/3/3ce5683bfbc7dcbaadd84c4320a88b3b.bin
deleted file mode 100644
index dd03ee2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/3/3ce5683bfbc7dcbaadd84c4320a88b3b.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/3/3ce708e855bcc2643757b5ddb116f07f.bin b/EscapeTheGhost/Library/ShaderCache/3/3ce708e855bcc2643757b5ddb116f07f.bin
deleted file mode 100644
index 1882286..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/3/3ce708e855bcc2643757b5ddb116f07f.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/3/3d5a48b4116fdc5c781ab5e8ff3c4257.bin b/EscapeTheGhost/Library/ShaderCache/3/3d5a48b4116fdc5c781ab5e8ff3c4257.bin
deleted file mode 100644
index 17d32a0..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/3/3d5a48b4116fdc5c781ab5e8ff3c4257.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/3/3d5a90b9359a9d8c3221879714a1fbd8.bin b/EscapeTheGhost/Library/ShaderCache/3/3d5a90b9359a9d8c3221879714a1fbd8.bin
deleted file mode 100644
index d991877..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/3/3d5a90b9359a9d8c3221879714a1fbd8.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/3/3db915787c8429cb54fe1b648c204d1d.bin b/EscapeTheGhost/Library/ShaderCache/3/3db915787c8429cb54fe1b648c204d1d.bin
deleted file mode 100644
index 9cbc3b7..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/3/3db915787c8429cb54fe1b648c204d1d.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/3/3df386422bc64fd02e30433e169f8928.bin b/EscapeTheGhost/Library/ShaderCache/3/3df386422bc64fd02e30433e169f8928.bin
deleted file mode 100644
index 2faa309..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/3/3df386422bc64fd02e30433e169f8928.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/3/3e3c4a5f13a323c92907efdb80c28839.bin b/EscapeTheGhost/Library/ShaderCache/3/3e3c4a5f13a323c92907efdb80c28839.bin
deleted file mode 100644
index 4702d1d..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/3/3e3c4a5f13a323c92907efdb80c28839.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/3/3f41db464eda5476c3ace028c3f76de6.bin b/EscapeTheGhost/Library/ShaderCache/3/3f41db464eda5476c3ace028c3f76de6.bin
deleted file mode 100644
index 8a6bf51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/3/3f41db464eda5476c3ace028c3f76de6.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/3/3f520a33316536a89c8db2636373de7a.bin b/EscapeTheGhost/Library/ShaderCache/3/3f520a33316536a89c8db2636373de7a.bin
deleted file mode 100644
index c602d23..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/3/3f520a33316536a89c8db2636373de7a.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/3/3f8a83bdd88ab09a50da79868e4bb560.bin b/EscapeTheGhost/Library/ShaderCache/3/3f8a83bdd88ab09a50da79868e4bb560.bin
deleted file mode 100644
index 8a6bf51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/3/3f8a83bdd88ab09a50da79868e4bb560.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/3/3f9369e7dda3a03a4a549045b50da5cf.bin b/EscapeTheGhost/Library/ShaderCache/3/3f9369e7dda3a03a4a549045b50da5cf.bin
deleted file mode 100644
index effd1ea..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/3/3f9369e7dda3a03a4a549045b50da5cf.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/3/3ff7a41f88b288058a1b07718c0c4ef0.bin b/EscapeTheGhost/Library/ShaderCache/3/3ff7a41f88b288058a1b07718c0c4ef0.bin
deleted file mode 100644
index 8a6bf51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/3/3ff7a41f88b288058a1b07718c0c4ef0.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/4/4002c91a55d70d65225c6357058235fb.bin b/EscapeTheGhost/Library/ShaderCache/4/4002c91a55d70d65225c6357058235fb.bin
deleted file mode 100644
index 8d8ce62..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/4/4002c91a55d70d65225c6357058235fb.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/4/407795fcb8c50284f1a73096e02595cb.bin b/EscapeTheGhost/Library/ShaderCache/4/407795fcb8c50284f1a73096e02595cb.bin
deleted file mode 100644
index 95c376b..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/4/407795fcb8c50284f1a73096e02595cb.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/4/4144c63dfa5b18041fa229daed4c597f.bin b/EscapeTheGhost/Library/ShaderCache/4/4144c63dfa5b18041fa229daed4c597f.bin
deleted file mode 100644
index d379421..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/4/4144c63dfa5b18041fa229daed4c597f.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/4/419d34d94690e7de0aa260735a6bb9e0.bin b/EscapeTheGhost/Library/ShaderCache/4/419d34d94690e7de0aa260735a6bb9e0.bin
deleted file mode 100644
index 162a3ac..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/4/419d34d94690e7de0aa260735a6bb9e0.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/4/41b70c635308b7a802652501a50c8ad0.bin b/EscapeTheGhost/Library/ShaderCache/4/41b70c635308b7a802652501a50c8ad0.bin
deleted file mode 100644
index 74d2e29..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/4/41b70c635308b7a802652501a50c8ad0.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/4/41d0cd92a386b5b406dbce9f123fe655.bin b/EscapeTheGhost/Library/ShaderCache/4/41d0cd92a386b5b406dbce9f123fe655.bin
deleted file mode 100644
index 849b5a2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/4/41d0cd92a386b5b406dbce9f123fe655.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/4/41da678aa14f58095b26f6b0ec51cdba.bin b/EscapeTheGhost/Library/ShaderCache/4/41da678aa14f58095b26f6b0ec51cdba.bin
deleted file mode 100644
index 671b282..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/4/41da678aa14f58095b26f6b0ec51cdba.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/4/41e16aa60254787398004fedbf317299.bin b/EscapeTheGhost/Library/ShaderCache/4/41e16aa60254787398004fedbf317299.bin
deleted file mode 100644
index 8a6bf51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/4/41e16aa60254787398004fedbf317299.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/4/431e8bdb3692472126f9a8c8d553e706.bin b/EscapeTheGhost/Library/ShaderCache/4/431e8bdb3692472126f9a8c8d553e706.bin
deleted file mode 100644
index 835f6e3..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/4/431e8bdb3692472126f9a8c8d553e706.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/4/441a40ae9c409e2139551228a156bf09.bin b/EscapeTheGhost/Library/ShaderCache/4/441a40ae9c409e2139551228a156bf09.bin
deleted file mode 100644
index eb56014..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/4/441a40ae9c409e2139551228a156bf09.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/4/445d012a445eec01ce84780bf6a69224.bin b/EscapeTheGhost/Library/ShaderCache/4/445d012a445eec01ce84780bf6a69224.bin
deleted file mode 100644
index 8a6bf51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/4/445d012a445eec01ce84780bf6a69224.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/4/445d8c1674f37bbdb343afdbe6f97b41.bin b/EscapeTheGhost/Library/ShaderCache/4/445d8c1674f37bbdb343afdbe6f97b41.bin
deleted file mode 100644
index 026b229..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/4/445d8c1674f37bbdb343afdbe6f97b41.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/4/44706d4e25d62b3bd47747c1225cb602.bin b/EscapeTheGhost/Library/ShaderCache/4/44706d4e25d62b3bd47747c1225cb602.bin
deleted file mode 100644
index 1a7b083..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/4/44706d4e25d62b3bd47747c1225cb602.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/4/45ff11fe6e0fe66d6a1c3e071e9675dc.bin b/EscapeTheGhost/Library/ShaderCache/4/45ff11fe6e0fe66d6a1c3e071e9675dc.bin
deleted file mode 100644
index 8fc9891..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/4/45ff11fe6e0fe66d6a1c3e071e9675dc.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/4/461f785cd80024e4d05f11a8aa052d97.bin b/EscapeTheGhost/Library/ShaderCache/4/461f785cd80024e4d05f11a8aa052d97.bin
deleted file mode 100644
index cfb093b..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/4/461f785cd80024e4d05f11a8aa052d97.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/4/4643abe3556f7939bb461aec1a06a092.bin b/EscapeTheGhost/Library/ShaderCache/4/4643abe3556f7939bb461aec1a06a092.bin
deleted file mode 100644
index c63882e..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/4/4643abe3556f7939bb461aec1a06a092.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/4/465fee12f2312d7e5750a14a0ec309d7.bin b/EscapeTheGhost/Library/ShaderCache/4/465fee12f2312d7e5750a14a0ec309d7.bin
deleted file mode 100644
index 4d8afd3..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/4/465fee12f2312d7e5750a14a0ec309d7.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/4/46b8aeb6dd6bacde8a8ec684ed2ae509.bin b/EscapeTheGhost/Library/ShaderCache/4/46b8aeb6dd6bacde8a8ec684ed2ae509.bin
deleted file mode 100644
index af5c844..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/4/46b8aeb6dd6bacde8a8ec684ed2ae509.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/4/478b76158970873213b335b872e83272.bin b/EscapeTheGhost/Library/ShaderCache/4/478b76158970873213b335b872e83272.bin
deleted file mode 100644
index 8505f74..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/4/478b76158970873213b335b872e83272.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/4/480a48cc1f044c39fd3e5dadd270c9a1.bin b/EscapeTheGhost/Library/ShaderCache/4/480a48cc1f044c39fd3e5dadd270c9a1.bin
deleted file mode 100644
index 69c9e06..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/4/480a48cc1f044c39fd3e5dadd270c9a1.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/4/483ac37a21dffbc70f005dee8f05b9f1.bin b/EscapeTheGhost/Library/ShaderCache/4/483ac37a21dffbc70f005dee8f05b9f1.bin
deleted file mode 100644
index 8d75d94..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/4/483ac37a21dffbc70f005dee8f05b9f1.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/4/484486bed6cf73c2f7d5f22287cd120f.bin b/EscapeTheGhost/Library/ShaderCache/4/484486bed6cf73c2f7d5f22287cd120f.bin
deleted file mode 100644
index 8a6bf51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/4/484486bed6cf73c2f7d5f22287cd120f.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/4/48466323ab6cf9c74452271d76931cde.bin b/EscapeTheGhost/Library/ShaderCache/4/48466323ab6cf9c74452271d76931cde.bin
deleted file mode 100644
index 80fb40d..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/4/48466323ab6cf9c74452271d76931cde.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/4/4961831db16f256b9ce163b674d2bc2a.bin b/EscapeTheGhost/Library/ShaderCache/4/4961831db16f256b9ce163b674d2bc2a.bin
deleted file mode 100644
index e4ce8b6..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/4/4961831db16f256b9ce163b674d2bc2a.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/4/4984eb1fd3e00524f60b8b00625ee321.bin b/EscapeTheGhost/Library/ShaderCache/4/4984eb1fd3e00524f60b8b00625ee321.bin
deleted file mode 100644
index 2f9f311..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/4/4984eb1fd3e00524f60b8b00625ee321.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/4/4b02fc7a628c476b25411fc358f38391.bin b/EscapeTheGhost/Library/ShaderCache/4/4b02fc7a628c476b25411fc358f38391.bin
deleted file mode 100644
index d78ff38..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/4/4b02fc7a628c476b25411fc358f38391.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/4/4b157be706b68aa73f9235eacfcbc9f7.bin b/EscapeTheGhost/Library/ShaderCache/4/4b157be706b68aa73f9235eacfcbc9f7.bin
deleted file mode 100644
index c425cd4..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/4/4b157be706b68aa73f9235eacfcbc9f7.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/4/4bbd2ca7f8d983130bcbe4ed84a47383.bin b/EscapeTheGhost/Library/ShaderCache/4/4bbd2ca7f8d983130bcbe4ed84a47383.bin
deleted file mode 100644
index 8a6bf51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/4/4bbd2ca7f8d983130bcbe4ed84a47383.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/4/4bf4b9fee544237aa171744ad8082602.bin b/EscapeTheGhost/Library/ShaderCache/4/4bf4b9fee544237aa171744ad8082602.bin
deleted file mode 100644
index 9f5270b..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/4/4bf4b9fee544237aa171744ad8082602.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/4/4c64fc3ed805924ebaab28117a00875c.bin b/EscapeTheGhost/Library/ShaderCache/4/4c64fc3ed805924ebaab28117a00875c.bin
deleted file mode 100644
index 994e397..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/4/4c64fc3ed805924ebaab28117a00875c.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/4/4c7373d68ee350b061188ef2cfc3da6c.bin b/EscapeTheGhost/Library/ShaderCache/4/4c7373d68ee350b061188ef2cfc3da6c.bin
deleted file mode 100644
index 1a7b083..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/4/4c7373d68ee350b061188ef2cfc3da6c.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/4/4c7c07f2706351720da61ed7cb355647.bin b/EscapeTheGhost/Library/ShaderCache/4/4c7c07f2706351720da61ed7cb355647.bin
deleted file mode 100644
index 276cebc..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/4/4c7c07f2706351720da61ed7cb355647.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/4/4d1b0ec077854bbcb8aa872719c4d308.bin b/EscapeTheGhost/Library/ShaderCache/4/4d1b0ec077854bbcb8aa872719c4d308.bin
deleted file mode 100644
index e7cfe8a..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/4/4d1b0ec077854bbcb8aa872719c4d308.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/4/4e1493927c327e52a9f7d8d528595359.bin b/EscapeTheGhost/Library/ShaderCache/4/4e1493927c327e52a9f7d8d528595359.bin
deleted file mode 100644
index 31847fb..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/4/4e1493927c327e52a9f7d8d528595359.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/4/4ea3bfef07ec849043815965269e74cb.bin b/EscapeTheGhost/Library/ShaderCache/4/4ea3bfef07ec849043815965269e74cb.bin
deleted file mode 100644
index 849b5a2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/4/4ea3bfef07ec849043815965269e74cb.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/4/4eb3fdace4bf75f0d23eb62ea952aa70.bin b/EscapeTheGhost/Library/ShaderCache/4/4eb3fdace4bf75f0d23eb62ea952aa70.bin
deleted file mode 100644
index 0313c1c..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/4/4eb3fdace4bf75f0d23eb62ea952aa70.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/5/5055c14bab08caf6857839c9bd288c5d.bin b/EscapeTheGhost/Library/ShaderCache/5/5055c14bab08caf6857839c9bd288c5d.bin
deleted file mode 100644
index 5a87bb1..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/5/5055c14bab08caf6857839c9bd288c5d.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/5/50ecf4d817cc260ebee6f75594697bdd.bin b/EscapeTheGhost/Library/ShaderCache/5/50ecf4d817cc260ebee6f75594697bdd.bin
deleted file mode 100644
index edfb6b3..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/5/50ecf4d817cc260ebee6f75594697bdd.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/5/50f271bcc26b1fa14faab0c38b65a7be.bin b/EscapeTheGhost/Library/ShaderCache/5/50f271bcc26b1fa14faab0c38b65a7be.bin
deleted file mode 100644
index 4496f47..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/5/50f271bcc26b1fa14faab0c38b65a7be.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/5/51d7963faa046d84ac0f91e06a1dd984.bin b/EscapeTheGhost/Library/ShaderCache/5/51d7963faa046d84ac0f91e06a1dd984.bin
deleted file mode 100644
index 534a67e..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/5/51d7963faa046d84ac0f91e06a1dd984.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/5/52295fb9dd2275ca09dbbc172ae3795c.bin b/EscapeTheGhost/Library/ShaderCache/5/52295fb9dd2275ca09dbbc172ae3795c.bin
deleted file mode 100644
index 14d15cf..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/5/52295fb9dd2275ca09dbbc172ae3795c.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/5/5232a278d86813d0073e13743e6d576e.bin b/EscapeTheGhost/Library/ShaderCache/5/5232a278d86813d0073e13743e6d576e.bin
deleted file mode 100644
index f1e6995..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/5/5232a278d86813d0073e13743e6d576e.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/5/52afa51efb110ba9efc49cb8d1590ca8.bin b/EscapeTheGhost/Library/ShaderCache/5/52afa51efb110ba9efc49cb8d1590ca8.bin
deleted file mode 100644
index 21bed9c..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/5/52afa51efb110ba9efc49cb8d1590ca8.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/5/52bb9e8a9f35a36fd695df6972652a2e.bin b/EscapeTheGhost/Library/ShaderCache/5/52bb9e8a9f35a36fd695df6972652a2e.bin
deleted file mode 100644
index 4ea00b8..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/5/52bb9e8a9f35a36fd695df6972652a2e.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/5/531fca8795c81afb6d19439795f03b3a.bin b/EscapeTheGhost/Library/ShaderCache/5/531fca8795c81afb6d19439795f03b3a.bin
deleted file mode 100644
index 8a6bf51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/5/531fca8795c81afb6d19439795f03b3a.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/5/532f90ac92aa9ef773a4cdb092109833.bin b/EscapeTheGhost/Library/ShaderCache/5/532f90ac92aa9ef773a4cdb092109833.bin
deleted file mode 100644
index 4beb8bd..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/5/532f90ac92aa9ef773a4cdb092109833.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/5/54216c8201292b0f2b81ec59aa0e044a.bin b/EscapeTheGhost/Library/ShaderCache/5/54216c8201292b0f2b81ec59aa0e044a.bin
deleted file mode 100644
index d0e0bab..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/5/54216c8201292b0f2b81ec59aa0e044a.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/5/542844d956c982906bebca1f0d0889c0.bin b/EscapeTheGhost/Library/ShaderCache/5/542844d956c982906bebca1f0d0889c0.bin
deleted file mode 100644
index df31c45..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/5/542844d956c982906bebca1f0d0889c0.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/5/5438e45e2224ead31c0e59ad38231726.bin b/EscapeTheGhost/Library/ShaderCache/5/5438e45e2224ead31c0e59ad38231726.bin
deleted file mode 100644
index aa9a678..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/5/5438e45e2224ead31c0e59ad38231726.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/5/54a85146f86e2130f706f1d7af7df9f6.bin b/EscapeTheGhost/Library/ShaderCache/5/54a85146f86e2130f706f1d7af7df9f6.bin
deleted file mode 100644
index 3c9ec5b..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/5/54a85146f86e2130f706f1d7af7df9f6.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/5/5561f3d39b1929ad51e538b4d0b9f2aa.bin b/EscapeTheGhost/Library/ShaderCache/5/5561f3d39b1929ad51e538b4d0b9f2aa.bin
deleted file mode 100644
index aebed3f..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/5/5561f3d39b1929ad51e538b4d0b9f2aa.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/5/559a531396a5e40de5b4b057e45c0b86.bin b/EscapeTheGhost/Library/ShaderCache/5/559a531396a5e40de5b4b057e45c0b86.bin
deleted file mode 100644
index d8c792c..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/5/559a531396a5e40de5b4b057e45c0b86.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/5/55e0e8fc5a055d6c2ce295b8af66cd41.bin b/EscapeTheGhost/Library/ShaderCache/5/55e0e8fc5a055d6c2ce295b8af66cd41.bin
deleted file mode 100644
index 8a6bf51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/5/55e0e8fc5a055d6c2ce295b8af66cd41.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/5/56bec41ba831d3cfea8f0532046121f4.bin b/EscapeTheGhost/Library/ShaderCache/5/56bec41ba831d3cfea8f0532046121f4.bin
deleted file mode 100644
index 849b5a2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/5/56bec41ba831d3cfea8f0532046121f4.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/5/57378f2125871a014d255f48625dce9b.bin b/EscapeTheGhost/Library/ShaderCache/5/57378f2125871a014d255f48625dce9b.bin
deleted file mode 100644
index 17d32a0..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/5/57378f2125871a014d255f48625dce9b.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/5/57f0e9d85a16b5f630a86d7f538367eb.bin b/EscapeTheGhost/Library/ShaderCache/5/57f0e9d85a16b5f630a86d7f538367eb.bin
deleted file mode 100644
index 8a6bf51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/5/57f0e9d85a16b5f630a86d7f538367eb.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/5/57f504f0d31e44c7f596379820ad135a.bin b/EscapeTheGhost/Library/ShaderCache/5/57f504f0d31e44c7f596379820ad135a.bin
deleted file mode 100644
index a15c23a..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/5/57f504f0d31e44c7f596379820ad135a.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/5/57ff2b85e22c8fc803bc781ffc43bdab.bin b/EscapeTheGhost/Library/ShaderCache/5/57ff2b85e22c8fc803bc781ffc43bdab.bin
deleted file mode 100644
index c87a520..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/5/57ff2b85e22c8fc803bc781ffc43bdab.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/5/58a95754c95248a33e121019d6f3b212.bin b/EscapeTheGhost/Library/ShaderCache/5/58a95754c95248a33e121019d6f3b212.bin
deleted file mode 100644
index b46ea21..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/5/58a95754c95248a33e121019d6f3b212.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/5/592e1d49f5e8865350435e0371907ab0.bin b/EscapeTheGhost/Library/ShaderCache/5/592e1d49f5e8865350435e0371907ab0.bin
deleted file mode 100644
index 534a67e..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/5/592e1d49f5e8865350435e0371907ab0.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/5/595bd21b4493b24c16f43de73e731b8b.bin b/EscapeTheGhost/Library/ShaderCache/5/595bd21b4493b24c16f43de73e731b8b.bin
deleted file mode 100644
index 3c067c2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/5/595bd21b4493b24c16f43de73e731b8b.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/5/59a599925ee453a5e29bb5cec1eadccd.bin b/EscapeTheGhost/Library/ShaderCache/5/59a599925ee453a5e29bb5cec1eadccd.bin
deleted file mode 100644
index a1f091e..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/5/59a599925ee453a5e29bb5cec1eadccd.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/5/5a5e072722d14549d53acbf38149c7d1.bin b/EscapeTheGhost/Library/ShaderCache/5/5a5e072722d14549d53acbf38149c7d1.bin
deleted file mode 100644
index e19f89e..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/5/5a5e072722d14549d53acbf38149c7d1.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/5/5a8bfc57084236a232f89010ac540e0a.bin b/EscapeTheGhost/Library/ShaderCache/5/5a8bfc57084236a232f89010ac540e0a.bin
deleted file mode 100644
index 8a6bf51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/5/5a8bfc57084236a232f89010ac540e0a.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/5/5ade1257bc1a1e35ac434f116de627c5.bin b/EscapeTheGhost/Library/ShaderCache/5/5ade1257bc1a1e35ac434f116de627c5.bin
deleted file mode 100644
index 8a6bf51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/5/5ade1257bc1a1e35ac434f116de627c5.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/5/5b68f0a620775b148735ce005d1d2f6c.bin b/EscapeTheGhost/Library/ShaderCache/5/5b68f0a620775b148735ce005d1d2f6c.bin
deleted file mode 100644
index be744c2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/5/5b68f0a620775b148735ce005d1d2f6c.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/5/5b8e959641851b46a7b72bd06b5b88ea.bin b/EscapeTheGhost/Library/ShaderCache/5/5b8e959641851b46a7b72bd06b5b88ea.bin
deleted file mode 100644
index ab8bcf7..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/5/5b8e959641851b46a7b72bd06b5b88ea.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/5/5ba64ed8110c183ef3e606e3ab0dc7c8.bin b/EscapeTheGhost/Library/ShaderCache/5/5ba64ed8110c183ef3e606e3ab0dc7c8.bin
deleted file mode 100644
index b46ea21..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/5/5ba64ed8110c183ef3e606e3ab0dc7c8.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/5/5c11c1eb113433e657f8da8bed3a93d2.bin b/EscapeTheGhost/Library/ShaderCache/5/5c11c1eb113433e657f8da8bed3a93d2.bin
deleted file mode 100644
index b554967..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/5/5c11c1eb113433e657f8da8bed3a93d2.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/5/5cd721f80c4adae80d14f06a5934738b.bin b/EscapeTheGhost/Library/ShaderCache/5/5cd721f80c4adae80d14f06a5934738b.bin
deleted file mode 100644
index b50d26a..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/5/5cd721f80c4adae80d14f06a5934738b.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/5/5cfb4edfa8a20e1d27326477d7db5536.bin b/EscapeTheGhost/Library/ShaderCache/5/5cfb4edfa8a20e1d27326477d7db5536.bin
deleted file mode 100644
index b04233d..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/5/5cfb4edfa8a20e1d27326477d7db5536.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/5/5d1167de34ffe3a55d6d94414585f2f7.bin b/EscapeTheGhost/Library/ShaderCache/5/5d1167de34ffe3a55d6d94414585f2f7.bin
deleted file mode 100644
index c8da633..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/5/5d1167de34ffe3a55d6d94414585f2f7.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/5/5d40d4faaa262744c00a661aa17f10a1.bin b/EscapeTheGhost/Library/ShaderCache/5/5d40d4faaa262744c00a661aa17f10a1.bin
deleted file mode 100644
index 091d364..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/5/5d40d4faaa262744c00a661aa17f10a1.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/5/5ddefee7b4f3343871888bb6da8b66ca.bin b/EscapeTheGhost/Library/ShaderCache/5/5ddefee7b4f3343871888bb6da8b66ca.bin
deleted file mode 100644
index e945766..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/5/5ddefee7b4f3343871888bb6da8b66ca.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/5/5e15f208c6c865376e8ffa48d8d079d1.bin b/EscapeTheGhost/Library/ShaderCache/5/5e15f208c6c865376e8ffa48d8d079d1.bin
deleted file mode 100644
index b3bcf8a..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/5/5e15f208c6c865376e8ffa48d8d079d1.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/5/5e24d24c967b072171264fd5c38fe2e3.bin b/EscapeTheGhost/Library/ShaderCache/5/5e24d24c967b072171264fd5c38fe2e3.bin
deleted file mode 100644
index da2ef93..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/5/5e24d24c967b072171264fd5c38fe2e3.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/5/5e55df4f7875db41d513e03f7e679017.bin b/EscapeTheGhost/Library/ShaderCache/5/5e55df4f7875db41d513e03f7e679017.bin
deleted file mode 100644
index a775927..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/5/5e55df4f7875db41d513e03f7e679017.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/5/5e8847e4330a4bbe2bbb48377cff3fe8.bin b/EscapeTheGhost/Library/ShaderCache/5/5e8847e4330a4bbe2bbb48377cff3fe8.bin
deleted file mode 100644
index dd5a4e1..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/5/5e8847e4330a4bbe2bbb48377cff3fe8.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/5/5f66079493af6c34d3fe8ea9ef4828f9.bin b/EscapeTheGhost/Library/ShaderCache/5/5f66079493af6c34d3fe8ea9ef4828f9.bin
deleted file mode 100644
index 2fe6786..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/5/5f66079493af6c34d3fe8ea9ef4828f9.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/5/5f6ba24d656bea194feeb3f3b31d0d02.bin b/EscapeTheGhost/Library/ShaderCache/5/5f6ba24d656bea194feeb3f3b31d0d02.bin
deleted file mode 100644
index 85ac3bb..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/5/5f6ba24d656bea194feeb3f3b31d0d02.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/5/5f804c384ed1b09e214675c72c2caaa3.bin b/EscapeTheGhost/Library/ShaderCache/5/5f804c384ed1b09e214675c72c2caaa3.bin
deleted file mode 100644
index 447b1f0..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/5/5f804c384ed1b09e214675c72c2caaa3.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/5/5f8c175c5436933de5db6ae9f7eff75b.bin b/EscapeTheGhost/Library/ShaderCache/5/5f8c175c5436933de5db6ae9f7eff75b.bin
deleted file mode 100644
index f32f7ef..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/5/5f8c175c5436933de5db6ae9f7eff75b.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/5/5fc324f26374dab92b92b66b030bd163.bin b/EscapeTheGhost/Library/ShaderCache/5/5fc324f26374dab92b92b66b030bd163.bin
deleted file mode 100644
index ca87834..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/5/5fc324f26374dab92b92b66b030bd163.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/5/5fc47887e9843ab5f1bffb978e5ed578.bin b/EscapeTheGhost/Library/ShaderCache/5/5fc47887e9843ab5f1bffb978e5ed578.bin
deleted file mode 100644
index e1a10db..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/5/5fc47887e9843ab5f1bffb978e5ed578.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/6/60028f06adb67378c084620eb202b273.bin b/EscapeTheGhost/Library/ShaderCache/6/60028f06adb67378c084620eb202b273.bin
deleted file mode 100644
index 849b5a2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/6/60028f06adb67378c084620eb202b273.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/6/605cb44dfb674d250a3a3c9c3417c6e1.bin b/EscapeTheGhost/Library/ShaderCache/6/605cb44dfb674d250a3a3c9c3417c6e1.bin
deleted file mode 100644
index 849b5a2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/6/605cb44dfb674d250a3a3c9c3417c6e1.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/6/606445bae25c29bff3442afe8615067a.bin b/EscapeTheGhost/Library/ShaderCache/6/606445bae25c29bff3442afe8615067a.bin
deleted file mode 100644
index 3557b2c..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/6/606445bae25c29bff3442afe8615067a.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/6/6097a102d21f028030d58e0d38abdf7e.bin b/EscapeTheGhost/Library/ShaderCache/6/6097a102d21f028030d58e0d38abdf7e.bin
deleted file mode 100644
index cb4415c..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/6/6097a102d21f028030d58e0d38abdf7e.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/6/61597a07ac2ad043f2c14ae27c534ad7.bin b/EscapeTheGhost/Library/ShaderCache/6/61597a07ac2ad043f2c14ae27c534ad7.bin
deleted file mode 100644
index df31c45..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/6/61597a07ac2ad043f2c14ae27c534ad7.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/6/61642714adfd9e62b3754dd4ee82c125.bin b/EscapeTheGhost/Library/ShaderCache/6/61642714adfd9e62b3754dd4ee82c125.bin
deleted file mode 100644
index 447b1f0..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/6/61642714adfd9e62b3754dd4ee82c125.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/6/6189486ae6badf6838f9b09d82a341d9.bin b/EscapeTheGhost/Library/ShaderCache/6/6189486ae6badf6838f9b09d82a341d9.bin
deleted file mode 100644
index f170008..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/6/6189486ae6badf6838f9b09d82a341d9.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/6/62f81c428dfde06869852777b229264e.bin b/EscapeTheGhost/Library/ShaderCache/6/62f81c428dfde06869852777b229264e.bin
deleted file mode 100644
index bfd2099..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/6/62f81c428dfde06869852777b229264e.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/6/630143b5a2ba807dbf8f356c85433612.bin b/EscapeTheGhost/Library/ShaderCache/6/630143b5a2ba807dbf8f356c85433612.bin
deleted file mode 100644
index 849b5a2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/6/630143b5a2ba807dbf8f356c85433612.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/6/63078cc74f9c5f7ebd6013156e89975f.bin b/EscapeTheGhost/Library/ShaderCache/6/63078cc74f9c5f7ebd6013156e89975f.bin
deleted file mode 100644
index 158c4e0..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/6/63078cc74f9c5f7ebd6013156e89975f.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/6/64e0fb6ac7b7853f41b464fbb54d0802.bin b/EscapeTheGhost/Library/ShaderCache/6/64e0fb6ac7b7853f41b464fbb54d0802.bin
deleted file mode 100644
index fd2bfc4..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/6/64e0fb6ac7b7853f41b464fbb54d0802.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/6/64fd07437a90e37732c1ba53e4f67cfa.bin b/EscapeTheGhost/Library/ShaderCache/6/64fd07437a90e37732c1ba53e4f67cfa.bin
deleted file mode 100644
index 8fc9891..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/6/64fd07437a90e37732c1ba53e4f67cfa.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/6/65957fc8f32d526a5d8badb3ec199151.bin b/EscapeTheGhost/Library/ShaderCache/6/65957fc8f32d526a5d8badb3ec199151.bin
deleted file mode 100644
index 7846c85..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/6/65957fc8f32d526a5d8badb3ec199151.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/6/662d8756826483de147c4dbd45f82099.bin b/EscapeTheGhost/Library/ShaderCache/6/662d8756826483de147c4dbd45f82099.bin
deleted file mode 100644
index 7689bc5..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/6/662d8756826483de147c4dbd45f82099.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/6/66655b0da19a54041222e25879a8d3ce.bin b/EscapeTheGhost/Library/ShaderCache/6/66655b0da19a54041222e25879a8d3ce.bin
deleted file mode 100644
index cf0f14b..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/6/66655b0da19a54041222e25879a8d3ce.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/6/667d5b134a4e78f1a9b87f1f7141aa64.bin b/EscapeTheGhost/Library/ShaderCache/6/667d5b134a4e78f1a9b87f1f7141aa64.bin
deleted file mode 100644
index 602dc83..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/6/667d5b134a4e78f1a9b87f1f7141aa64.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/6/66f0119eb54a4825e8c2e33d4999a3d9.bin b/EscapeTheGhost/Library/ShaderCache/6/66f0119eb54a4825e8c2e33d4999a3d9.bin
deleted file mode 100644
index bec8fab..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/6/66f0119eb54a4825e8c2e33d4999a3d9.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/6/6790b89c838754a5ea486cc617fe232b.bin b/EscapeTheGhost/Library/ShaderCache/6/6790b89c838754a5ea486cc617fe232b.bin
deleted file mode 100644
index 079a1ee..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/6/6790b89c838754a5ea486cc617fe232b.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/6/683ac0abcb37ee300f60e9250e8f37dc.bin b/EscapeTheGhost/Library/ShaderCache/6/683ac0abcb37ee300f60e9250e8f37dc.bin
deleted file mode 100644
index 1a7b083..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/6/683ac0abcb37ee300f60e9250e8f37dc.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/6/685406437e82d3a268e33a74e72bdfee.bin b/EscapeTheGhost/Library/ShaderCache/6/685406437e82d3a268e33a74e72bdfee.bin
deleted file mode 100644
index 408c1c2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/6/685406437e82d3a268e33a74e72bdfee.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/6/689bc73631524d188acf4f7380f92165.bin b/EscapeTheGhost/Library/ShaderCache/6/689bc73631524d188acf4f7380f92165.bin
deleted file mode 100644
index b39cf22..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/6/689bc73631524d188acf4f7380f92165.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/6/68a1ca41569d7a0fde5b25c88a1b9153.bin b/EscapeTheGhost/Library/ShaderCache/6/68a1ca41569d7a0fde5b25c88a1b9153.bin
deleted file mode 100644
index fae9de7..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/6/68a1ca41569d7a0fde5b25c88a1b9153.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/6/68ffb06f3cb1cf07c02ab25ff5ba3d75.bin b/EscapeTheGhost/Library/ShaderCache/6/68ffb06f3cb1cf07c02ab25ff5ba3d75.bin
deleted file mode 100644
index d02a895..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/6/68ffb06f3cb1cf07c02ab25ff5ba3d75.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/6/69df4427d8f8714325b89a05a6b1036e.bin b/EscapeTheGhost/Library/ShaderCache/6/69df4427d8f8714325b89a05a6b1036e.bin
deleted file mode 100644
index 338fd85..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/6/69df4427d8f8714325b89a05a6b1036e.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/6/6a254b9ccba6819aa4574938931a1cd1.bin b/EscapeTheGhost/Library/ShaderCache/6/6a254b9ccba6819aa4574938931a1cd1.bin
deleted file mode 100644
index 811ecdd..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/6/6a254b9ccba6819aa4574938931a1cd1.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/6/6ab88ea084d20da8afad130eec75ae3e.bin b/EscapeTheGhost/Library/ShaderCache/6/6ab88ea084d20da8afad130eec75ae3e.bin
deleted file mode 100644
index 849b5a2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/6/6ab88ea084d20da8afad130eec75ae3e.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/6/6af9c0cbd1b9e9d84a346a7bb95d318e.bin b/EscapeTheGhost/Library/ShaderCache/6/6af9c0cbd1b9e9d84a346a7bb95d318e.bin
deleted file mode 100644
index 5fe73d2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/6/6af9c0cbd1b9e9d84a346a7bb95d318e.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/6/6bdf46736f9290453d5e793ba19847c8.bin b/EscapeTheGhost/Library/ShaderCache/6/6bdf46736f9290453d5e793ba19847c8.bin
deleted file mode 100644
index 19876a7..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/6/6bdf46736f9290453d5e793ba19847c8.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/6/6bf425dac5073134553d89e21ccc4a51.bin b/EscapeTheGhost/Library/ShaderCache/6/6bf425dac5073134553d89e21ccc4a51.bin
deleted file mode 100644
index 8a6bf51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/6/6bf425dac5073134553d89e21ccc4a51.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/6/6c015f021f94f536a84d53710443f3d5.bin b/EscapeTheGhost/Library/ShaderCache/6/6c015f021f94f536a84d53710443f3d5.bin
deleted file mode 100644
index 9e36b5b..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/6/6c015f021f94f536a84d53710443f3d5.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/6/6c214218e5bd532424084252aaee622c.bin b/EscapeTheGhost/Library/ShaderCache/6/6c214218e5bd532424084252aaee622c.bin
deleted file mode 100644
index d030033..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/6/6c214218e5bd532424084252aaee622c.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/6/6cfd78d0619e25ec1f6a3a2331c3d74a.bin b/EscapeTheGhost/Library/ShaderCache/6/6cfd78d0619e25ec1f6a3a2331c3d74a.bin
deleted file mode 100644
index dc04e0c..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/6/6cfd78d0619e25ec1f6a3a2331c3d74a.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/6/6d22afe2ea1fece695c8069167802822.bin b/EscapeTheGhost/Library/ShaderCache/6/6d22afe2ea1fece695c8069167802822.bin
deleted file mode 100644
index 9e4a600..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/6/6d22afe2ea1fece695c8069167802822.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/6/6d46ee193e86d9cda4e22e049c44c589.bin b/EscapeTheGhost/Library/ShaderCache/6/6d46ee193e86d9cda4e22e049c44c589.bin
deleted file mode 100644
index fe4c6a7..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/6/6d46ee193e86d9cda4e22e049c44c589.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/6/6d7391296db02b374eaee6bef5c37dec.bin b/EscapeTheGhost/Library/ShaderCache/6/6d7391296db02b374eaee6bef5c37dec.bin
deleted file mode 100644
index 982c4d4..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/6/6d7391296db02b374eaee6bef5c37dec.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/6/6d7eddacb1c13624830ad79b4869849c.bin b/EscapeTheGhost/Library/ShaderCache/6/6d7eddacb1c13624830ad79b4869849c.bin
deleted file mode 100644
index 87457e0..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/6/6d7eddacb1c13624830ad79b4869849c.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/6/6d8bbe17f45b03c2d0cfd2c73d2d7db1.bin b/EscapeTheGhost/Library/ShaderCache/6/6d8bbe17f45b03c2d0cfd2c73d2d7db1.bin
deleted file mode 100644
index d2f853d..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/6/6d8bbe17f45b03c2d0cfd2c73d2d7db1.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/6/6da061bc3ec9c7b836651db57d9a852a.bin b/EscapeTheGhost/Library/ShaderCache/6/6da061bc3ec9c7b836651db57d9a852a.bin
deleted file mode 100644
index 849b5a2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/6/6da061bc3ec9c7b836651db57d9a852a.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/6/6de035dd93838700311584f95688b078.bin b/EscapeTheGhost/Library/ShaderCache/6/6de035dd93838700311584f95688b078.bin
deleted file mode 100644
index 417791f..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/6/6de035dd93838700311584f95688b078.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/6/6e40787aacd0e1eae501e2d446487693.bin b/EscapeTheGhost/Library/ShaderCache/6/6e40787aacd0e1eae501e2d446487693.bin
deleted file mode 100644
index 3fbac14..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/6/6e40787aacd0e1eae501e2d446487693.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/6/6ea6f260e2a705d982b6536c1ddf3822.bin b/EscapeTheGhost/Library/ShaderCache/6/6ea6f260e2a705d982b6536c1ddf3822.bin
deleted file mode 100644
index 3e728ce..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/6/6ea6f260e2a705d982b6536c1ddf3822.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/6/6eae80d0b4e37941ac2580806b69958a.bin b/EscapeTheGhost/Library/ShaderCache/6/6eae80d0b4e37941ac2580806b69958a.bin
deleted file mode 100644
index 74d2e29..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/6/6eae80d0b4e37941ac2580806b69958a.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/6/6f6af21dc1291ef370dfab1cd24bd377.bin b/EscapeTheGhost/Library/ShaderCache/6/6f6af21dc1291ef370dfab1cd24bd377.bin
deleted file mode 100644
index 849b5a2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/6/6f6af21dc1291ef370dfab1cd24bd377.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/6/6fbcc042e6fee22b99dfa8e7b0d58158.bin b/EscapeTheGhost/Library/ShaderCache/6/6fbcc042e6fee22b99dfa8e7b0d58158.bin
deleted file mode 100644
index 994e397..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/6/6fbcc042e6fee22b99dfa8e7b0d58158.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/7/705519bf6d0f1b5290f44fb8d6f44dc6.bin b/EscapeTheGhost/Library/ShaderCache/7/705519bf6d0f1b5290f44fb8d6f44dc6.bin
deleted file mode 100644
index 4c49af7..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/7/705519bf6d0f1b5290f44fb8d6f44dc6.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/7/70891fa2d7d8b0590c870ed5334c4ae6.bin b/EscapeTheGhost/Library/ShaderCache/7/70891fa2d7d8b0590c870ed5334c4ae6.bin
deleted file mode 100644
index 20a7ba3..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/7/70891fa2d7d8b0590c870ed5334c4ae6.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/7/709c7ab35da135d9236461847c1202e9.bin b/EscapeTheGhost/Library/ShaderCache/7/709c7ab35da135d9236461847c1202e9.bin
deleted file mode 100644
index 547f99f..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/7/709c7ab35da135d9236461847c1202e9.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/7/70ade5ee26589c1b7bab4427ba6daac7.bin b/EscapeTheGhost/Library/ShaderCache/7/70ade5ee26589c1b7bab4427ba6daac7.bin
deleted file mode 100644
index 80fb40d..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/7/70ade5ee26589c1b7bab4427ba6daac7.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/7/70bc57ee291e13e75409f36bcd5b7ce9.bin b/EscapeTheGhost/Library/ShaderCache/7/70bc57ee291e13e75409f36bcd5b7ce9.bin
deleted file mode 100644
index 8a9047b..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/7/70bc57ee291e13e75409f36bcd5b7ce9.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/7/70d55d7ec1ca8a714e06db3c9058e80c.bin b/EscapeTheGhost/Library/ShaderCache/7/70d55d7ec1ca8a714e06db3c9058e80c.bin
deleted file mode 100644
index a94917d..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/7/70d55d7ec1ca8a714e06db3c9058e80c.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/7/70f6cb810c38a6df649de979a51fbafe.bin b/EscapeTheGhost/Library/ShaderCache/7/70f6cb810c38a6df649de979a51fbafe.bin
deleted file mode 100644
index 408c1c2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/7/70f6cb810c38a6df649de979a51fbafe.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/7/716bbc3165acb87ac982575a4586fc92.bin b/EscapeTheGhost/Library/ShaderCache/7/716bbc3165acb87ac982575a4586fc92.bin
deleted file mode 100644
index 76d4d3c..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/7/716bbc3165acb87ac982575a4586fc92.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/7/718283e15c46bcf05dc38cff2fe16ac3.bin b/EscapeTheGhost/Library/ShaderCache/7/718283e15c46bcf05dc38cff2fe16ac3.bin
deleted file mode 100644
index 981fc8d..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/7/718283e15c46bcf05dc38cff2fe16ac3.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/7/726cffaa4dd0fb515670dd3c1cbf0bcb.bin b/EscapeTheGhost/Library/ShaderCache/7/726cffaa4dd0fb515670dd3c1cbf0bcb.bin
deleted file mode 100644
index 55330db..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/7/726cffaa4dd0fb515670dd3c1cbf0bcb.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/7/726d1637648f1360aedd61776c110fc2.bin b/EscapeTheGhost/Library/ShaderCache/7/726d1637648f1360aedd61776c110fc2.bin
deleted file mode 100644
index e905546..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/7/726d1637648f1360aedd61776c110fc2.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/7/726e7a44ed54f233f91029818e39b2f3.bin b/EscapeTheGhost/Library/ShaderCache/7/726e7a44ed54f233f91029818e39b2f3.bin
deleted file mode 100644
index 1343b1e..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/7/726e7a44ed54f233f91029818e39b2f3.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/7/72c833ed11ac0f1fb9b5c5b19405ea66.bin b/EscapeTheGhost/Library/ShaderCache/7/72c833ed11ac0f1fb9b5c5b19405ea66.bin
deleted file mode 100644
index db05c4c..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/7/72c833ed11ac0f1fb9b5c5b19405ea66.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/7/737efe80c3c0fd8c9b8153cca626e414.bin b/EscapeTheGhost/Library/ShaderCache/7/737efe80c3c0fd8c9b8153cca626e414.bin
deleted file mode 100644
index 8a6bf51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/7/737efe80c3c0fd8c9b8153cca626e414.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/7/73a73cd2f1d0542a3b823f36b850e02d.bin b/EscapeTheGhost/Library/ShaderCache/7/73a73cd2f1d0542a3b823f36b850e02d.bin
deleted file mode 100644
index 026b229..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/7/73a73cd2f1d0542a3b823f36b850e02d.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/7/73b44b29f26cff2a3737842ca6518b1b.bin b/EscapeTheGhost/Library/ShaderCache/7/73b44b29f26cff2a3737842ca6518b1b.bin
deleted file mode 100644
index b46ea21..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/7/73b44b29f26cff2a3737842ca6518b1b.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/7/73dd1e8f69eb22a57dbd4fda0ca2154b.bin b/EscapeTheGhost/Library/ShaderCache/7/73dd1e8f69eb22a57dbd4fda0ca2154b.bin
deleted file mode 100644
index e08dddb..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/7/73dd1e8f69eb22a57dbd4fda0ca2154b.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/7/74d74b753b38e0b49c81d80e663c670c.bin b/EscapeTheGhost/Library/ShaderCache/7/74d74b753b38e0b49c81d80e663c670c.bin
deleted file mode 100644
index ca87834..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/7/74d74b753b38e0b49c81d80e663c670c.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/7/75b1bf4cf705819589ce83c66fef7219.bin b/EscapeTheGhost/Library/ShaderCache/7/75b1bf4cf705819589ce83c66fef7219.bin
deleted file mode 100644
index 39244a2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/7/75b1bf4cf705819589ce83c66fef7219.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/7/76008f6588e08eb992fc21e44d416094.bin b/EscapeTheGhost/Library/ShaderCache/7/76008f6588e08eb992fc21e44d416094.bin
deleted file mode 100644
index 849b5a2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/7/76008f6588e08eb992fc21e44d416094.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/7/76074258b3423dab89ea050b4c4d252a.bin b/EscapeTheGhost/Library/ShaderCache/7/76074258b3423dab89ea050b4c4d252a.bin
deleted file mode 100644
index b56638c..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/7/76074258b3423dab89ea050b4c4d252a.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/7/760e5d89d67987f7d3d1b6b8af1affb4.bin b/EscapeTheGhost/Library/ShaderCache/7/760e5d89d67987f7d3d1b6b8af1affb4.bin
deleted file mode 100644
index 80fb40d..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/7/760e5d89d67987f7d3d1b6b8af1affb4.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/7/761cf6b184cb08e7abcd177ab4242a77.bin b/EscapeTheGhost/Library/ShaderCache/7/761cf6b184cb08e7abcd177ab4242a77.bin
deleted file mode 100644
index 8fc9891..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/7/761cf6b184cb08e7abcd177ab4242a77.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/7/765f6f65d9db592358733089c22fef15.bin b/EscapeTheGhost/Library/ShaderCache/7/765f6f65d9db592358733089c22fef15.bin
deleted file mode 100644
index 1a7b083..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/7/765f6f65d9db592358733089c22fef15.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/7/766cb4808b41e275c9bb024c434f6977.bin b/EscapeTheGhost/Library/ShaderCache/7/766cb4808b41e275c9bb024c434f6977.bin
deleted file mode 100644
index 6110dbe..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/7/766cb4808b41e275c9bb024c434f6977.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/7/7675459a915753ecec53b74d1de1fd90.bin b/EscapeTheGhost/Library/ShaderCache/7/7675459a915753ecec53b74d1de1fd90.bin
deleted file mode 100644
index 8a6bf51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/7/7675459a915753ecec53b74d1de1fd90.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/7/767a53868c0880b1d45fb4173cdda8b8.bin b/EscapeTheGhost/Library/ShaderCache/7/767a53868c0880b1d45fb4173cdda8b8.bin
deleted file mode 100644
index 0b16763..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/7/767a53868c0880b1d45fb4173cdda8b8.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/7/7697eb10a301b2bd4be6ca1cebe410d3.bin b/EscapeTheGhost/Library/ShaderCache/7/7697eb10a301b2bd4be6ca1cebe410d3.bin
deleted file mode 100644
index c576d9d..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/7/7697eb10a301b2bd4be6ca1cebe410d3.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/7/76ab1e6d8fc67da82e327bafaf0f7cc5.bin b/EscapeTheGhost/Library/ShaderCache/7/76ab1e6d8fc67da82e327bafaf0f7cc5.bin
deleted file mode 100644
index 3f3db07..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/7/76ab1e6d8fc67da82e327bafaf0f7cc5.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/7/771aa8da0f9c1dee76c7d2b1ee094058.bin b/EscapeTheGhost/Library/ShaderCache/7/771aa8da0f9c1dee76c7d2b1ee094058.bin
deleted file mode 100644
index 8a6bf51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/7/771aa8da0f9c1dee76c7d2b1ee094058.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/7/772d7c526ad425f92b7e60a823ece087.bin b/EscapeTheGhost/Library/ShaderCache/7/772d7c526ad425f92b7e60a823ece087.bin
deleted file mode 100644
index df31c45..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/7/772d7c526ad425f92b7e60a823ece087.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/7/77673570f076dec90e42c782a8892269.bin b/EscapeTheGhost/Library/ShaderCache/7/77673570f076dec90e42c782a8892269.bin
deleted file mode 100644
index 6c11624..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/7/77673570f076dec90e42c782a8892269.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/7/782bbc5b9af0f9071024bf517cede02e.bin b/EscapeTheGhost/Library/ShaderCache/7/782bbc5b9af0f9071024bf517cede02e.bin
deleted file mode 100644
index d2f3698..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/7/782bbc5b9af0f9071024bf517cede02e.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/7/78b1610457e1244a624e29b6776c85e0.bin b/EscapeTheGhost/Library/ShaderCache/7/78b1610457e1244a624e29b6776c85e0.bin
deleted file mode 100644
index 546b711..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/7/78b1610457e1244a624e29b6776c85e0.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/7/7912687f218a5036d4a3cf5d62845f6f.bin b/EscapeTheGhost/Library/ShaderCache/7/7912687f218a5036d4a3cf5d62845f6f.bin
deleted file mode 100644
index f60197b..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/7/7912687f218a5036d4a3cf5d62845f6f.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/7/79ce4d1749b4cc23f7c0fb4790728b3d.bin b/EscapeTheGhost/Library/ShaderCache/7/79ce4d1749b4cc23f7c0fb4790728b3d.bin
deleted file mode 100644
index 4ad7ca3..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/7/79ce4d1749b4cc23f7c0fb4790728b3d.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/7/7a88d839f23e632b4e94426b957034d4.bin b/EscapeTheGhost/Library/ShaderCache/7/7a88d839f23e632b4e94426b957034d4.bin
deleted file mode 100644
index ab8bcf7..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/7/7a88d839f23e632b4e94426b957034d4.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/7/7a92ff9a2d37f573c905503f22a1e931.bin b/EscapeTheGhost/Library/ShaderCache/7/7a92ff9a2d37f573c905503f22a1e931.bin
deleted file mode 100644
index 0e7ea36..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/7/7a92ff9a2d37f573c905503f22a1e931.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/7/7aca4d0e17dccc052ee023e9cdef6908.bin b/EscapeTheGhost/Library/ShaderCache/7/7aca4d0e17dccc052ee023e9cdef6908.bin
deleted file mode 100644
index 21f07d0..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/7/7aca4d0e17dccc052ee023e9cdef6908.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/7/7ad83eca0f9e21cc870c30a73269ca7e.bin b/EscapeTheGhost/Library/ShaderCache/7/7ad83eca0f9e21cc870c30a73269ca7e.bin
deleted file mode 100644
index 4b93cda..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/7/7ad83eca0f9e21cc870c30a73269ca7e.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/7/7b1910d3eb391b6a849dcd4fe9300e96.bin b/EscapeTheGhost/Library/ShaderCache/7/7b1910d3eb391b6a849dcd4fe9300e96.bin
deleted file mode 100644
index 6c3225c..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/7/7b1910d3eb391b6a849dcd4fe9300e96.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/7/7b8ab1d1df15a57ec2af32ca81587334.bin b/EscapeTheGhost/Library/ShaderCache/7/7b8ab1d1df15a57ec2af32ca81587334.bin
deleted file mode 100644
index b67d2a5..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/7/7b8ab1d1df15a57ec2af32ca81587334.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/7/7bab7c48a6245184c2e7b26d7fdef02e.bin b/EscapeTheGhost/Library/ShaderCache/7/7bab7c48a6245184c2e7b26d7fdef02e.bin
deleted file mode 100644
index 8a6bf51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/7/7bab7c48a6245184c2e7b26d7fdef02e.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/7/7bd41999dbb2bfc477803128d07320dd.bin b/EscapeTheGhost/Library/ShaderCache/7/7bd41999dbb2bfc477803128d07320dd.bin
deleted file mode 100644
index 849b5a2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/7/7bd41999dbb2bfc477803128d07320dd.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/7/7bf1652763119fd7090bbb7bfb038dad.bin b/EscapeTheGhost/Library/ShaderCache/7/7bf1652763119fd7090bbb7bfb038dad.bin
deleted file mode 100644
index a3e1bb0..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/7/7bf1652763119fd7090bbb7bfb038dad.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/7/7c1ab6cf936cfbafa271fc3a34f5435c.bin b/EscapeTheGhost/Library/ShaderCache/7/7c1ab6cf936cfbafa271fc3a34f5435c.bin
deleted file mode 100644
index e029cb1..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/7/7c1ab6cf936cfbafa271fc3a34f5435c.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/7/7c2314213cc0ddb8e6911eec6224f3bf.bin b/EscapeTheGhost/Library/ShaderCache/7/7c2314213cc0ddb8e6911eec6224f3bf.bin
deleted file mode 100644
index c73d5d5..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/7/7c2314213cc0ddb8e6911eec6224f3bf.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/7/7c59e76b96546251aa78d4fbf1f5b0f9.bin b/EscapeTheGhost/Library/ShaderCache/7/7c59e76b96546251aa78d4fbf1f5b0f9.bin
deleted file mode 100644
index 7724aef..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/7/7c59e76b96546251aa78d4fbf1f5b0f9.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/7/7cc1bade960f4454444d22f69227fdbd.bin b/EscapeTheGhost/Library/ShaderCache/7/7cc1bade960f4454444d22f69227fdbd.bin
deleted file mode 100644
index 8a6bf51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/7/7cc1bade960f4454444d22f69227fdbd.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/7/7de4ffd94fa71997a201109c6bb7cd33.bin b/EscapeTheGhost/Library/ShaderCache/7/7de4ffd94fa71997a201109c6bb7cd33.bin
deleted file mode 100644
index 5aa9bb2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/7/7de4ffd94fa71997a201109c6bb7cd33.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/7/7e0e57cec2b2f4885e58b9c74bc27d2f.bin b/EscapeTheGhost/Library/ShaderCache/7/7e0e57cec2b2f4885e58b9c74bc27d2f.bin
deleted file mode 100644
index e0c1f3d..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/7/7e0e57cec2b2f4885e58b9c74bc27d2f.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/7/7e2d1b62c30fb246bf77e9cd94e38534.bin b/EscapeTheGhost/Library/ShaderCache/7/7e2d1b62c30fb246bf77e9cd94e38534.bin
deleted file mode 100644
index 1a16473..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/7/7e2d1b62c30fb246bf77e9cd94e38534.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/7/7edb6531b5c578e9f62170d4db08ae5d.bin b/EscapeTheGhost/Library/ShaderCache/7/7edb6531b5c578e9f62170d4db08ae5d.bin
deleted file mode 100644
index 849b5a2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/7/7edb6531b5c578e9f62170d4db08ae5d.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/7/7edbb4d13dc183f4fac25a13aa360aeb.bin b/EscapeTheGhost/Library/ShaderCache/7/7edbb4d13dc183f4fac25a13aa360aeb.bin
deleted file mode 100644
index b3bcf8a..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/7/7edbb4d13dc183f4fac25a13aa360aeb.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/7/7f4cfdb922172aae1f396e5eef693796.bin b/EscapeTheGhost/Library/ShaderCache/7/7f4cfdb922172aae1f396e5eef693796.bin
deleted file mode 100644
index e08dddb..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/7/7f4cfdb922172aae1f396e5eef693796.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/7/7f6e07159292d155053264556a6971bf.bin b/EscapeTheGhost/Library/ShaderCache/7/7f6e07159292d155053264556a6971bf.bin
deleted file mode 100644
index fb401ef..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/7/7f6e07159292d155053264556a6971bf.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/7/7fa2b97ae1a809e8e68c8f7f996e96f9.bin b/EscapeTheGhost/Library/ShaderCache/7/7fa2b97ae1a809e8e68c8f7f996e96f9.bin
deleted file mode 100644
index dac857d..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/7/7fa2b97ae1a809e8e68c8f7f996e96f9.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/7/7fc4a012306d48c43cf5e72d6178511d.bin b/EscapeTheGhost/Library/ShaderCache/7/7fc4a012306d48c43cf5e72d6178511d.bin
deleted file mode 100644
index e945766..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/7/7fc4a012306d48c43cf5e72d6178511d.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/8/800c93e21b62794bf37c60247d371b90.bin b/EscapeTheGhost/Library/ShaderCache/8/800c93e21b62794bf37c60247d371b90.bin
deleted file mode 100644
index 83b5001..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/8/800c93e21b62794bf37c60247d371b90.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/8/800f100779f206c082c16247bf92f3c2.bin b/EscapeTheGhost/Library/ShaderCache/8/800f100779f206c082c16247bf92f3c2.bin
deleted file mode 100644
index 21f07d0..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/8/800f100779f206c082c16247bf92f3c2.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/8/804dad866a5946d7eea54d7ff7ef63d9.bin b/EscapeTheGhost/Library/ShaderCache/8/804dad866a5946d7eea54d7ff7ef63d9.bin
deleted file mode 100644
index 6c11624..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/8/804dad866a5946d7eea54d7ff7ef63d9.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/8/8059a52c6b6b2465f3bdf2d9c728d7c4.bin b/EscapeTheGhost/Library/ShaderCache/8/8059a52c6b6b2465f3bdf2d9c728d7c4.bin
deleted file mode 100644
index 2fe6786..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/8/8059a52c6b6b2465f3bdf2d9c728d7c4.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/8/806eb39e4765265af74c189cdb809141.bin b/EscapeTheGhost/Library/ShaderCache/8/806eb39e4765265af74c189cdb809141.bin
deleted file mode 100644
index dd5a4e1..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/8/806eb39e4765265af74c189cdb809141.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/8/807280f2a30e697c0b2136dec9694a66.bin b/EscapeTheGhost/Library/ShaderCache/8/807280f2a30e697c0b2136dec9694a66.bin
deleted file mode 100644
index 80fb40d..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/8/807280f2a30e697c0b2136dec9694a66.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/8/80f68039626cdb46aa11a65b92962a15.bin b/EscapeTheGhost/Library/ShaderCache/8/80f68039626cdb46aa11a65b92962a15.bin
deleted file mode 100644
index da2ef93..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/8/80f68039626cdb46aa11a65b92962a15.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/8/81c1a8fe126513bbba288d8809eea26c.bin b/EscapeTheGhost/Library/ShaderCache/8/81c1a8fe126513bbba288d8809eea26c.bin
deleted file mode 100644
index 338fd85..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/8/81c1a8fe126513bbba288d8809eea26c.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/8/81c63cb4726fc1757b2afc1ba30fd4f5.bin b/EscapeTheGhost/Library/ShaderCache/8/81c63cb4726fc1757b2afc1ba30fd4f5.bin
deleted file mode 100644
index 26c0a87..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/8/81c63cb4726fc1757b2afc1ba30fd4f5.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/8/8212af939eaa1d4b40250788ecb97832.bin b/EscapeTheGhost/Library/ShaderCache/8/8212af939eaa1d4b40250788ecb97832.bin
deleted file mode 100644
index 428eeb4..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/8/8212af939eaa1d4b40250788ecb97832.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/8/82394482c8cf86b37eeb42b7c7918364.bin b/EscapeTheGhost/Library/ShaderCache/8/82394482c8cf86b37eeb42b7c7918364.bin
deleted file mode 100644
index 17d32a0..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/8/82394482c8cf86b37eeb42b7c7918364.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/8/82abe59db2715862b6084113871af46e.bin b/EscapeTheGhost/Library/ShaderCache/8/82abe59db2715862b6084113871af46e.bin
deleted file mode 100644
index 866ca0c..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/8/82abe59db2715862b6084113871af46e.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/8/82f36a56c348e486b254cd7d5aa8857f.bin b/EscapeTheGhost/Library/ShaderCache/8/82f36a56c348e486b254cd7d5aa8857f.bin
deleted file mode 100644
index 026b229..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/8/82f36a56c348e486b254cd7d5aa8857f.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/8/82f6a57596ae8e43b24ebd6c6cf6d8b4.bin b/EscapeTheGhost/Library/ShaderCache/8/82f6a57596ae8e43b24ebd6c6cf6d8b4.bin
deleted file mode 100644
index 7d209fe..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/8/82f6a57596ae8e43b24ebd6c6cf6d8b4.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/8/833b7a461b8451a90ca54de4ec90b35d.bin b/EscapeTheGhost/Library/ShaderCache/8/833b7a461b8451a90ca54de4ec90b35d.bin
deleted file mode 100644
index 849b5a2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/8/833b7a461b8451a90ca54de4ec90b35d.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/8/834bad9d9e76fcd25319ad41b2335017.bin b/EscapeTheGhost/Library/ShaderCache/8/834bad9d9e76fcd25319ad41b2335017.bin
deleted file mode 100644
index 64ad4c8..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/8/834bad9d9e76fcd25319ad41b2335017.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/8/8353e3318a2d5963c294d04cf78e0a2f.bin b/EscapeTheGhost/Library/ShaderCache/8/8353e3318a2d5963c294d04cf78e0a2f.bin
deleted file mode 100644
index 849b5a2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/8/8353e3318a2d5963c294d04cf78e0a2f.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/8/83e79f9ae4bd2ae0fc3153d32b471c06.bin b/EscapeTheGhost/Library/ShaderCache/8/83e79f9ae4bd2ae0fc3153d32b471c06.bin
deleted file mode 100644
index 7394c73..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/8/83e79f9ae4bd2ae0fc3153d32b471c06.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/8/83fa7b054847b1bfcb2ead7cab1431ed.bin b/EscapeTheGhost/Library/ShaderCache/8/83fa7b054847b1bfcb2ead7cab1431ed.bin
deleted file mode 100644
index 2424514..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/8/83fa7b054847b1bfcb2ead7cab1431ed.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/8/8400d1a12790152362da47cd0c1203ba.bin b/EscapeTheGhost/Library/ShaderCache/8/8400d1a12790152362da47cd0c1203ba.bin
deleted file mode 100644
index 849b5a2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/8/8400d1a12790152362da47cd0c1203ba.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/8/85ec0211aac15695fa8b653871bcb22a.bin b/EscapeTheGhost/Library/ShaderCache/8/85ec0211aac15695fa8b653871bcb22a.bin
deleted file mode 100644
index 17d4332..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/8/85ec0211aac15695fa8b653871bcb22a.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/8/867c5d4235d657a44948683974370032.bin b/EscapeTheGhost/Library/ShaderCache/8/867c5d4235d657a44948683974370032.bin
deleted file mode 100644
index 0e38c70..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/8/867c5d4235d657a44948683974370032.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/8/867cb996e41347f501c0dac67482fb49.bin b/EscapeTheGhost/Library/ShaderCache/8/867cb996e41347f501c0dac67482fb49.bin
deleted file mode 100644
index ad90da1..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/8/867cb996e41347f501c0dac67482fb49.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/8/869841b32763404d340cd6cad93f4183.bin b/EscapeTheGhost/Library/ShaderCache/8/869841b32763404d340cd6cad93f4183.bin
deleted file mode 100644
index 0c70360..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/8/869841b32763404d340cd6cad93f4183.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/8/86a2418f9d44213ccc45964448b7e3ef.bin b/EscapeTheGhost/Library/ShaderCache/8/86a2418f9d44213ccc45964448b7e3ef.bin
deleted file mode 100644
index 849b5a2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/8/86a2418f9d44213ccc45964448b7e3ef.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/8/86aab3980bb7f709e8b5f7110d03e876.bin b/EscapeTheGhost/Library/ShaderCache/8/86aab3980bb7f709e8b5f7110d03e876.bin
deleted file mode 100644
index 2f3d3b0..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/8/86aab3980bb7f709e8b5f7110d03e876.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/8/871a600e71c1a88235e060f80e7baa5b.bin b/EscapeTheGhost/Library/ShaderCache/8/871a600e71c1a88235e060f80e7baa5b.bin
deleted file mode 100644
index 05f8517..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/8/871a600e71c1a88235e060f80e7baa5b.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/8/872388a4695de9ae54873c935db9af02.bin b/EscapeTheGhost/Library/ShaderCache/8/872388a4695de9ae54873c935db9af02.bin
deleted file mode 100644
index 8a6bf51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/8/872388a4695de9ae54873c935db9af02.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/8/8739e87f5c50d74004517b36ecb45ae6.bin b/EscapeTheGhost/Library/ShaderCache/8/8739e87f5c50d74004517b36ecb45ae6.bin
deleted file mode 100644
index 9c17474..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/8/8739e87f5c50d74004517b36ecb45ae6.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/8/8774323084395c31e256f403f55e76cd.bin b/EscapeTheGhost/Library/ShaderCache/8/8774323084395c31e256f403f55e76cd.bin
deleted file mode 100644
index 21f07d0..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/8/8774323084395c31e256f403f55e76cd.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/8/878ee2c41b94ea6403c58dd9c48c96ea.bin b/EscapeTheGhost/Library/ShaderCache/8/878ee2c41b94ea6403c58dd9c48c96ea.bin
deleted file mode 100644
index 1f2078f..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/8/878ee2c41b94ea6403c58dd9c48c96ea.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/8/87e350d8b23fd3b15361d3e95946f637.bin b/EscapeTheGhost/Library/ShaderCache/8/87e350d8b23fd3b15361d3e95946f637.bin
deleted file mode 100644
index 44a0bed..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/8/87e350d8b23fd3b15361d3e95946f637.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/8/8801c6c44a471b3ef84c2de4fcee8d79.bin b/EscapeTheGhost/Library/ShaderCache/8/8801c6c44a471b3ef84c2de4fcee8d79.bin
deleted file mode 100644
index 1f0a8d2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/8/8801c6c44a471b3ef84c2de4fcee8d79.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/8/8843ecd77c3138d1846f7eed3b34ce13.bin b/EscapeTheGhost/Library/ShaderCache/8/8843ecd77c3138d1846f7eed3b34ce13.bin
deleted file mode 100644
index afcd088..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/8/8843ecd77c3138d1846f7eed3b34ce13.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/8/8856037828c24074b48f658968eadad3.bin b/EscapeTheGhost/Library/ShaderCache/8/8856037828c24074b48f658968eadad3.bin
deleted file mode 100644
index 003d626..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/8/8856037828c24074b48f658968eadad3.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/8/88a70e03c129238555d2058dafdd8154.bin b/EscapeTheGhost/Library/ShaderCache/8/88a70e03c129238555d2058dafdd8154.bin
deleted file mode 100644
index f2b5879..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/8/88a70e03c129238555d2058dafdd8154.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/8/89006393cc7d578bcda1882891f266de.bin b/EscapeTheGhost/Library/ShaderCache/8/89006393cc7d578bcda1882891f266de.bin
deleted file mode 100644
index 0a810ed..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/8/89006393cc7d578bcda1882891f266de.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/8/89326e69ef3617ffb5e84df2d5e00f8b.bin b/EscapeTheGhost/Library/ShaderCache/8/89326e69ef3617ffb5e84df2d5e00f8b.bin
deleted file mode 100644
index 849b5a2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/8/89326e69ef3617ffb5e84df2d5e00f8b.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/8/8a2067f3adc3ca4f340264b62f03135f.bin b/EscapeTheGhost/Library/ShaderCache/8/8a2067f3adc3ca4f340264b62f03135f.bin
deleted file mode 100644
index 994e397..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/8/8a2067f3adc3ca4f340264b62f03135f.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/8/8a29a2ca5cc257abf027dd2988360900.bin b/EscapeTheGhost/Library/ShaderCache/8/8a29a2ca5cc257abf027dd2988360900.bin
deleted file mode 100644
index a8b0144..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/8/8a29a2ca5cc257abf027dd2988360900.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/8/8a9abb3913475f621e61971bca488dbd.bin b/EscapeTheGhost/Library/ShaderCache/8/8a9abb3913475f621e61971bca488dbd.bin
deleted file mode 100644
index 98d0415..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/8/8a9abb3913475f621e61971bca488dbd.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/8/8ab213c17b1fe11850b3a75a2c5aef7c.bin b/EscapeTheGhost/Library/ShaderCache/8/8ab213c17b1fe11850b3a75a2c5aef7c.bin
deleted file mode 100644
index 1095f6b..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/8/8ab213c17b1fe11850b3a75a2c5aef7c.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/8/8ac5fda95323a28a47972ac2c4b98f33.bin b/EscapeTheGhost/Library/ShaderCache/8/8ac5fda95323a28a47972ac2c4b98f33.bin
deleted file mode 100644
index 2083188..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/8/8ac5fda95323a28a47972ac2c4b98f33.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/8/8b76896ddbc95f90af0f8e1bdfc24b14.bin b/EscapeTheGhost/Library/ShaderCache/8/8b76896ddbc95f90af0f8e1bdfc24b14.bin
deleted file mode 100644
index 6cc0749..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/8/8b76896ddbc95f90af0f8e1bdfc24b14.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/8/8bbcccdad0ed32675c0bf193c55219cc.bin b/EscapeTheGhost/Library/ShaderCache/8/8bbcccdad0ed32675c0bf193c55219cc.bin
deleted file mode 100644
index e4af042..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/8/8bbcccdad0ed32675c0bf193c55219cc.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/8/8d6ab18254c0f520364a70bb826b0eb9.bin b/EscapeTheGhost/Library/ShaderCache/8/8d6ab18254c0f520364a70bb826b0eb9.bin
deleted file mode 100644
index b46ea21..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/8/8d6ab18254c0f520364a70bb826b0eb9.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/8/8d9b74abb22d90ed64a13fca10057d6e.bin b/EscapeTheGhost/Library/ShaderCache/8/8d9b74abb22d90ed64a13fca10057d6e.bin
deleted file mode 100644
index 7689bc5..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/8/8d9b74abb22d90ed64a13fca10057d6e.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/8/8e1c2131dd0f25ffec59a667a23221a3.bin b/EscapeTheGhost/Library/ShaderCache/8/8e1c2131dd0f25ffec59a667a23221a3.bin
deleted file mode 100644
index 8cc9487..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/8/8e1c2131dd0f25ffec59a667a23221a3.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/8/8e2bc2ab8f1be49f772666c6703d5c5b.bin b/EscapeTheGhost/Library/ShaderCache/8/8e2bc2ab8f1be49f772666c6703d5c5b.bin
deleted file mode 100644
index 7f9e8f8..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/8/8e2bc2ab8f1be49f772666c6703d5c5b.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/8/8e3c26c171cf7330842590306d3b89b3.bin b/EscapeTheGhost/Library/ShaderCache/8/8e3c26c171cf7330842590306d3b89b3.bin
deleted file mode 100644
index 3e8de54..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/8/8e3c26c171cf7330842590306d3b89b3.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/8/8e460520fb5fb212d16b3d71d3f84c63.bin b/EscapeTheGhost/Library/ShaderCache/8/8e460520fb5fb212d16b3d71d3f84c63.bin
deleted file mode 100644
index 21f07d0..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/8/8e460520fb5fb212d16b3d71d3f84c63.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/8/8e8c3280e5b5161ef15a33cf60bf5d98.bin b/EscapeTheGhost/Library/ShaderCache/8/8e8c3280e5b5161ef15a33cf60bf5d98.bin
deleted file mode 100644
index 1a7b083..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/8/8e8c3280e5b5161ef15a33cf60bf5d98.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/8/8ea206ed9c0c9136a4b41234fd36ccd9.bin b/EscapeTheGhost/Library/ShaderCache/8/8ea206ed9c0c9136a4b41234fd36ccd9.bin
deleted file mode 100644
index 2311b8e..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/8/8ea206ed9c0c9136a4b41234fd36ccd9.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/8/8ef1efa99b4a4ae161f2c69cd9f03ee6.bin b/EscapeTheGhost/Library/ShaderCache/8/8ef1efa99b4a4ae161f2c69cd9f03ee6.bin
deleted file mode 100644
index 7f85fa8..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/8/8ef1efa99b4a4ae161f2c69cd9f03ee6.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/8/8ef54ad9e454f81fb40318aee3ac296e.bin b/EscapeTheGhost/Library/ShaderCache/8/8ef54ad9e454f81fb40318aee3ac296e.bin
deleted file mode 100644
index da314ca..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/8/8ef54ad9e454f81fb40318aee3ac296e.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/8/8f0105a7bf7ee6f6f717c07b43f6f444.bin b/EscapeTheGhost/Library/ShaderCache/8/8f0105a7bf7ee6f6f717c07b43f6f444.bin
deleted file mode 100644
index d1a004d..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/8/8f0105a7bf7ee6f6f717c07b43f6f444.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/8/8f11dfe56921322d63bcd12b43d34c62.bin b/EscapeTheGhost/Library/ShaderCache/8/8f11dfe56921322d63bcd12b43d34c62.bin
deleted file mode 100644
index 24caebe..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/8/8f11dfe56921322d63bcd12b43d34c62.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/8/8fb6d1e97ff9d942e98465cb36cf6058.bin b/EscapeTheGhost/Library/ShaderCache/8/8fb6d1e97ff9d942e98465cb36cf6058.bin
deleted file mode 100644
index 8a6bf51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/8/8fb6d1e97ff9d942e98465cb36cf6058.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/8/8fcc7e3f6db4efdbecf57e3dd01ee523.bin b/EscapeTheGhost/Library/ShaderCache/8/8fcc7e3f6db4efdbecf57e3dd01ee523.bin
deleted file mode 100644
index e3b1e4a..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/8/8fcc7e3f6db4efdbecf57e3dd01ee523.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/9/9086526ae44002587adc3c94a3696cb4.bin b/EscapeTheGhost/Library/ShaderCache/9/9086526ae44002587adc3c94a3696cb4.bin
deleted file mode 100644
index 026b229..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/9/9086526ae44002587adc3c94a3696cb4.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/9/90c8db57b2b50bc48045d4b39e1fca3e.bin b/EscapeTheGhost/Library/ShaderCache/9/90c8db57b2b50bc48045d4b39e1fca3e.bin
deleted file mode 100644
index e0a22d5..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/9/90c8db57b2b50bc48045d4b39e1fca3e.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/9/90e2f69922f59236f03ca84ecdc8cb3f.bin b/EscapeTheGhost/Library/ShaderCache/9/90e2f69922f59236f03ca84ecdc8cb3f.bin
deleted file mode 100644
index ae67266..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/9/90e2f69922f59236f03ca84ecdc8cb3f.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/9/90f065988b0a00314569ad084bb8791e.bin b/EscapeTheGhost/Library/ShaderCache/9/90f065988b0a00314569ad084bb8791e.bin
deleted file mode 100644
index 003d626..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/9/90f065988b0a00314569ad084bb8791e.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/9/910d116cc5bfd391724011e7cd6f391d.bin b/EscapeTheGhost/Library/ShaderCache/9/910d116cc5bfd391724011e7cd6f391d.bin
deleted file mode 100644
index 026b229..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/9/910d116cc5bfd391724011e7cd6f391d.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/9/9121c2a169ac724dc3a454f1579421a1.bin b/EscapeTheGhost/Library/ShaderCache/9/9121c2a169ac724dc3a454f1579421a1.bin
deleted file mode 100644
index 7133016..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/9/9121c2a169ac724dc3a454f1579421a1.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/9/91afdd36d0bf6897948a3388cf557416.bin b/EscapeTheGhost/Library/ShaderCache/9/91afdd36d0bf6897948a3388cf557416.bin
deleted file mode 100644
index d09fbcb..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/9/91afdd36d0bf6897948a3388cf557416.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/9/9252c72ea8129be1968932aa87a9cd8a.bin b/EscapeTheGhost/Library/ShaderCache/9/9252c72ea8129be1968932aa87a9cd8a.bin
deleted file mode 100644
index b7a6e11..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/9/9252c72ea8129be1968932aa87a9cd8a.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/9/933fa7ceb3c9df541d7346cb11765962.bin b/EscapeTheGhost/Library/ShaderCache/9/933fa7ceb3c9df541d7346cb11765962.bin
deleted file mode 100644
index ca87834..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/9/933fa7ceb3c9df541d7346cb11765962.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/9/93c3aaf40d6e265d6631bf1e4a6741bf.bin b/EscapeTheGhost/Library/ShaderCache/9/93c3aaf40d6e265d6631bf1e4a6741bf.bin
deleted file mode 100644
index 673be33..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/9/93c3aaf40d6e265d6631bf1e4a6741bf.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/9/93f43b54308d29801708a19256eb4b60.bin b/EscapeTheGhost/Library/ShaderCache/9/93f43b54308d29801708a19256eb4b60.bin
deleted file mode 100644
index 849b5a2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/9/93f43b54308d29801708a19256eb4b60.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/9/940e3d28b66c6abb0ce3d3084ba00d30.bin b/EscapeTheGhost/Library/ShaderCache/9/940e3d28b66c6abb0ce3d3084ba00d30.bin
deleted file mode 100644
index fb401ef..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/9/940e3d28b66c6abb0ce3d3084ba00d30.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/9/94186ad5b928c8410b28de0a3fa1d810.bin b/EscapeTheGhost/Library/ShaderCache/9/94186ad5b928c8410b28de0a3fa1d810.bin
deleted file mode 100644
index 7594b0b..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/9/94186ad5b928c8410b28de0a3fa1d810.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/9/942ceb473741dbe4e9bf474a6cb3d18d.bin b/EscapeTheGhost/Library/ShaderCache/9/942ceb473741dbe4e9bf474a6cb3d18d.bin
deleted file mode 100644
index 849b5a2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/9/942ceb473741dbe4e9bf474a6cb3d18d.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/9/94c192624063ef1734a4011033bb2c22.bin b/EscapeTheGhost/Library/ShaderCache/9/94c192624063ef1734a4011033bb2c22.bin
deleted file mode 100644
index eb210c4..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/9/94c192624063ef1734a4011033bb2c22.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/9/94fb3e121133e78cba059c4eda3c54aa.bin b/EscapeTheGhost/Library/ShaderCache/9/94fb3e121133e78cba059c4eda3c54aa.bin
deleted file mode 100644
index 849b5a2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/9/94fb3e121133e78cba059c4eda3c54aa.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/9/9531e875b9bc9f70547cd1437460d5ad.bin b/EscapeTheGhost/Library/ShaderCache/9/9531e875b9bc9f70547cd1437460d5ad.bin
deleted file mode 100644
index 026b229..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/9/9531e875b9bc9f70547cd1437460d5ad.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/9/95797d9c3021733fa403c6532fdff89b.bin b/EscapeTheGhost/Library/ShaderCache/9/95797d9c3021733fa403c6532fdff89b.bin
deleted file mode 100644
index 849b5a2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/9/95797d9c3021733fa403c6532fdff89b.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/9/957b01e8a76589095d9323261c8a0952.bin b/EscapeTheGhost/Library/ShaderCache/9/957b01e8a76589095d9323261c8a0952.bin
deleted file mode 100644
index c6a1d4f..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/9/957b01e8a76589095d9323261c8a0952.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/9/958df6d4fb65426390ca5ca50e115363.bin b/EscapeTheGhost/Library/ShaderCache/9/958df6d4fb65426390ca5ca50e115363.bin
deleted file mode 100644
index fb401ef..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/9/958df6d4fb65426390ca5ca50e115363.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/9/96719de379883588c6ab8405e6345627.bin b/EscapeTheGhost/Library/ShaderCache/9/96719de379883588c6ab8405e6345627.bin
deleted file mode 100644
index cd90193..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/9/96719de379883588c6ab8405e6345627.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/9/9723b59516eaf73b763c6ab54217c487.bin b/EscapeTheGhost/Library/ShaderCache/9/9723b59516eaf73b763c6ab54217c487.bin
deleted file mode 100644
index 3c4bdda..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/9/9723b59516eaf73b763c6ab54217c487.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/9/9745429f688e7795206e2bccfd324d7b.bin b/EscapeTheGhost/Library/ShaderCache/9/9745429f688e7795206e2bccfd324d7b.bin
deleted file mode 100644
index 8a6bf51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/9/9745429f688e7795206e2bccfd324d7b.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/9/97b5e011b348a02f5dd6e275e9b351c3.bin b/EscapeTheGhost/Library/ShaderCache/9/97b5e011b348a02f5dd6e275e9b351c3.bin
deleted file mode 100644
index 849b5a2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/9/97b5e011b348a02f5dd6e275e9b351c3.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/9/97bbb1f55fa8278a9e1021179b123744.bin b/EscapeTheGhost/Library/ShaderCache/9/97bbb1f55fa8278a9e1021179b123744.bin
deleted file mode 100644
index 88ad6a6..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/9/97bbb1f55fa8278a9e1021179b123744.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/9/97bc24e3d35a509fd119c6f0635a13f9.bin b/EscapeTheGhost/Library/ShaderCache/9/97bc24e3d35a509fd119c6f0635a13f9.bin
deleted file mode 100644
index d61ef47..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/9/97bc24e3d35a509fd119c6f0635a13f9.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/9/9825a0d0d65540b2b640212ed8714936.bin b/EscapeTheGhost/Library/ShaderCache/9/9825a0d0d65540b2b640212ed8714936.bin
deleted file mode 100644
index da2ef93..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/9/9825a0d0d65540b2b640212ed8714936.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/9/9852bac7676c39a4e5c9c52d01d58ca6.bin b/EscapeTheGhost/Library/ShaderCache/9/9852bac7676c39a4e5c9c52d01d58ca6.bin
deleted file mode 100644
index abe0c48..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/9/9852bac7676c39a4e5c9c52d01d58ca6.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/9/9863923c1387f902d2631cd38c55bb41.bin b/EscapeTheGhost/Library/ShaderCache/9/9863923c1387f902d2631cd38c55bb41.bin
deleted file mode 100644
index de69509..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/9/9863923c1387f902d2631cd38c55bb41.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/9/98d186d2358a9f26498d6f873940e48d.bin b/EscapeTheGhost/Library/ShaderCache/9/98d186d2358a9f26498d6f873940e48d.bin
deleted file mode 100644
index 849b5a2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/9/98d186d2358a9f26498d6f873940e48d.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/9/98ef9d1f66f87a9a2015135ee40e1fdc.bin b/EscapeTheGhost/Library/ShaderCache/9/98ef9d1f66f87a9a2015135ee40e1fdc.bin
deleted file mode 100644
index 1259155..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/9/98ef9d1f66f87a9a2015135ee40e1fdc.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/9/9970b6f6c029ecc33815146376c60375.bin b/EscapeTheGhost/Library/ShaderCache/9/9970b6f6c029ecc33815146376c60375.bin
deleted file mode 100644
index f69139b..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/9/9970b6f6c029ecc33815146376c60375.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/9/99914751490a3ca64e5a5041c43ab5d6.bin b/EscapeTheGhost/Library/ShaderCache/9/99914751490a3ca64e5a5041c43ab5d6.bin
deleted file mode 100644
index 644219f..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/9/99914751490a3ca64e5a5041c43ab5d6.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/9/99980c129fbd31b456dc487e22e81536.bin b/EscapeTheGhost/Library/ShaderCache/9/99980c129fbd31b456dc487e22e81536.bin
deleted file mode 100644
index 1647b21..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/9/99980c129fbd31b456dc487e22e81536.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/9/999ba9bc9200b9e8f3bdb34e0b694040.bin b/EscapeTheGhost/Library/ShaderCache/9/999ba9bc9200b9e8f3bdb34e0b694040.bin
deleted file mode 100644
index 6ceed51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/9/999ba9bc9200b9e8f3bdb34e0b694040.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/9/99e793ad70a4d95b246f744555484e90.bin b/EscapeTheGhost/Library/ShaderCache/9/99e793ad70a4d95b246f744555484e90.bin
deleted file mode 100644
index 0a8f88b..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/9/99e793ad70a4d95b246f744555484e90.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/9/99ed2758d3bac8da53fd8901d6c99262.bin b/EscapeTheGhost/Library/ShaderCache/9/99ed2758d3bac8da53fd8901d6c99262.bin
deleted file mode 100644
index 428eeb4..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/9/99ed2758d3bac8da53fd8901d6c99262.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/9/9cf0ee7f7bbfa7e45014f322dd2fb115.bin b/EscapeTheGhost/Library/ShaderCache/9/9cf0ee7f7bbfa7e45014f322dd2fb115.bin
deleted file mode 100644
index b3bcf8a..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/9/9cf0ee7f7bbfa7e45014f322dd2fb115.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/9/9dbea24d58f100a5ba00cb8b722f0355.bin b/EscapeTheGhost/Library/ShaderCache/9/9dbea24d58f100a5ba00cb8b722f0355.bin
deleted file mode 100644
index 8a6bf51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/9/9dbea24d58f100a5ba00cb8b722f0355.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/9/9e135e0dad23d8ccdbb63cf4d2116a89.bin b/EscapeTheGhost/Library/ShaderCache/9/9e135e0dad23d8ccdbb63cf4d2116a89.bin
deleted file mode 100644
index 428eeb4..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/9/9e135e0dad23d8ccdbb63cf4d2116a89.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/9/9e5e59dd7a17d0649c737f39f96b53b6.bin b/EscapeTheGhost/Library/ShaderCache/9/9e5e59dd7a17d0649c737f39f96b53b6.bin
deleted file mode 100644
index c181092..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/9/9e5e59dd7a17d0649c737f39f96b53b6.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/9/9e6df5d1c5278f3e0bba8e0d9a502f2a.bin b/EscapeTheGhost/Library/ShaderCache/9/9e6df5d1c5278f3e0bba8e0d9a502f2a.bin
deleted file mode 100644
index fb401ef..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/9/9e6df5d1c5278f3e0bba8e0d9a502f2a.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/9/9f0540acff6669a937557183be52f995.bin b/EscapeTheGhost/Library/ShaderCache/9/9f0540acff6669a937557183be52f995.bin
deleted file mode 100644
index 849b5a2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/9/9f0540acff6669a937557183be52f995.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/9/9f163298972f12841aec6f66c32fc2d1.bin b/EscapeTheGhost/Library/ShaderCache/9/9f163298972f12841aec6f66c32fc2d1.bin
deleted file mode 100644
index 0efb2cb..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/9/9f163298972f12841aec6f66c32fc2d1.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/9/9fc05e3a0f55094137515bf07919c4fe.bin b/EscapeTheGhost/Library/ShaderCache/9/9fc05e3a0f55094137515bf07919c4fe.bin
deleted file mode 100644
index ab6b5a2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/9/9fc05e3a0f55094137515bf07919c4fe.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/a/a00953b97cf804a92386835db2bac10d.bin b/EscapeTheGhost/Library/ShaderCache/a/a00953b97cf804a92386835db2bac10d.bin
deleted file mode 100644
index 50eac99..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/a/a00953b97cf804a92386835db2bac10d.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/a/a03578257d832de2de1eb7dac93ae7ca.bin b/EscapeTheGhost/Library/ShaderCache/a/a03578257d832de2de1eb7dac93ae7ca.bin
deleted file mode 100644
index 39446c9..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/a/a03578257d832de2de1eb7dac93ae7ca.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/a/a118d7f40865ffe4eb61fce5350ff4bc.bin b/EscapeTheGhost/Library/ShaderCache/a/a118d7f40865ffe4eb61fce5350ff4bc.bin
deleted file mode 100644
index 7268e3c..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/a/a118d7f40865ffe4eb61fce5350ff4bc.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/a/a1251ed899fc1016797e731ddc4532fc.bin b/EscapeTheGhost/Library/ShaderCache/a/a1251ed899fc1016797e731ddc4532fc.bin
deleted file mode 100644
index eb56014..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/a/a1251ed899fc1016797e731ddc4532fc.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/a/a137a9fdb091d617ff3cf9da3eed41a1.bin b/EscapeTheGhost/Library/ShaderCache/a/a137a9fdb091d617ff3cf9da3eed41a1.bin
deleted file mode 100644
index fef7a02..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/a/a137a9fdb091d617ff3cf9da3eed41a1.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/a/a13db49df4362cdf5635107398fa7b68.bin b/EscapeTheGhost/Library/ShaderCache/a/a13db49df4362cdf5635107398fa7b68.bin
deleted file mode 100644
index 96e4119..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/a/a13db49df4362cdf5635107398fa7b68.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/a/a1502feefe7f61c366b2c641ae129009.bin b/EscapeTheGhost/Library/ShaderCache/a/a1502feefe7f61c366b2c641ae129009.bin
deleted file mode 100644
index 6ceed51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/a/a1502feefe7f61c366b2c641ae129009.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/a/a15442b9d4407780d78d1f13120ad627.bin b/EscapeTheGhost/Library/ShaderCache/a/a15442b9d4407780d78d1f13120ad627.bin
deleted file mode 100644
index 8d75d94..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/a/a15442b9d4407780d78d1f13120ad627.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/a/a18a3c241e2f16773518d539694264c1.bin b/EscapeTheGhost/Library/ShaderCache/a/a18a3c241e2f16773518d539694264c1.bin
deleted file mode 100644
index b78c275..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/a/a18a3c241e2f16773518d539694264c1.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/a/a1aebce0c0e1cde452da094a65781c00.bin b/EscapeTheGhost/Library/ShaderCache/a/a1aebce0c0e1cde452da094a65781c00.bin
deleted file mode 100644
index bec8fab..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/a/a1aebce0c0e1cde452da094a65781c00.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/a/a1dd3d1766efa02b2611b36b9f05c1b0.bin b/EscapeTheGhost/Library/ShaderCache/a/a1dd3d1766efa02b2611b36b9f05c1b0.bin
deleted file mode 100644
index a3bb4b7..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/a/a1dd3d1766efa02b2611b36b9f05c1b0.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/a/a231636ddec629a5061c1d73c632accc.bin b/EscapeTheGhost/Library/ShaderCache/a/a231636ddec629a5061c1d73c632accc.bin
deleted file mode 100644
index 8a6bf51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/a/a231636ddec629a5061c1d73c632accc.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/a/a231fc9e9837376973b4a6175972c7b6.bin b/EscapeTheGhost/Library/ShaderCache/a/a231fc9e9837376973b4a6175972c7b6.bin
deleted file mode 100644
index 8a6bf51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/a/a231fc9e9837376973b4a6175972c7b6.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/a/a250e8550b6778195acbaeac433078de.bin b/EscapeTheGhost/Library/ShaderCache/a/a250e8550b6778195acbaeac433078de.bin
deleted file mode 100644
index 623c8cd..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/a/a250e8550b6778195acbaeac433078de.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/a/a260780bed2f5ea5f58e68f990841e42.bin b/EscapeTheGhost/Library/ShaderCache/a/a260780bed2f5ea5f58e68f990841e42.bin
deleted file mode 100644
index a1b75ac..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/a/a260780bed2f5ea5f58e68f990841e42.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/a/a27b67dad55b986a7ad0d30c538fb4bd.bin b/EscapeTheGhost/Library/ShaderCache/a/a27b67dad55b986a7ad0d30c538fb4bd.bin
deleted file mode 100644
index df616c5..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/a/a27b67dad55b986a7ad0d30c538fb4bd.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/a/a2cd52431d895743f411f923460eaeed.bin b/EscapeTheGhost/Library/ShaderCache/a/a2cd52431d895743f411f923460eaeed.bin
deleted file mode 100644
index 509475b..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/a/a2cd52431d895743f411f923460eaeed.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/a/a2d947cdc0b6e855c7b65463421ac893.bin b/EscapeTheGhost/Library/ShaderCache/a/a2d947cdc0b6e855c7b65463421ac893.bin
deleted file mode 100644
index b46ea21..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/a/a2d947cdc0b6e855c7b65463421ac893.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/a/a2fb59b5e99eddeff93b177f05a3aeae.bin b/EscapeTheGhost/Library/ShaderCache/a/a2fb59b5e99eddeff93b177f05a3aeae.bin
deleted file mode 100644
index f0cfb2c..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/a/a2fb59b5e99eddeff93b177f05a3aeae.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/a/a31db31193d78b01116c38fc70efbbfa.bin b/EscapeTheGhost/Library/ShaderCache/a/a31db31193d78b01116c38fc70efbbfa.bin
deleted file mode 100644
index b686ff8..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/a/a31db31193d78b01116c38fc70efbbfa.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/a/a357487f7607f3302e4d61e0d45212c7.bin b/EscapeTheGhost/Library/ShaderCache/a/a357487f7607f3302e4d61e0d45212c7.bin
deleted file mode 100644
index ec40d64..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/a/a357487f7607f3302e4d61e0d45212c7.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/a/a3c4a077663935714ea2a9b12548845a.bin b/EscapeTheGhost/Library/ShaderCache/a/a3c4a077663935714ea2a9b12548845a.bin
deleted file mode 100644
index f30a8b8..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/a/a3c4a077663935714ea2a9b12548845a.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/a/a42e617399240e378c0f2f2031371186.bin b/EscapeTheGhost/Library/ShaderCache/a/a42e617399240e378c0f2f2031371186.bin
deleted file mode 100644
index 3647e2f..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/a/a42e617399240e378c0f2f2031371186.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/a/a4abe97ca91dc219065c815fc8b569bc.bin b/EscapeTheGhost/Library/ShaderCache/a/a4abe97ca91dc219065c815fc8b569bc.bin
deleted file mode 100644
index 849b5a2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/a/a4abe97ca91dc219065c815fc8b569bc.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/a/a512d193402ca3cfb1a0b6a7a93ce9e8.bin b/EscapeTheGhost/Library/ShaderCache/a/a512d193402ca3cfb1a0b6a7a93ce9e8.bin
deleted file mode 100644
index 20a7ba3..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/a/a512d193402ca3cfb1a0b6a7a93ce9e8.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/a/a540587a2c7064d3c01133932f1f8a36.bin b/EscapeTheGhost/Library/ShaderCache/a/a540587a2c7064d3c01133932f1f8a36.bin
deleted file mode 100644
index 1060741..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/a/a540587a2c7064d3c01133932f1f8a36.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/a/a575e44b1859d625857dc1b807494fa1.bin b/EscapeTheGhost/Library/ShaderCache/a/a575e44b1859d625857dc1b807494fa1.bin
deleted file mode 100644
index 417791f..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/a/a575e44b1859d625857dc1b807494fa1.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/a/a58525cb2f32b30a606fd25b87cf1214.bin b/EscapeTheGhost/Library/ShaderCache/a/a58525cb2f32b30a606fd25b87cf1214.bin
deleted file mode 100644
index 05ac47d..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/a/a58525cb2f32b30a606fd25b87cf1214.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/a/a614409a7940227dd18ae76c8792842b.bin b/EscapeTheGhost/Library/ShaderCache/a/a614409a7940227dd18ae76c8792842b.bin
deleted file mode 100644
index 9cec473..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/a/a614409a7940227dd18ae76c8792842b.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/a/a637e7577196d0af0eb801549c217571.bin b/EscapeTheGhost/Library/ShaderCache/a/a637e7577196d0af0eb801549c217571.bin
deleted file mode 100644
index 373aa8d..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/a/a637e7577196d0af0eb801549c217571.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/a/a6c18d73dce1f621fdc9ec563cf19559.bin b/EscapeTheGhost/Library/ShaderCache/a/a6c18d73dce1f621fdc9ec563cf19559.bin
deleted file mode 100644
index 849b5a2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/a/a6c18d73dce1f621fdc9ec563cf19559.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/a/a6c81875d8f402abf16c8a70a6e74a9b.bin b/EscapeTheGhost/Library/ShaderCache/a/a6c81875d8f402abf16c8a70a6e74a9b.bin
deleted file mode 100644
index 5e33efb..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/a/a6c81875d8f402abf16c8a70a6e74a9b.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/a/a70fbbf05f51dfd2a06aaaceb4c73044.bin b/EscapeTheGhost/Library/ShaderCache/a/a70fbbf05f51dfd2a06aaaceb4c73044.bin
deleted file mode 100644
index 835f6e3..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/a/a70fbbf05f51dfd2a06aaaceb4c73044.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/a/a7fd32b9c04ba0231e405b511709881a.bin b/EscapeTheGhost/Library/ShaderCache/a/a7fd32b9c04ba0231e405b511709881a.bin
deleted file mode 100644
index a031d3f..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/a/a7fd32b9c04ba0231e405b511709881a.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/a/a808a16792f7a43d21b473ae8e858d55.bin b/EscapeTheGhost/Library/ShaderCache/a/a808a16792f7a43d21b473ae8e858d55.bin
deleted file mode 100644
index 6c11624..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/a/a808a16792f7a43d21b473ae8e858d55.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/a/a8212f476131da28cec8fca09ea3b51f.bin b/EscapeTheGhost/Library/ShaderCache/a/a8212f476131da28cec8fca09ea3b51f.bin
deleted file mode 100644
index eb56014..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/a/a8212f476131da28cec8fca09ea3b51f.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/a/a82840cc6f455cebc4fb6d76fb82cc82.bin b/EscapeTheGhost/Library/ShaderCache/a/a82840cc6f455cebc4fb6d76fb82cc82.bin
deleted file mode 100644
index c36cb11..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/a/a82840cc6f455cebc4fb6d76fb82cc82.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/a/a83ffdd7c657b7b8f0bff076f81e997b.bin b/EscapeTheGhost/Library/ShaderCache/a/a83ffdd7c657b7b8f0bff076f81e997b.bin
deleted file mode 100644
index da42c08..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/a/a83ffdd7c657b7b8f0bff076f81e997b.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/a/a8958ac2a1b35b6adcdbf5264e63ac53.bin b/EscapeTheGhost/Library/ShaderCache/a/a8958ac2a1b35b6adcdbf5264e63ac53.bin
deleted file mode 100644
index 8d75d94..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/a/a8958ac2a1b35b6adcdbf5264e63ac53.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/a/a8ab63207c134532d45228987f3ddbd0.bin b/EscapeTheGhost/Library/ShaderCache/a/a8ab63207c134532d45228987f3ddbd0.bin
deleted file mode 100644
index d1a004d..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/a/a8ab63207c134532d45228987f3ddbd0.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/a/a8d979b11d7ca38c4dd9fce37041b163.bin b/EscapeTheGhost/Library/ShaderCache/a/a8d979b11d7ca38c4dd9fce37041b163.bin
deleted file mode 100644
index 8fc9891..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/a/a8d979b11d7ca38c4dd9fce37041b163.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/a/a935a202e95b2b99172e1bcec1f632c3.bin b/EscapeTheGhost/Library/ShaderCache/a/a935a202e95b2b99172e1bcec1f632c3.bin
deleted file mode 100644
index 1e7a210..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/a/a935a202e95b2b99172e1bcec1f632c3.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/a/a997e66517a0ec2989a6b947d3a68431.bin b/EscapeTheGhost/Library/ShaderCache/a/a997e66517a0ec2989a6b947d3a68431.bin
deleted file mode 100644
index 69c9e06..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/a/a997e66517a0ec2989a6b947d3a68431.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/a/aa156d64dbe790e02901681fb4c3836a.bin b/EscapeTheGhost/Library/ShaderCache/a/aa156d64dbe790e02901681fb4c3836a.bin
deleted file mode 100644
index 52c953b..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/a/aa156d64dbe790e02901681fb4c3836a.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/a/aa4a9db7b6ceb06fc6d5618cfca84c11.bin b/EscapeTheGhost/Library/ShaderCache/a/aa4a9db7b6ceb06fc6d5618cfca84c11.bin
deleted file mode 100644
index b3dd9f2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/a/aa4a9db7b6ceb06fc6d5618cfca84c11.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/a/aa9955353a861503698b6d5497ae284b.bin b/EscapeTheGhost/Library/ShaderCache/a/aa9955353a861503698b6d5497ae284b.bin
deleted file mode 100644
index 9c19578..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/a/aa9955353a861503698b6d5497ae284b.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/a/aad2baccb7ce6280c181dc7aa7074e93.bin b/EscapeTheGhost/Library/ShaderCache/a/aad2baccb7ce6280c181dc7aa7074e93.bin
deleted file mode 100644
index 8a6bf51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/a/aad2baccb7ce6280c181dc7aa7074e93.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/a/aad4c462e661c6f5192cd6e77c1907ab.bin b/EscapeTheGhost/Library/ShaderCache/a/aad4c462e661c6f5192cd6e77c1907ab.bin
deleted file mode 100644
index 5af59bf..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/a/aad4c462e661c6f5192cd6e77c1907ab.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/a/aae1a0f82c206f69c54807a7cb20e91e.bin b/EscapeTheGhost/Library/ShaderCache/a/aae1a0f82c206f69c54807a7cb20e91e.bin
deleted file mode 100644
index 0892ae3..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/a/aae1a0f82c206f69c54807a7cb20e91e.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/a/aaff275533b65f008fc913c9b498c609.bin b/EscapeTheGhost/Library/ShaderCache/a/aaff275533b65f008fc913c9b498c609.bin
deleted file mode 100644
index a26663d..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/a/aaff275533b65f008fc913c9b498c609.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/a/ab9added3a57b3ab80dd6fd85b50e490.bin b/EscapeTheGhost/Library/ShaderCache/a/ab9added3a57b3ab80dd6fd85b50e490.bin
deleted file mode 100644
index bd706e5..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/a/ab9added3a57b3ab80dd6fd85b50e490.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/a/abbdae1b2c8c98277c6df66401096b2d.bin b/EscapeTheGhost/Library/ShaderCache/a/abbdae1b2c8c98277c6df66401096b2d.bin
deleted file mode 100644
index 70fd439..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/a/abbdae1b2c8c98277c6df66401096b2d.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/a/ac268487eb145d845589e043a91cbce0.bin b/EscapeTheGhost/Library/ShaderCache/a/ac268487eb145d845589e043a91cbce0.bin
deleted file mode 100644
index 4aea015..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/a/ac268487eb145d845589e043a91cbce0.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/a/ac372bf1c7f765c46f2fbb4973bb647d.bin b/EscapeTheGhost/Library/ShaderCache/a/ac372bf1c7f765c46f2fbb4973bb647d.bin
deleted file mode 100644
index 20a7ba3..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/a/ac372bf1c7f765c46f2fbb4973bb647d.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/a/ac5df464f77ea642d205c81045592990.bin b/EscapeTheGhost/Library/ShaderCache/a/ac5df464f77ea642d205c81045592990.bin
deleted file mode 100644
index 5ffe47a..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/a/ac5df464f77ea642d205c81045592990.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/a/ac839b1610954a8f8eac7599390e2859.bin b/EscapeTheGhost/Library/ShaderCache/a/ac839b1610954a8f8eac7599390e2859.bin
deleted file mode 100644
index 6bfdf96..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/a/ac839b1610954a8f8eac7599390e2859.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/a/aca3f452c94e665d973ace9a5e80b10d.bin b/EscapeTheGhost/Library/ShaderCache/a/aca3f452c94e665d973ace9a5e80b10d.bin
deleted file mode 100644
index 0363064..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/a/aca3f452c94e665d973ace9a5e80b10d.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/a/acd5948cd83f895193b265b98684de34.bin b/EscapeTheGhost/Library/ShaderCache/a/acd5948cd83f895193b265b98684de34.bin
deleted file mode 100644
index 1647b21..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/a/acd5948cd83f895193b265b98684de34.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/a/ace28dded4921e8e9a4e4e157cd8c027.bin b/EscapeTheGhost/Library/ShaderCache/a/ace28dded4921e8e9a4e4e157cd8c027.bin
deleted file mode 100644
index bfd2099..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/a/ace28dded4921e8e9a4e4e157cd8c027.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/a/ad1e669fcd65f8266edb71d7cac4a535.bin b/EscapeTheGhost/Library/ShaderCache/a/ad1e669fcd65f8266edb71d7cac4a535.bin
deleted file mode 100644
index 59265e8..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/a/ad1e669fcd65f8266edb71d7cac4a535.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/a/ad61a3600e575d5b6b114a73ccd69bd2.bin b/EscapeTheGhost/Library/ShaderCache/a/ad61a3600e575d5b6b114a73ccd69bd2.bin
deleted file mode 100644
index abd4172..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/a/ad61a3600e575d5b6b114a73ccd69bd2.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/a/ae4c0eba24362001c5652c9e5981eab6.bin b/EscapeTheGhost/Library/ShaderCache/a/ae4c0eba24362001c5652c9e5981eab6.bin
deleted file mode 100644
index d31444e..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/a/ae4c0eba24362001c5652c9e5981eab6.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/a/ae4ee8c5a39857862a307c8766ae8d8c.bin b/EscapeTheGhost/Library/ShaderCache/a/ae4ee8c5a39857862a307c8766ae8d8c.bin
deleted file mode 100644
index 530acf1..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/a/ae4ee8c5a39857862a307c8766ae8d8c.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/a/ae6667a520a81c8868e6873d91fae454.bin b/EscapeTheGhost/Library/ShaderCache/a/ae6667a520a81c8868e6873d91fae454.bin
deleted file mode 100644
index a29cb62..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/a/ae6667a520a81c8868e6873d91fae454.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/a/affd548e8a8ce03d383f91ada3ed979c.bin b/EscapeTheGhost/Library/ShaderCache/a/affd548e8a8ce03d383f91ada3ed979c.bin
deleted file mode 100644
index 8a6bf51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/a/affd548e8a8ce03d383f91ada3ed979c.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/b/b0a27e3ca43652e4f4ce4ec937c0e4da.bin b/EscapeTheGhost/Library/ShaderCache/b/b0a27e3ca43652e4f4ce4ec937c0e4da.bin
deleted file mode 100644
index 65773a4..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/b/b0a27e3ca43652e4f4ce4ec937c0e4da.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/b/b0cd7a3cddaa176795318e57469b5de0.bin b/EscapeTheGhost/Library/ShaderCache/b/b0cd7a3cddaa176795318e57469b5de0.bin
deleted file mode 100644
index ca87834..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/b/b0cd7a3cddaa176795318e57469b5de0.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/b/b1201729bcdb7e8cac6180edd57073a7.bin b/EscapeTheGhost/Library/ShaderCache/b/b1201729bcdb7e8cac6180edd57073a7.bin
deleted file mode 100644
index 849b5a2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/b/b1201729bcdb7e8cac6180edd57073a7.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/b/b2bab774c6ddbe3e6b520f6db25e194d.bin b/EscapeTheGhost/Library/ShaderCache/b/b2bab774c6ddbe3e6b520f6db25e194d.bin
deleted file mode 100644
index f62de56..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/b/b2bab774c6ddbe3e6b520f6db25e194d.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/b/b2e5b0cbddca269ee04053915c6ab7f2.bin b/EscapeTheGhost/Library/ShaderCache/b/b2e5b0cbddca269ee04053915c6ab7f2.bin
deleted file mode 100644
index 6f4c491..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/b/b2e5b0cbddca269ee04053915c6ab7f2.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/b/b35fe18b99c207fc50257042dac15853.bin b/EscapeTheGhost/Library/ShaderCache/b/b35fe18b99c207fc50257042dac15853.bin
deleted file mode 100644
index 684ad9a..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/b/b35fe18b99c207fc50257042dac15853.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/b/b3854118516953b5ad517eaf2610c79a.bin b/EscapeTheGhost/Library/ShaderCache/b/b3854118516953b5ad517eaf2610c79a.bin
deleted file mode 100644
index fb401ef..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/b/b3854118516953b5ad517eaf2610c79a.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/b/b4174b26bee02c33e973a211a27a4b9b.bin b/EscapeTheGhost/Library/ShaderCache/b/b4174b26bee02c33e973a211a27a4b9b.bin
deleted file mode 100644
index 018e15a..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/b/b4174b26bee02c33e973a211a27a4b9b.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/b/b481c6bc73e07e216330e5c3472a1ce0.bin b/EscapeTheGhost/Library/ShaderCache/b/b481c6bc73e07e216330e5c3472a1ce0.bin
deleted file mode 100644
index 6a5d235..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/b/b481c6bc73e07e216330e5c3472a1ce0.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/b/b4888519f359f0d7e2eaa45a2a9d188b.bin b/EscapeTheGhost/Library/ShaderCache/b/b4888519f359f0d7e2eaa45a2a9d188b.bin
deleted file mode 100644
index 8a6bf51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/b/b4888519f359f0d7e2eaa45a2a9d188b.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/b/b4c00609eb375734defb59129f6e2b16.bin b/EscapeTheGhost/Library/ShaderCache/b/b4c00609eb375734defb59129f6e2b16.bin
deleted file mode 100644
index df31c45..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/b/b4c00609eb375734defb59129f6e2b16.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/b/b52a16b9c4cf357e9be75cc0047381ed.bin b/EscapeTheGhost/Library/ShaderCache/b/b52a16b9c4cf357e9be75cc0047381ed.bin
deleted file mode 100644
index 6ceed51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/b/b52a16b9c4cf357e9be75cc0047381ed.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/b/b53d66c894d556bf1b323b9588fd530f.bin b/EscapeTheGhost/Library/ShaderCache/b/b53d66c894d556bf1b323b9588fd530f.bin
deleted file mode 100644
index 849b5a2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/b/b53d66c894d556bf1b323b9588fd530f.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/b/b540fd05f53428953ac919febab2d5ec.bin b/EscapeTheGhost/Library/ShaderCache/b/b540fd05f53428953ac919febab2d5ec.bin
deleted file mode 100644
index 849b5a2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/b/b540fd05f53428953ac919febab2d5ec.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/b/b5ef28ec253a384b70f260467acbf193.bin b/EscapeTheGhost/Library/ShaderCache/b/b5ef28ec253a384b70f260467acbf193.bin
deleted file mode 100644
index 849b5a2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/b/b5ef28ec253a384b70f260467acbf193.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/b/b759a5f270234a6dac9f6185d93a02ac.bin b/EscapeTheGhost/Library/ShaderCache/b/b759a5f270234a6dac9f6185d93a02ac.bin
deleted file mode 100644
index 6f83e64..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/b/b759a5f270234a6dac9f6185d93a02ac.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/b/b83a8552edb44ba7ee9b0d433908275d.bin b/EscapeTheGhost/Library/ShaderCache/b/b83a8552edb44ba7ee9b0d433908275d.bin
deleted file mode 100644
index 8a6bf51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/b/b83a8552edb44ba7ee9b0d433908275d.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/b/b83b1bd4348139e50309e292d8dc23c2.bin b/EscapeTheGhost/Library/ShaderCache/b/b83b1bd4348139e50309e292d8dc23c2.bin
deleted file mode 100644
index f9f9349..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/b/b83b1bd4348139e50309e292d8dc23c2.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/b/b92b55c735d1b3f512cf90876a79539d.bin b/EscapeTheGhost/Library/ShaderCache/b/b92b55c735d1b3f512cf90876a79539d.bin
deleted file mode 100644
index 8a6bf51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/b/b92b55c735d1b3f512cf90876a79539d.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/b/b9f33c66cbfce314336048ad9ec31f8a.bin b/EscapeTheGhost/Library/ShaderCache/b/b9f33c66cbfce314336048ad9ec31f8a.bin
deleted file mode 100644
index 849b5a2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/b/b9f33c66cbfce314336048ad9ec31f8a.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/b/ba17e0c1f349ffe0e27a531ed69d6e0f.bin b/EscapeTheGhost/Library/ShaderCache/b/ba17e0c1f349ffe0e27a531ed69d6e0f.bin
deleted file mode 100644
index 1a874c6..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/b/ba17e0c1f349ffe0e27a531ed69d6e0f.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/b/bb1b4597eb096a897bc7b5d9d6591927.bin b/EscapeTheGhost/Library/ShaderCache/b/bb1b4597eb096a897bc7b5d9d6591927.bin
deleted file mode 100644
index 69c9e06..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/b/bb1b4597eb096a897bc7b5d9d6591927.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/b/bb25f4ce766b3bd152bd3a0e55fedf2b.bin b/EscapeTheGhost/Library/ShaderCache/b/bb25f4ce766b3bd152bd3a0e55fedf2b.bin
deleted file mode 100644
index 1623dd7..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/b/bb25f4ce766b3bd152bd3a0e55fedf2b.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/b/bb2672aae5eb88504c2a091e649a4eb0.bin b/EscapeTheGhost/Library/ShaderCache/b/bb2672aae5eb88504c2a091e649a4eb0.bin
deleted file mode 100644
index f625077..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/b/bb2672aae5eb88504c2a091e649a4eb0.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/b/bb294f7907e474ab5bd0fd7a8392c42d.bin b/EscapeTheGhost/Library/ShaderCache/b/bb294f7907e474ab5bd0fd7a8392c42d.bin
deleted file mode 100644
index f5a3123..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/b/bb294f7907e474ab5bd0fd7a8392c42d.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/b/bb7ae6d7d537e0b0182eb980d8fef97a.bin b/EscapeTheGhost/Library/ShaderCache/b/bb7ae6d7d537e0b0182eb980d8fef97a.bin
deleted file mode 100644
index 5bdebd3..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/b/bb7ae6d7d537e0b0182eb980d8fef97a.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/b/bb7e0bcc004b9ee8a7d8b36574465e81.bin b/EscapeTheGhost/Library/ShaderCache/b/bb7e0bcc004b9ee8a7d8b36574465e81.bin
deleted file mode 100644
index 0e2a75c..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/b/bb7e0bcc004b9ee8a7d8b36574465e81.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/b/bc301d2fcdf91c56c5bf863b1ecb152e.bin b/EscapeTheGhost/Library/ShaderCache/b/bc301d2fcdf91c56c5bf863b1ecb152e.bin
deleted file mode 100644
index 8684bc1..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/b/bc301d2fcdf91c56c5bf863b1ecb152e.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/b/bc725ba3efa486d9a31664eb52b6b5d8.bin b/EscapeTheGhost/Library/ShaderCache/b/bc725ba3efa486d9a31664eb52b6b5d8.bin
deleted file mode 100644
index ab4df1e..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/b/bc725ba3efa486d9a31664eb52b6b5d8.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/b/bc879d591887ea5263507b12bfdecea5.bin b/EscapeTheGhost/Library/ShaderCache/b/bc879d591887ea5263507b12bfdecea5.bin
deleted file mode 100644
index 849b5a2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/b/bc879d591887ea5263507b12bfdecea5.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/b/bce8e33be8fe4fc674e66b5662879f64.bin b/EscapeTheGhost/Library/ShaderCache/b/bce8e33be8fe4fc674e66b5662879f64.bin
deleted file mode 100644
index 774378c..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/b/bce8e33be8fe4fc674e66b5662879f64.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/b/bd8703e524321c7a36c8c9ff63fd0b08.bin b/EscapeTheGhost/Library/ShaderCache/b/bd8703e524321c7a36c8c9ff63fd0b08.bin
deleted file mode 100644
index dd67726..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/b/bd8703e524321c7a36c8c9ff63fd0b08.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/b/bdb6d8b764adccfc1962e61185a899d4.bin b/EscapeTheGhost/Library/ShaderCache/b/bdb6d8b764adccfc1962e61185a899d4.bin
deleted file mode 100644
index 849b5a2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/b/bdb6d8b764adccfc1962e61185a899d4.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/b/bea61a73ff13691aaeabb59ff7ac6d5f.bin b/EscapeTheGhost/Library/ShaderCache/b/bea61a73ff13691aaeabb59ff7ac6d5f.bin
deleted file mode 100644
index 994e397..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/b/bea61a73ff13691aaeabb59ff7ac6d5f.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/b/bed3121ba731cfca73f0515e195c108a.bin b/EscapeTheGhost/Library/ShaderCache/b/bed3121ba731cfca73f0515e195c108a.bin
deleted file mode 100644
index 9f0e04d..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/b/bed3121ba731cfca73f0515e195c108a.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/b/bf2deee1ad0758c0817979048aa16ab5.bin b/EscapeTheGhost/Library/ShaderCache/b/bf2deee1ad0758c0817979048aa16ab5.bin
deleted file mode 100644
index 3624251..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/b/bf2deee1ad0758c0817979048aa16ab5.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/b/bf6ba4fceb584bea94a953b962ba7ef7.bin b/EscapeTheGhost/Library/ShaderCache/b/bf6ba4fceb584bea94a953b962ba7ef7.bin
deleted file mode 100644
index e945766..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/b/bf6ba4fceb584bea94a953b962ba7ef7.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/b/bfba369335d15c272d2afde611c17a1b.bin b/EscapeTheGhost/Library/ShaderCache/b/bfba369335d15c272d2afde611c17a1b.bin
deleted file mode 100644
index 555a40f..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/b/bfba369335d15c272d2afde611c17a1b.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/c/c0170c895d8329633742b8c4ed62d14b.bin b/EscapeTheGhost/Library/ShaderCache/c/c0170c895d8329633742b8c4ed62d14b.bin
deleted file mode 100644
index 840d7cd..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/c/c0170c895d8329633742b8c4ed62d14b.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/c/c02b18f3b5592a95a08a51e3c49327d7.bin b/EscapeTheGhost/Library/ShaderCache/c/c02b18f3b5592a95a08a51e3c49327d7.bin
deleted file mode 100644
index 13b07dd..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/c/c02b18f3b5592a95a08a51e3c49327d7.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/c/c07118912fe67e304a135c1cddce22fa.bin b/EscapeTheGhost/Library/ShaderCache/c/c07118912fe67e304a135c1cddce22fa.bin
deleted file mode 100644
index 78f6457..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/c/c07118912fe67e304a135c1cddce22fa.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/c/c1798c723b56ff28403601ddb6cf61bf.bin b/EscapeTheGhost/Library/ShaderCache/c/c1798c723b56ff28403601ddb6cf61bf.bin
deleted file mode 100644
index 4072d10..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/c/c1798c723b56ff28403601ddb6cf61bf.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/c/c17f06c0f34022bf099c5e48cb290868.bin b/EscapeTheGhost/Library/ShaderCache/c/c17f06c0f34022bf099c5e48cb290868.bin
deleted file mode 100644
index f0d6e44..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/c/c17f06c0f34022bf099c5e48cb290868.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/c/c436809eff956c4eb8b9f77d8ce6a279.bin b/EscapeTheGhost/Library/ShaderCache/c/c436809eff956c4eb8b9f77d8ce6a279.bin
deleted file mode 100644
index 14dfe1f..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/c/c436809eff956c4eb8b9f77d8ce6a279.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/c/c44f7a9a596f9fb69e07cb60c1f5d9fe.bin b/EscapeTheGhost/Library/ShaderCache/c/c44f7a9a596f9fb69e07cb60c1f5d9fe.bin
deleted file mode 100644
index 447b1f0..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/c/c44f7a9a596f9fb69e07cb60c1f5d9fe.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/c/c54acbb27b5c2010b8bb9bdd9b0e10f6.bin b/EscapeTheGhost/Library/ShaderCache/c/c54acbb27b5c2010b8bb9bdd9b0e10f6.bin
deleted file mode 100644
index 428eeb4..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/c/c54acbb27b5c2010b8bb9bdd9b0e10f6.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/c/c58c2747c8b994cd884ba7b1be60d674.bin b/EscapeTheGhost/Library/ShaderCache/c/c58c2747c8b994cd884ba7b1be60d674.bin
deleted file mode 100644
index b3bcf8a..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/c/c58c2747c8b994cd884ba7b1be60d674.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/c/c5e0c306569cf05f7ddc6666e804c341.bin b/EscapeTheGhost/Library/ShaderCache/c/c5e0c306569cf05f7ddc6666e804c341.bin
deleted file mode 100644
index b5bfa5f..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/c/c5e0c306569cf05f7ddc6666e804c341.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/c/c61c914981c2e86b2a3fc7843e776b7d.bin b/EscapeTheGhost/Library/ShaderCache/c/c61c914981c2e86b2a3fc7843e776b7d.bin
deleted file mode 100644
index 849b5a2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/c/c61c914981c2e86b2a3fc7843e776b7d.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/c/c646fff028df88af67bb366e0875fbd1.bin b/EscapeTheGhost/Library/ShaderCache/c/c646fff028df88af67bb366e0875fbd1.bin
deleted file mode 100644
index f9f9349..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/c/c646fff028df88af67bb366e0875fbd1.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/c/c831add86f95c2f5ff7b448d5a33360c.bin b/EscapeTheGhost/Library/ShaderCache/c/c831add86f95c2f5ff7b448d5a33360c.bin
deleted file mode 100644
index 872b50e..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/c/c831add86f95c2f5ff7b448d5a33360c.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/c/c8b1d8ae058c344dcb55648b7d5f8805.bin b/EscapeTheGhost/Library/ShaderCache/c/c8b1d8ae058c344dcb55648b7d5f8805.bin
deleted file mode 100644
index 8a6bf51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/c/c8b1d8ae058c344dcb55648b7d5f8805.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/c/c8d0be3657b0f5e6818dfacf8996bcbd.bin b/EscapeTheGhost/Library/ShaderCache/c/c8d0be3657b0f5e6818dfacf8996bcbd.bin
deleted file mode 100644
index 1a7b083..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/c/c8d0be3657b0f5e6818dfacf8996bcbd.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/c/cb6bafa513ec83bb591f1d41669c08ec.bin b/EscapeTheGhost/Library/ShaderCache/c/cb6bafa513ec83bb591f1d41669c08ec.bin
deleted file mode 100644
index e8a5285..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/c/cb6bafa513ec83bb591f1d41669c08ec.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/c/cbe9b96968948d1b6569e0dde4fd729e.bin b/EscapeTheGhost/Library/ShaderCache/c/cbe9b96968948d1b6569e0dde4fd729e.bin
deleted file mode 100644
index 09c1a2f..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/c/cbe9b96968948d1b6569e0dde4fd729e.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/c/cc3a9f88f2bfdefa21fe71ee4eae7935.bin b/EscapeTheGhost/Library/ShaderCache/c/cc3a9f88f2bfdefa21fe71ee4eae7935.bin
deleted file mode 100644
index 8a6bf51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/c/cc3a9f88f2bfdefa21fe71ee4eae7935.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/c/cc868775e2c84b257c15e829d5ec7429.bin b/EscapeTheGhost/Library/ShaderCache/c/cc868775e2c84b257c15e829d5ec7429.bin
deleted file mode 100644
index 849b5a2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/c/cc868775e2c84b257c15e829d5ec7429.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/c/ccb579be8169e3351c4ae69cadc1e868.bin b/EscapeTheGhost/Library/ShaderCache/c/ccb579be8169e3351c4ae69cadc1e868.bin
deleted file mode 100644
index 7394c73..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/c/ccb579be8169e3351c4ae69cadc1e868.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/c/cd166c88cc2318727f9fa9b0c891b310.bin b/EscapeTheGhost/Library/ShaderCache/c/cd166c88cc2318727f9fa9b0c891b310.bin
deleted file mode 100644
index 8a6bf51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/c/cd166c88cc2318727f9fa9b0c891b310.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/c/cd430447d41f0ffd701fc8b55d80f124.bin b/EscapeTheGhost/Library/ShaderCache/c/cd430447d41f0ffd701fc8b55d80f124.bin
deleted file mode 100644
index 8a6bf51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/c/cd430447d41f0ffd701fc8b55d80f124.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/c/cd9ca31afbcf7108eedeadf78e8e2fa2.bin b/EscapeTheGhost/Library/ShaderCache/c/cd9ca31afbcf7108eedeadf78e8e2fa2.bin
deleted file mode 100644
index 8a6bf51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/c/cd9ca31afbcf7108eedeadf78e8e2fa2.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/c/cd9fd85c6d4bd37dfa60b7129a258e55.bin b/EscapeTheGhost/Library/ShaderCache/c/cd9fd85c6d4bd37dfa60b7129a258e55.bin
deleted file mode 100644
index fa3e74b..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/c/cd9fd85c6d4bd37dfa60b7129a258e55.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/c/cdc738200e255a1f013a5b781b686032.bin b/EscapeTheGhost/Library/ShaderCache/c/cdc738200e255a1f013a5b781b686032.bin
deleted file mode 100644
index 849b5a2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/c/cdc738200e255a1f013a5b781b686032.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/c/cdcdcdfafb041db90efab5b9f0627b98.bin b/EscapeTheGhost/Library/ShaderCache/c/cdcdcdfafb041db90efab5b9f0627b98.bin
deleted file mode 100644
index 8a6bf51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/c/cdcdcdfafb041db90efab5b9f0627b98.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/c/cdd4087badd40595455c682c101a4424.bin b/EscapeTheGhost/Library/ShaderCache/c/cdd4087badd40595455c682c101a4424.bin
deleted file mode 100644
index 51f4020..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/c/cdd4087badd40595455c682c101a4424.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/c/ce4845a29fd933c8687db91ade1339ab.bin b/EscapeTheGhost/Library/ShaderCache/c/ce4845a29fd933c8687db91ade1339ab.bin
deleted file mode 100644
index ab8bcf7..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/c/ce4845a29fd933c8687db91ade1339ab.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/c/cfb3d275bf080501c64b9d17f8cc4b37.bin b/EscapeTheGhost/Library/ShaderCache/c/cfb3d275bf080501c64b9d17f8cc4b37.bin
deleted file mode 100644
index 09c1a2f..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/c/cfb3d275bf080501c64b9d17f8cc4b37.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/d/d0229fd6439f73202a769df7d240aff2.bin b/EscapeTheGhost/Library/ShaderCache/d/d0229fd6439f73202a769df7d240aff2.bin
deleted file mode 100644
index 8a6bf51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/d/d0229fd6439f73202a769df7d240aff2.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/d/d0b1107cd21431bfcc8ece58f38c2fe7.bin b/EscapeTheGhost/Library/ShaderCache/d/d0b1107cd21431bfcc8ece58f38c2fe7.bin
deleted file mode 100644
index 849b5a2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/d/d0b1107cd21431bfcc8ece58f38c2fe7.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/d/d1239d5b9a04b245da899d352a51961a.bin b/EscapeTheGhost/Library/ShaderCache/d/d1239d5b9a04b245da899d352a51961a.bin
deleted file mode 100644
index 849b5a2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/d/d1239d5b9a04b245da899d352a51961a.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/d/d17344e7a326e1382b555668f92273d6.bin b/EscapeTheGhost/Library/ShaderCache/d/d17344e7a326e1382b555668f92273d6.bin
deleted file mode 100644
index 849b5a2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/d/d17344e7a326e1382b555668f92273d6.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/d/d19a1a6d7af8e2e34a6ead180a742bbb.bin b/EscapeTheGhost/Library/ShaderCache/d/d19a1a6d7af8e2e34a6ead180a742bbb.bin
deleted file mode 100644
index b1b4eeb..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/d/d19a1a6d7af8e2e34a6ead180a742bbb.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/d/d2f4722fb8365afc958e6e46347a364f.bin b/EscapeTheGhost/Library/ShaderCache/d/d2f4722fb8365afc958e6e46347a364f.bin
deleted file mode 100644
index eb56014..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/d/d2f4722fb8365afc958e6e46347a364f.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/d/d2f5a6bd7142de7315ba4baca603970e.bin b/EscapeTheGhost/Library/ShaderCache/d/d2f5a6bd7142de7315ba4baca603970e.bin
deleted file mode 100644
index c455dbe..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/d/d2f5a6bd7142de7315ba4baca603970e.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/d/d327b0f010b47dde69d9928ebf96e3f1.bin b/EscapeTheGhost/Library/ShaderCache/d/d327b0f010b47dde69d9928ebf96e3f1.bin
deleted file mode 100644
index 849b5a2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/d/d327b0f010b47dde69d9928ebf96e3f1.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/d/d34582a049f8ef7e9fa291dc4b62e0db.bin b/EscapeTheGhost/Library/ShaderCache/d/d34582a049f8ef7e9fa291dc4b62e0db.bin
deleted file mode 100644
index 8a6bf51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/d/d34582a049f8ef7e9fa291dc4b62e0db.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/d/d364b5410d01135eb117a3b884065891.bin b/EscapeTheGhost/Library/ShaderCache/d/d364b5410d01135eb117a3b884065891.bin
deleted file mode 100644
index 010347d..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/d/d364b5410d01135eb117a3b884065891.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/d/d3abb1fcc6c82a9cbd15d1b249d49901.bin b/EscapeTheGhost/Library/ShaderCache/d/d3abb1fcc6c82a9cbd15d1b249d49901.bin
deleted file mode 100644
index d73e9a6..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/d/d3abb1fcc6c82a9cbd15d1b249d49901.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/d/d3c257d4c796c937be6072a39988eb8a.bin b/EscapeTheGhost/Library/ShaderCache/d/d3c257d4c796c937be6072a39988eb8a.bin
deleted file mode 100644
index 8a6bf51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/d/d3c257d4c796c937be6072a39988eb8a.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/d/d3d41fbc8de5a6a99edea1459fa221b7.bin b/EscapeTheGhost/Library/ShaderCache/d/d3d41fbc8de5a6a99edea1459fa221b7.bin
deleted file mode 100644
index 06a6fea..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/d/d3d41fbc8de5a6a99edea1459fa221b7.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/d/d45466253ef41710f9c9819cd77dee9f.bin b/EscapeTheGhost/Library/ShaderCache/d/d45466253ef41710f9c9819cd77dee9f.bin
deleted file mode 100644
index 849b5a2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/d/d45466253ef41710f9c9819cd77dee9f.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/d/d494c950e5de4b3d96617fc33c661761.bin b/EscapeTheGhost/Library/ShaderCache/d/d494c950e5de4b3d96617fc33c661761.bin
deleted file mode 100644
index 1882286..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/d/d494c950e5de4b3d96617fc33c661761.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/d/d4dda54d549af453c677982a052701af.bin b/EscapeTheGhost/Library/ShaderCache/d/d4dda54d549af453c677982a052701af.bin
deleted file mode 100644
index 50a96e5..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/d/d4dda54d549af453c677982a052701af.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/d/d5042c275b063aeded00ca18475eb714.bin b/EscapeTheGhost/Library/ShaderCache/d/d5042c275b063aeded00ca18475eb714.bin
deleted file mode 100644
index a29cb62..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/d/d5042c275b063aeded00ca18475eb714.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/d/d5ea8a5dc61edd8302890187822ab5bb.bin b/EscapeTheGhost/Library/ShaderCache/d/d5ea8a5dc61edd8302890187822ab5bb.bin
deleted file mode 100644
index 8a6bf51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/d/d5ea8a5dc61edd8302890187822ab5bb.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/d/d64c63ca88e1d0b4e9800eb8be3e8c60.bin b/EscapeTheGhost/Library/ShaderCache/d/d64c63ca88e1d0b4e9800eb8be3e8c60.bin
deleted file mode 100644
index 282235b..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/d/d64c63ca88e1d0b4e9800eb8be3e8c60.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/d/d796a0080bc003fe9698ba880755046c.bin b/EscapeTheGhost/Library/ShaderCache/d/d796a0080bc003fe9698ba880755046c.bin
deleted file mode 100644
index da2ef93..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/d/d796a0080bc003fe9698ba880755046c.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/d/d7f11792d58e997efb3d72aeee50163a.bin b/EscapeTheGhost/Library/ShaderCache/d/d7f11792d58e997efb3d72aeee50163a.bin
deleted file mode 100644
index 7e5f50c..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/d/d7f11792d58e997efb3d72aeee50163a.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/d/d893bf8ea441003fd0d82c89161d51ca.bin b/EscapeTheGhost/Library/ShaderCache/d/d893bf8ea441003fd0d82c89161d51ca.bin
deleted file mode 100644
index db5d76a..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/d/d893bf8ea441003fd0d82c89161d51ca.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/d/d8e01ed1588ffa3d66c1230ff7c3d570.bin b/EscapeTheGhost/Library/ShaderCache/d/d8e01ed1588ffa3d66c1230ff7c3d570.bin
deleted file mode 100644
index 849b5a2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/d/d8e01ed1588ffa3d66c1230ff7c3d570.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/d/d9ba7a83cd0bbbdd1f2ba6d49ebf200a.bin b/EscapeTheGhost/Library/ShaderCache/d/d9ba7a83cd0bbbdd1f2ba6d49ebf200a.bin
deleted file mode 100644
index 28d725c..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/d/d9ba7a83cd0bbbdd1f2ba6d49ebf200a.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/d/d9f0b34ffedb32fe2020340175d2cc2b.bin b/EscapeTheGhost/Library/ShaderCache/d/d9f0b34ffedb32fe2020340175d2cc2b.bin
deleted file mode 100644
index 8a6bf51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/d/d9f0b34ffedb32fe2020340175d2cc2b.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/d/da6e5e7a101967d877651016a0cf5d67.bin b/EscapeTheGhost/Library/ShaderCache/d/da6e5e7a101967d877651016a0cf5d67.bin
deleted file mode 100644
index c0c09af..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/d/da6e5e7a101967d877651016a0cf5d67.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/d/da71a274268a1ff48051f1359d175ef8.bin b/EscapeTheGhost/Library/ShaderCache/d/da71a274268a1ff48051f1359d175ef8.bin
deleted file mode 100644
index 782bc62..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/d/da71a274268a1ff48051f1359d175ef8.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/d/daa82ede5aeb1de76a26244795711009.bin b/EscapeTheGhost/Library/ShaderCache/d/daa82ede5aeb1de76a26244795711009.bin
deleted file mode 100644
index 69b3e9d..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/d/daa82ede5aeb1de76a26244795711009.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/d/dad94eaa9e5868f49a26acd24ea9d7c2.bin b/EscapeTheGhost/Library/ShaderCache/d/dad94eaa9e5868f49a26acd24ea9d7c2.bin
deleted file mode 100644
index 7f85fa8..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/d/dad94eaa9e5868f49a26acd24ea9d7c2.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/d/dad9f79c27c7841eff99a3f3acb12070.bin b/EscapeTheGhost/Library/ShaderCache/d/dad9f79c27c7841eff99a3f3acb12070.bin
deleted file mode 100644
index 849b5a2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/d/dad9f79c27c7841eff99a3f3acb12070.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/d/daed87c82406f50993dc9610ccd320ac.bin b/EscapeTheGhost/Library/ShaderCache/d/daed87c82406f50993dc9610ccd320ac.bin
deleted file mode 100644
index 671b282..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/d/daed87c82406f50993dc9610ccd320ac.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/d/db6dc71b5e6907a208f6810bead8081c.bin b/EscapeTheGhost/Library/ShaderCache/d/db6dc71b5e6907a208f6810bead8081c.bin
deleted file mode 100644
index 7689bc5..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/d/db6dc71b5e6907a208f6810bead8081c.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/d/db781f7dcbbf534a03c63f97ac8fa6bb.bin b/EscapeTheGhost/Library/ShaderCache/d/db781f7dcbbf534a03c63f97ac8fa6bb.bin
deleted file mode 100644
index 078dd34..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/d/db781f7dcbbf534a03c63f97ac8fa6bb.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/d/db791df1d21cb0cefb64be3e07e494f6.bin b/EscapeTheGhost/Library/ShaderCache/d/db791df1d21cb0cefb64be3e07e494f6.bin
deleted file mode 100644
index 1876319..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/d/db791df1d21cb0cefb64be3e07e494f6.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/d/dba2ef7b56aa214dd3be4dfd52a45395.bin b/EscapeTheGhost/Library/ShaderCache/d/dba2ef7b56aa214dd3be4dfd52a45395.bin
deleted file mode 100644
index 0b8ed93..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/d/dba2ef7b56aa214dd3be4dfd52a45395.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/d/dc24f24654dd4496ae508e23d3d5f0cf.bin b/EscapeTheGhost/Library/ShaderCache/d/dc24f24654dd4496ae508e23d3d5f0cf.bin
deleted file mode 100644
index 7394c73..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/d/dc24f24654dd4496ae508e23d3d5f0cf.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/d/dc5437b14f56213982d1b910483e69c4.bin b/EscapeTheGhost/Library/ShaderCache/d/dc5437b14f56213982d1b910483e69c4.bin
deleted file mode 100644
index 2fe6786..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/d/dc5437b14f56213982d1b910483e69c4.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/d/dcd25a2e548bf695690f5ea3b8a414d4.bin b/EscapeTheGhost/Library/ShaderCache/d/dcd25a2e548bf695690f5ea3b8a414d4.bin
deleted file mode 100644
index b8a0451..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/d/dcd25a2e548bf695690f5ea3b8a414d4.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/d/dd018669358d2ca722e6d5c3d031a6fb.bin b/EscapeTheGhost/Library/ShaderCache/d/dd018669358d2ca722e6d5c3d031a6fb.bin
deleted file mode 100644
index 7394c73..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/d/dd018669358d2ca722e6d5c3d031a6fb.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/d/dd07864b5458f7f056e5c5c03d1abdcd.bin b/EscapeTheGhost/Library/ShaderCache/d/dd07864b5458f7f056e5c5c03d1abdcd.bin
deleted file mode 100644
index 026e089..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/d/dd07864b5458f7f056e5c5c03d1abdcd.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/d/dd4f6b5fb289854c366eb7957e3058fa.bin b/EscapeTheGhost/Library/ShaderCache/d/dd4f6b5fb289854c366eb7957e3058fa.bin
deleted file mode 100644
index eb56014..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/d/dd4f6b5fb289854c366eb7957e3058fa.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/d/dd9761960b5c66a6ea18612aeb26c51c.bin b/EscapeTheGhost/Library/ShaderCache/d/dd9761960b5c66a6ea18612aeb26c51c.bin
deleted file mode 100644
index c487d70..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/d/dd9761960b5c66a6ea18612aeb26c51c.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/d/ddab5f56f01a4ba8c7747775425b72fc.bin b/EscapeTheGhost/Library/ShaderCache/d/ddab5f56f01a4ba8c7747775425b72fc.bin
deleted file mode 100644
index 534a67e..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/d/ddab5f56f01a4ba8c7747775425b72fc.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/d/ddfa31f44d4a3289c557cb3e025a6df5.bin b/EscapeTheGhost/Library/ShaderCache/d/ddfa31f44d4a3289c557cb3e025a6df5.bin
deleted file mode 100644
index 0e26507..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/d/ddfa31f44d4a3289c557cb3e025a6df5.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/d/dec3de9db183542e0f6242a02246575b.bin b/EscapeTheGhost/Library/ShaderCache/d/dec3de9db183542e0f6242a02246575b.bin
deleted file mode 100644
index fb401ef..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/d/dec3de9db183542e0f6242a02246575b.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/d/decf136b3dd60cf5a8e0352d175c5fb9.bin b/EscapeTheGhost/Library/ShaderCache/d/decf136b3dd60cf5a8e0352d175c5fb9.bin
deleted file mode 100644
index 849b5a2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/d/decf136b3dd60cf5a8e0352d175c5fb9.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/d/def87c47861eccef4cbf337a37164478.bin b/EscapeTheGhost/Library/ShaderCache/d/def87c47861eccef4cbf337a37164478.bin
deleted file mode 100644
index d379421..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/d/def87c47861eccef4cbf337a37164478.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/d/df44bc32ae683315680058b28b039e73.bin b/EscapeTheGhost/Library/ShaderCache/d/df44bc32ae683315680058b28b039e73.bin
deleted file mode 100644
index 857393e..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/d/df44bc32ae683315680058b28b039e73.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/d/df8acc702bc97cf9eb59dbd19e5d9136.bin b/EscapeTheGhost/Library/ShaderCache/d/df8acc702bc97cf9eb59dbd19e5d9136.bin
deleted file mode 100644
index abb5383..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/d/df8acc702bc97cf9eb59dbd19e5d9136.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/d/dfaf7a7be0935e335616177b0f2c9598.bin b/EscapeTheGhost/Library/ShaderCache/d/dfaf7a7be0935e335616177b0f2c9598.bin
deleted file mode 100644
index 8a6bf51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/d/dfaf7a7be0935e335616177b0f2c9598.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/e/e03b28164681a5c1d91e5d0474c39cbd.bin b/EscapeTheGhost/Library/ShaderCache/e/e03b28164681a5c1d91e5d0474c39cbd.bin
deleted file mode 100644
index 24caebe..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/e/e03b28164681a5c1d91e5d0474c39cbd.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/e/e08e856d14409d97c1a55066752f9e4c.bin b/EscapeTheGhost/Library/ShaderCache/e/e08e856d14409d97c1a55066752f9e4c.bin
deleted file mode 100644
index 8a6bf51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/e/e08e856d14409d97c1a55066752f9e4c.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/e/e0b7d1b79763236aeb80e2725e4cc4c7.bin b/EscapeTheGhost/Library/ShaderCache/e/e0b7d1b79763236aeb80e2725e4cc4c7.bin
deleted file mode 100644
index e905546..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/e/e0b7d1b79763236aeb80e2725e4cc4c7.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/e/e0ee79304f2c8b55a42ee2f93aa378fd.bin b/EscapeTheGhost/Library/ShaderCache/e/e0ee79304f2c8b55a42ee2f93aa378fd.bin
deleted file mode 100644
index 162a3ac..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/e/e0ee79304f2c8b55a42ee2f93aa378fd.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/e/e10a3c8b5563166abe1bfc672af60d2a.bin b/EscapeTheGhost/Library/ShaderCache/e/e10a3c8b5563166abe1bfc672af60d2a.bin
deleted file mode 100644
index e905546..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/e/e10a3c8b5563166abe1bfc672af60d2a.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/e/e1742ab7512d300b737f39f6da9cfd3c.bin b/EscapeTheGhost/Library/ShaderCache/e/e1742ab7512d300b737f39f6da9cfd3c.bin
deleted file mode 100644
index 305a1f2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/e/e1742ab7512d300b737f39f6da9cfd3c.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/e/e177c3d507685b869f5317dbfa32c187.bin b/EscapeTheGhost/Library/ShaderCache/e/e177c3d507685b869f5317dbfa32c187.bin
deleted file mode 100644
index 8a6bf51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/e/e177c3d507685b869f5317dbfa32c187.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/e/e2016cb8490c45b91a83ccfe7d8bc76e.bin b/EscapeTheGhost/Library/ShaderCache/e/e2016cb8490c45b91a83ccfe7d8bc76e.bin
deleted file mode 100644
index 69c9e06..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/e/e2016cb8490c45b91a83ccfe7d8bc76e.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/e/e2e05d31f589f87d9bb80e7c93e264e8.bin b/EscapeTheGhost/Library/ShaderCache/e/e2e05d31f589f87d9bb80e7c93e264e8.bin
deleted file mode 100644
index 3e88e15..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/e/e2e05d31f589f87d9bb80e7c93e264e8.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/e/e3142bc511ae9fe436ac33590f23305c.bin b/EscapeTheGhost/Library/ShaderCache/e/e3142bc511ae9fe436ac33590f23305c.bin
deleted file mode 100644
index 4d5dbf0..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/e/e3142bc511ae9fe436ac33590f23305c.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/e/e3173995d0a4343c74829b66977a2763.bin b/EscapeTheGhost/Library/ShaderCache/e/e3173995d0a4343c74829b66977a2763.bin
deleted file mode 100644
index aa8088e..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/e/e3173995d0a4343c74829b66977a2763.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/e/e45fc54b77e9837a5dc4e8417f899704.bin b/EscapeTheGhost/Library/ShaderCache/e/e45fc54b77e9837a5dc4e8417f899704.bin
deleted file mode 100644
index b46ea21..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/e/e45fc54b77e9837a5dc4e8417f899704.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/e/e4cdfec1e9647c70fbf21911a23d6dd3.bin b/EscapeTheGhost/Library/ShaderCache/e/e4cdfec1e9647c70fbf21911a23d6dd3.bin
deleted file mode 100644
index 17d32a0..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/e/e4cdfec1e9647c70fbf21911a23d6dd3.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/e/e550595f540e261dd989915ba54d54ce.bin b/EscapeTheGhost/Library/ShaderCache/e/e550595f540e261dd989915ba54d54ce.bin
deleted file mode 100644
index c63882e..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/e/e550595f540e261dd989915ba54d54ce.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/e/e56be05816c909f94069b18dd49b4631.bin b/EscapeTheGhost/Library/ShaderCache/e/e56be05816c909f94069b18dd49b4631.bin
deleted file mode 100644
index 671b282..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/e/e56be05816c909f94069b18dd49b4631.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/e/e59ba2dc27f4565dbb092fb7574cbd1e.bin b/EscapeTheGhost/Library/ShaderCache/e/e59ba2dc27f4565dbb092fb7574cbd1e.bin
deleted file mode 100644
index 8a6bf51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/e/e59ba2dc27f4565dbb092fb7574cbd1e.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/e/e5ca445cc39b393f2c26aaf686ce968a.bin b/EscapeTheGhost/Library/ShaderCache/e/e5ca445cc39b393f2c26aaf686ce968a.bin
deleted file mode 100644
index 059a4b5..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/e/e5ca445cc39b393f2c26aaf686ce968a.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/e/e5f757a2b0bbd2a05d324ada245e2fb7.bin b/EscapeTheGhost/Library/ShaderCache/e/e5f757a2b0bbd2a05d324ada245e2fb7.bin
deleted file mode 100644
index ebe7c06..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/e/e5f757a2b0bbd2a05d324ada245e2fb7.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/e/e6ad683ae4f5b4ba0cfdf1b3f0183666.bin b/EscapeTheGhost/Library/ShaderCache/e/e6ad683ae4f5b4ba0cfdf1b3f0183666.bin
deleted file mode 100644
index f32f7ef..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/e/e6ad683ae4f5b4ba0cfdf1b3f0183666.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/e/e6bb31f592cbef3c5a6e39dcfe16a4b7.bin b/EscapeTheGhost/Library/ShaderCache/e/e6bb31f592cbef3c5a6e39dcfe16a4b7.bin
deleted file mode 100644
index 849b5a2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/e/e6bb31f592cbef3c5a6e39dcfe16a4b7.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/e/e6f2c0d038c16c25e246efdf32dfeb77.bin b/EscapeTheGhost/Library/ShaderCache/e/e6f2c0d038c16c25e246efdf32dfeb77.bin
deleted file mode 100644
index e2a6692..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/e/e6f2c0d038c16c25e246efdf32dfeb77.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/e/e6fd031e98b49c613b1004a47cf65a0d.bin b/EscapeTheGhost/Library/ShaderCache/e/e6fd031e98b49c613b1004a47cf65a0d.bin
deleted file mode 100644
index 849b5a2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/e/e6fd031e98b49c613b1004a47cf65a0d.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/e/e73db2cd9a115f9849ce6f25aa8dafad.bin b/EscapeTheGhost/Library/ShaderCache/e/e73db2cd9a115f9849ce6f25aa8dafad.bin
deleted file mode 100644
index e5fb92d..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/e/e73db2cd9a115f9849ce6f25aa8dafad.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/e/e769a15702ae4b18f858d39683d949e4.bin b/EscapeTheGhost/Library/ShaderCache/e/e769a15702ae4b18f858d39683d949e4.bin
deleted file mode 100644
index 5c0aa3c..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/e/e769a15702ae4b18f858d39683d949e4.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/e/e7a8ec1673b31e3abdd744213914d8ab.bin b/EscapeTheGhost/Library/ShaderCache/e/e7a8ec1673b31e3abdd744213914d8ab.bin
deleted file mode 100644
index 6d3b60e..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/e/e7a8ec1673b31e3abdd744213914d8ab.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/e/e7ebe1d4c89059df0d14bd7b57a2a5b9.bin b/EscapeTheGhost/Library/ShaderCache/e/e7ebe1d4c89059df0d14bd7b57a2a5b9.bin
deleted file mode 100644
index 3c81ec2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/e/e7ebe1d4c89059df0d14bd7b57a2a5b9.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/e/e7efacd9e6940556063674c175209b74.bin b/EscapeTheGhost/Library/ShaderCache/e/e7efacd9e6940556063674c175209b74.bin
deleted file mode 100644
index 6ceed51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/e/e7efacd9e6940556063674c175209b74.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/e/e81e1ffc4e3978dac93bcc1c0301f51f.bin b/EscapeTheGhost/Library/ShaderCache/e/e81e1ffc4e3978dac93bcc1c0301f51f.bin
deleted file mode 100644
index 836beff..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/e/e81e1ffc4e3978dac93bcc1c0301f51f.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/e/e869282b61e072ce5d5d7b42c26a5c28.bin b/EscapeTheGhost/Library/ShaderCache/e/e869282b61e072ce5d5d7b42c26a5c28.bin
deleted file mode 100644
index 994e397..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/e/e869282b61e072ce5d5d7b42c26a5c28.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/e/e8b07eb4b73222b88cb5b754868abb48.bin b/EscapeTheGhost/Library/ShaderCache/e/e8b07eb4b73222b88cb5b754868abb48.bin
deleted file mode 100644
index 479665b..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/e/e8b07eb4b73222b88cb5b754868abb48.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/e/e8be598efc9b989e8a9b7588848c6983.bin b/EscapeTheGhost/Library/ShaderCache/e/e8be598efc9b989e8a9b7588848c6983.bin
deleted file mode 100644
index bd075f6..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/e/e8be598efc9b989e8a9b7588848c6983.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/e/e9146bf67454fb07f89f63eec7ceb08a.bin b/EscapeTheGhost/Library/ShaderCache/e/e9146bf67454fb07f89f63eec7ceb08a.bin
deleted file mode 100644
index 8a6bf51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/e/e9146bf67454fb07f89f63eec7ceb08a.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/e/ea28f8ab351b2d2de46438e2fffb64ae.bin b/EscapeTheGhost/Library/ShaderCache/e/ea28f8ab351b2d2de46438e2fffb64ae.bin
deleted file mode 100644
index ebdb77d..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/e/ea28f8ab351b2d2de46438e2fffb64ae.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/e/ea43dc81c22eba955af43a8de9a7a56a.bin b/EscapeTheGhost/Library/ShaderCache/e/ea43dc81c22eba955af43a8de9a7a56a.bin
deleted file mode 100644
index 5e33efb..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/e/ea43dc81c22eba955af43a8de9a7a56a.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/e/ea6386f06c0e5c568a4abe892306eb8f.bin b/EscapeTheGhost/Library/ShaderCache/e/ea6386f06c0e5c568a4abe892306eb8f.bin
deleted file mode 100644
index 20a7ba3..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/e/ea6386f06c0e5c568a4abe892306eb8f.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/e/ea6ac5b08f64c6cda446b033c82d7f5e.bin b/EscapeTheGhost/Library/ShaderCache/e/ea6ac5b08f64c6cda446b033c82d7f5e.bin
deleted file mode 100644
index 720dd37..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/e/ea6ac5b08f64c6cda446b033c82d7f5e.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/e/ebd1259245338ea27c8411471e137a47.bin b/EscapeTheGhost/Library/ShaderCache/e/ebd1259245338ea27c8411471e137a47.bin
deleted file mode 100644
index ab3ac5a..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/e/ebd1259245338ea27c8411471e137a47.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/e/ebd4611fd07efd592f87a9b5cb4b6bac.bin b/EscapeTheGhost/Library/ShaderCache/e/ebd4611fd07efd592f87a9b5cb4b6bac.bin
deleted file mode 100644
index 3c81ec2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/e/ebd4611fd07efd592f87a9b5cb4b6bac.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/e/ebfaf5a943ca27eead8c5d8073baeed7.bin b/EscapeTheGhost/Library/ShaderCache/e/ebfaf5a943ca27eead8c5d8073baeed7.bin
deleted file mode 100644
index 16e14c2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/e/ebfaf5a943ca27eead8c5d8073baeed7.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/e/ec23180e8d075fab468f6411ea4a4e41.bin b/EscapeTheGhost/Library/ShaderCache/e/ec23180e8d075fab468f6411ea4a4e41.bin
deleted file mode 100644
index 8a6bf51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/e/ec23180e8d075fab468f6411ea4a4e41.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/e/ec43d3824b6abf05dc5056c44b3e715f.bin b/EscapeTheGhost/Library/ShaderCache/e/ec43d3824b6abf05dc5056c44b3e715f.bin
deleted file mode 100644
index 78e1ff7..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/e/ec43d3824b6abf05dc5056c44b3e715f.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/e/ec4d25db8fae2654c103969376aa1868.bin b/EscapeTheGhost/Library/ShaderCache/e/ec4d25db8fae2654c103969376aa1868.bin
deleted file mode 100644
index 8a6bf51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/e/ec4d25db8fae2654c103969376aa1868.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/e/ec8042960357cf5b922863a046a1169d.bin b/EscapeTheGhost/Library/ShaderCache/e/ec8042960357cf5b922863a046a1169d.bin
deleted file mode 100644
index 7b9907e..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/e/ec8042960357cf5b922863a046a1169d.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/e/ed4a7d33dd2fb0c356811c4a1c67d2a8.bin b/EscapeTheGhost/Library/ShaderCache/e/ed4a7d33dd2fb0c356811c4a1c67d2a8.bin
deleted file mode 100644
index cad9e16..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/e/ed4a7d33dd2fb0c356811c4a1c67d2a8.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/e/ed68b8245420fa33c0ff960987cfa72b.bin b/EscapeTheGhost/Library/ShaderCache/e/ed68b8245420fa33c0ff960987cfa72b.bin
deleted file mode 100644
index 2fe6786..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/e/ed68b8245420fa33c0ff960987cfa72b.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/e/edcb4ca24afd6ba5f4f4135f4191b109.bin b/EscapeTheGhost/Library/ShaderCache/e/edcb4ca24afd6ba5f4f4135f4191b109.bin
deleted file mode 100644
index 782bc62..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/e/edcb4ca24afd6ba5f4f4135f4191b109.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/e/ede30491fe3050ae1b9389fe26d5c358.bin b/EscapeTheGhost/Library/ShaderCache/e/ede30491fe3050ae1b9389fe26d5c358.bin
deleted file mode 100644
index 21f07d0..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/e/ede30491fe3050ae1b9389fe26d5c358.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/e/ede5564450b08d9aad755a3de5f63eac.bin b/EscapeTheGhost/Library/ShaderCache/e/ede5564450b08d9aad755a3de5f63eac.bin
deleted file mode 100644
index 8a6bf51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/e/ede5564450b08d9aad755a3de5f63eac.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/e/edf292e0d035dfff7b66af502640de07.bin b/EscapeTheGhost/Library/ShaderCache/e/edf292e0d035dfff7b66af502640de07.bin
deleted file mode 100644
index 1e23ad2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/e/edf292e0d035dfff7b66af502640de07.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/e/ee43ed52c92d7d46348ddd8675063723.bin b/EscapeTheGhost/Library/ShaderCache/e/ee43ed52c92d7d46348ddd8675063723.bin
deleted file mode 100644
index 849b5a2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/e/ee43ed52c92d7d46348ddd8675063723.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/e/ee4e6353c0a105aba00a059ea1df6485.bin b/EscapeTheGhost/Library/ShaderCache/e/ee4e6353c0a105aba00a059ea1df6485.bin
deleted file mode 100644
index 98d0415..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/e/ee4e6353c0a105aba00a059ea1df6485.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/e/eecb85f6d7e03274a5f067f5785a034f.bin b/EscapeTheGhost/Library/ShaderCache/e/eecb85f6d7e03274a5f067f5785a034f.bin
deleted file mode 100644
index 078dd34..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/e/eecb85f6d7e03274a5f067f5785a034f.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/e/ef2fefdbf2ca75e9962b95cc9236c991.bin b/EscapeTheGhost/Library/ShaderCache/e/ef2fefdbf2ca75e9962b95cc9236c991.bin
deleted file mode 100644
index 94b4d0e..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/e/ef2fefdbf2ca75e9962b95cc9236c991.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/e/ef75e156aa40f383a9038927da224a5a.bin b/EscapeTheGhost/Library/ShaderCache/e/ef75e156aa40f383a9038927da224a5a.bin
deleted file mode 100644
index ae183c4..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/e/ef75e156aa40f383a9038927da224a5a.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/e/ef7686195dbafbecc086063882ca4105.bin b/EscapeTheGhost/Library/ShaderCache/e/ef7686195dbafbecc086063882ca4105.bin
deleted file mode 100644
index e1a23f9..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/e/ef7686195dbafbecc086063882ca4105.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/e/ef9a6620f0070bd72154a9ddac740c30.bin b/EscapeTheGhost/Library/ShaderCache/e/ef9a6620f0070bd72154a9ddac740c30.bin
deleted file mode 100644
index 849b5a2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/e/ef9a6620f0070bd72154a9ddac740c30.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/e/ef9d4c3b36464f7804d0530bcc18b31b.bin b/EscapeTheGhost/Library/ShaderCache/e/ef9d4c3b36464f7804d0530bcc18b31b.bin
deleted file mode 100644
index fd9eae9..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/e/ef9d4c3b36464f7804d0530bcc18b31b.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/e/efa646104f77ad642b6f11cac37ce3e1.bin b/EscapeTheGhost/Library/ShaderCache/e/efa646104f77ad642b6f11cac37ce3e1.bin
deleted file mode 100644
index 7ae0f5c..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/e/efa646104f77ad642b6f11cac37ce3e1.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/f/f167cca34e08f87b7482f7aaf56a530d.bin b/EscapeTheGhost/Library/ShaderCache/f/f167cca34e08f87b7482f7aaf56a530d.bin
deleted file mode 100644
index 408c1c2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/f/f167cca34e08f87b7482f7aaf56a530d.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/f/f1812e508cd3271fc7f2b8e212202fa7.bin b/EscapeTheGhost/Library/ShaderCache/f/f1812e508cd3271fc7f2b8e212202fa7.bin
deleted file mode 100644
index 5fe73d2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/f/f1812e508cd3271fc7f2b8e212202fa7.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/f/f20d586f141ef2d8fca390b5c3f05703.bin b/EscapeTheGhost/Library/ShaderCache/f/f20d586f141ef2d8fca390b5c3f05703.bin
deleted file mode 100644
index 8a6bf51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/f/f20d586f141ef2d8fca390b5c3f05703.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/f/f27726d13a047425e3412c73ecfdfc1f.bin b/EscapeTheGhost/Library/ShaderCache/f/f27726d13a047425e3412c73ecfdfc1f.bin
deleted file mode 100644
index 44329d5..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/f/f27726d13a047425e3412c73ecfdfc1f.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/f/f2ebbcf3128e57dbd305056e8162c4e4.bin b/EscapeTheGhost/Library/ShaderCache/f/f2ebbcf3128e57dbd305056e8162c4e4.bin
deleted file mode 100644
index 8a6bf51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/f/f2ebbcf3128e57dbd305056e8162c4e4.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/f/f48ff48895d894875b2b6a5b33b7b411.bin b/EscapeTheGhost/Library/ShaderCache/f/f48ff48895d894875b2b6a5b33b7b411.bin
deleted file mode 100644
index 8a6bf51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/f/f48ff48895d894875b2b6a5b33b7b411.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/f/f4dd8bb5cdf0a78987a4e332af5d2bf6.bin b/EscapeTheGhost/Library/ShaderCache/f/f4dd8bb5cdf0a78987a4e332af5d2bf6.bin
deleted file mode 100644
index d379421..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/f/f4dd8bb5cdf0a78987a4e332af5d2bf6.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/f/f5836fc2efe046d2d3f2444cef5e94f5.bin b/EscapeTheGhost/Library/ShaderCache/f/f5836fc2efe046d2d3f2444cef5e94f5.bin
deleted file mode 100644
index 849b5a2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/f/f5836fc2efe046d2d3f2444cef5e94f5.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/f/f678407c242cd24edaa91fef96a8b3ce.bin b/EscapeTheGhost/Library/ShaderCache/f/f678407c242cd24edaa91fef96a8b3ce.bin
deleted file mode 100644
index 8a6bf51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/f/f678407c242cd24edaa91fef96a8b3ce.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/f/f7b3bd66582892e940c5d74a890b6e50.bin b/EscapeTheGhost/Library/ShaderCache/f/f7b3bd66582892e940c5d74a890b6e50.bin
deleted file mode 100644
index 5d93260..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/f/f7b3bd66582892e940c5d74a890b6e50.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/f/f7bce926d75d6a43d1191fb753eda684.bin b/EscapeTheGhost/Library/ShaderCache/f/f7bce926d75d6a43d1191fb753eda684.bin
deleted file mode 100644
index 3e562d1..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/f/f7bce926d75d6a43d1191fb753eda684.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/f/f84e0d4568b95635169e307b755dc813.bin b/EscapeTheGhost/Library/ShaderCache/f/f84e0d4568b95635169e307b755dc813.bin
deleted file mode 100644
index d3b106d..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/f/f84e0d4568b95635169e307b755dc813.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/f/f890bc9b58f59de58693fe64f100536e.bin b/EscapeTheGhost/Library/ShaderCache/f/f890bc9b58f59de58693fe64f100536e.bin
deleted file mode 100644
index 5d770e8..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/f/f890bc9b58f59de58693fe64f100536e.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/f/f8f24cb54ffdbb1782c61519e5a80ded.bin b/EscapeTheGhost/Library/ShaderCache/f/f8f24cb54ffdbb1782c61519e5a80ded.bin
deleted file mode 100644
index 034e5e4..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/f/f8f24cb54ffdbb1782c61519e5a80ded.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/f/f904df664e219db835f5d97e0b14f2fe.bin b/EscapeTheGhost/Library/ShaderCache/f/f904df664e219db835f5d97e0b14f2fe.bin
deleted file mode 100644
index b43e9ef..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/f/f904df664e219db835f5d97e0b14f2fe.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/f/f912900c0fa7c47e344b82350fba66c5.bin b/EscapeTheGhost/Library/ShaderCache/f/f912900c0fa7c47e344b82350fba66c5.bin
deleted file mode 100644
index 50131ca..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/f/f912900c0fa7c47e344b82350fba66c5.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/f/f918360bfffa9221b93de57cae967bca.bin b/EscapeTheGhost/Library/ShaderCache/f/f918360bfffa9221b93de57cae967bca.bin
deleted file mode 100644
index 42b748a..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/f/f918360bfffa9221b93de57cae967bca.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/f/fa2998edd7a9a10b653ad7b4209c88e7.bin b/EscapeTheGhost/Library/ShaderCache/f/fa2998edd7a9a10b653ad7b4209c88e7.bin
deleted file mode 100644
index bab065d..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/f/fa2998edd7a9a10b653ad7b4209c88e7.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/f/fa378e27aa1dce0a40abe2733e4bbc5f.bin b/EscapeTheGhost/Library/ShaderCache/f/fa378e27aa1dce0a40abe2733e4bbc5f.bin
deleted file mode 100644
index ca87d90..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/f/fa378e27aa1dce0a40abe2733e4bbc5f.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/f/fa71aad011089dd09dccf353e937807f.bin b/EscapeTheGhost/Library/ShaderCache/f/fa71aad011089dd09dccf353e937807f.bin
deleted file mode 100644
index 2417c2d..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/f/fa71aad011089dd09dccf353e937807f.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/f/fa9d15e249fb8f5c3de114d6b5a2e0d3.bin b/EscapeTheGhost/Library/ShaderCache/f/fa9d15e249fb8f5c3de114d6b5a2e0d3.bin
deleted file mode 100644
index 30858a7..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/f/fa9d15e249fb8f5c3de114d6b5a2e0d3.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/f/fb198bb7f83acff6fe387f21e59f20aa.bin b/EscapeTheGhost/Library/ShaderCache/f/fb198bb7f83acff6fe387f21e59f20aa.bin
deleted file mode 100644
index d3050e0..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/f/fb198bb7f83acff6fe387f21e59f20aa.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/f/fb376fbd7a9d193951c732cdcceb6124.bin b/EscapeTheGhost/Library/ShaderCache/f/fb376fbd7a9d193951c732cdcceb6124.bin
deleted file mode 100644
index 408c1c2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/f/fb376fbd7a9d193951c732cdcceb6124.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/f/fb389b136da4dd9927825221d5b0b71f.bin b/EscapeTheGhost/Library/ShaderCache/f/fb389b136da4dd9927825221d5b0b71f.bin
deleted file mode 100644
index 428eeb4..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/f/fb389b136da4dd9927825221d5b0b71f.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/f/fb3adba26b5c7b47c1f6bb933c2ad2ce.bin b/EscapeTheGhost/Library/ShaderCache/f/fb3adba26b5c7b47c1f6bb933c2ad2ce.bin
deleted file mode 100644
index 849b5a2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/f/fb3adba26b5c7b47c1f6bb933c2ad2ce.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/f/fb7ea4e79a19961046cc6e78932c7c7b.bin b/EscapeTheGhost/Library/ShaderCache/f/fb7ea4e79a19961046cc6e78932c7c7b.bin
deleted file mode 100644
index 17d32a0..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/f/fb7ea4e79a19961046cc6e78932c7c7b.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/f/fbf571438b523bffe85132e69bc037d6.bin b/EscapeTheGhost/Library/ShaderCache/f/fbf571438b523bffe85132e69bc037d6.bin
deleted file mode 100644
index 39349a2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/f/fbf571438b523bffe85132e69bc037d6.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/f/fc735cbba1d45029d2e7aa9a2add0037.bin b/EscapeTheGhost/Library/ShaderCache/f/fc735cbba1d45029d2e7aa9a2add0037.bin
deleted file mode 100644
index 849b5a2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/f/fc735cbba1d45029d2e7aa9a2add0037.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/f/fcacd6e9f2e1296cf4253ea487c1c696.bin b/EscapeTheGhost/Library/ShaderCache/f/fcacd6e9f2e1296cf4253ea487c1c696.bin
deleted file mode 100644
index 849b5a2..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/f/fcacd6e9f2e1296cf4253ea487c1c696.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/f/fcd3ec56b1e1cc3a58f3d532a6359eca.bin b/EscapeTheGhost/Library/ShaderCache/f/fcd3ec56b1e1cc3a58f3d532a6359eca.bin
deleted file mode 100644
index 1efa633..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/f/fcd3ec56b1e1cc3a58f3d532a6359eca.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/f/fd396a1b2b54eb5e895c6b3ea83d0dac.bin b/EscapeTheGhost/Library/ShaderCache/f/fd396a1b2b54eb5e895c6b3ea83d0dac.bin
deleted file mode 100644
index a9d58d8..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/f/fd396a1b2b54eb5e895c6b3ea83d0dac.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/f/fd5415d172cdd00052298d02ce84e9ba.bin b/EscapeTheGhost/Library/ShaderCache/f/fd5415d172cdd00052298d02ce84e9ba.bin
deleted file mode 100644
index 8a6bf51..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/f/fd5415d172cdd00052298d02ce84e9ba.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/f/fd57e4cee4c2022d22d68da7c8dac3de.bin b/EscapeTheGhost/Library/ShaderCache/f/fd57e4cee4c2022d22d68da7c8dac3de.bin
deleted file mode 100644
index 6d96565..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/f/fd57e4cee4c2022d22d68da7c8dac3de.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/f/fd625506b5a0e749d52c589e59bfe381.bin b/EscapeTheGhost/Library/ShaderCache/f/fd625506b5a0e749d52c589e59bfe381.bin
deleted file mode 100644
index 94b0fb9..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/f/fd625506b5a0e749d52c589e59bfe381.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/f/fdba82657c06b24ad01c73f18c7ace5c.bin b/EscapeTheGhost/Library/ShaderCache/f/fdba82657c06b24ad01c73f18c7ace5c.bin
deleted file mode 100644
index 6ef6b01..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/f/fdba82657c06b24ad01c73f18c7ace5c.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/f/fde8703999347772f6c45355741bbcaf.bin b/EscapeTheGhost/Library/ShaderCache/f/fde8703999347772f6c45355741bbcaf.bin
deleted file mode 100644
index f9f9349..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/f/fde8703999347772f6c45355741bbcaf.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/f/fdf3ced72f24e08d2afa4993a579b912.bin b/EscapeTheGhost/Library/ShaderCache/f/fdf3ced72f24e08d2afa4993a579b912.bin
deleted file mode 100644
index 09e2625..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/f/fdf3ced72f24e08d2afa4993a579b912.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/f/fe324f6007350f58cc4aa00f04cb896c.bin b/EscapeTheGhost/Library/ShaderCache/f/fe324f6007350f58cc4aa00f04cb896c.bin
deleted file mode 100644
index 835f6e3..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/f/fe324f6007350f58cc4aa00f04cb896c.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/f/fea8b3bb655008e255b4d3e13258b1d6.bin b/EscapeTheGhost/Library/ShaderCache/f/fea8b3bb655008e255b4d3e13258b1d6.bin
deleted file mode 100644
index 79c1c93..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/f/fea8b3bb655008e255b4d3e13258b1d6.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/f/feb08dd49cf96fe7ef58fcf8bd7ff056.bin b/EscapeTheGhost/Library/ShaderCache/f/feb08dd49cf96fe7ef58fcf8bd7ff056.bin
deleted file mode 100644
index 24aa22d..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/f/feb08dd49cf96fe7ef58fcf8bd7ff056.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/f/feb66aed82639621e96c04b0df8966bc.bin b/EscapeTheGhost/Library/ShaderCache/f/feb66aed82639621e96c04b0df8966bc.bin
deleted file mode 100644
index 5d71701..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/f/feb66aed82639621e96c04b0df8966bc.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/f/fed5f4595620570c6cbdf1f4d02012fb.bin b/EscapeTheGhost/Library/ShaderCache/f/fed5f4595620570c6cbdf1f4d02012fb.bin
deleted file mode 100644
index 7375c70..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/f/fed5f4595620570c6cbdf1f4d02012fb.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/f/ff3417520f9830ee761af15e7b90ddfb.bin b/EscapeTheGhost/Library/ShaderCache/f/ff3417520f9830ee761af15e7b90ddfb.bin
deleted file mode 100644
index 866ca0c..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/f/ff3417520f9830ee761af15e7b90ddfb.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/f/ff54029efede512e7c893c837443073f.bin b/EscapeTheGhost/Library/ShaderCache/f/ff54029efede512e7c893c837443073f.bin
deleted file mode 100644
index 810121e..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/f/ff54029efede512e7c893c837443073f.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/f/ff7468a88a05063570b86b779e3e20ef.bin b/EscapeTheGhost/Library/ShaderCache/f/ff7468a88a05063570b86b779e3e20ef.bin
deleted file mode 100644
index 7689bc5..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/f/ff7468a88a05063570b86b779e3e20ef.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/ShaderCache/f/ff7e5f398430a54d5a2112483345555c.bin b/EscapeTheGhost/Library/ShaderCache/f/ff7e5f398430a54d5a2112483345555c.bin
deleted file mode 100644
index 55affd9..0000000
Binary files a/EscapeTheGhost/Library/ShaderCache/f/ff7e5f398430a54d5a2112483345555c.bin and /dev/null differ
diff --git a/EscapeTheGhost/Library/SpriteAtlasDatabase.asset b/EscapeTheGhost/Library/SpriteAtlasDatabase.asset
deleted file mode 100644
index c2f8644..0000000
Binary files a/EscapeTheGhost/Library/SpriteAtlasDatabase.asset and /dev/null differ
diff --git a/EscapeTheGhost/Library/TilemapEditorUserSettings.asset b/EscapeTheGhost/Library/TilemapEditorUserSettings.asset
deleted file mode 100644
index 477720b..0000000
Binary files a/EscapeTheGhost/Library/TilemapEditorUserSettings.asset and /dev/null differ
diff --git a/EscapeTheGhost/Library/assetDatabase3 b/EscapeTheGhost/Library/assetDatabase3
deleted file mode 100644
index 14688d7..0000000
Binary files a/EscapeTheGhost/Library/assetDatabase3 and /dev/null differ
diff --git a/EscapeTheGhost/Library/expandedItems b/EscapeTheGhost/Library/expandedItems
deleted file mode 100644
index f3c8ae8..0000000
Binary files a/EscapeTheGhost/Library/expandedItems and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/00/00000000000000001000000000000000 b/EscapeTheGhost/Library/metadata/00/00000000000000001000000000000000
deleted file mode 100644
index ec55572..0000000
Binary files a/EscapeTheGhost/Library/metadata/00/00000000000000001000000000000000 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/00/00000000000000001000000000000000.info b/EscapeTheGhost/Library/metadata/00/00000000000000001000000000000000.info
deleted file mode 100644
index 0a194ff..0000000
Binary files a/EscapeTheGhost/Library/metadata/00/00000000000000001000000000000000.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/00/00000000000000002000000000000000 b/EscapeTheGhost/Library/metadata/00/00000000000000002000000000000000
deleted file mode 100644
index adda3a9..0000000
Binary files a/EscapeTheGhost/Library/metadata/00/00000000000000002000000000000000 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/00/00000000000000002000000000000000.info b/EscapeTheGhost/Library/metadata/00/00000000000000002000000000000000.info
deleted file mode 100644
index 593e5d4..0000000
Binary files a/EscapeTheGhost/Library/metadata/00/00000000000000002000000000000000.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/00/00000000000000003000000000000000 b/EscapeTheGhost/Library/metadata/00/00000000000000003000000000000000
deleted file mode 100644
index 28f58f7..0000000
Binary files a/EscapeTheGhost/Library/metadata/00/00000000000000003000000000000000 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/00/00000000000000003000000000000000.info b/EscapeTheGhost/Library/metadata/00/00000000000000003000000000000000.info
deleted file mode 100644
index ec51f96..0000000
Binary files a/EscapeTheGhost/Library/metadata/00/00000000000000003000000000000000.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/00/00000000000000004000000000000000 b/EscapeTheGhost/Library/metadata/00/00000000000000004000000000000000
deleted file mode 100644
index 5e85d30..0000000
Binary files a/EscapeTheGhost/Library/metadata/00/00000000000000004000000000000000 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/00/00000000000000004000000000000000.info b/EscapeTheGhost/Library/metadata/00/00000000000000004000000000000000.info
deleted file mode 100644
index fc11fd0..0000000
Binary files a/EscapeTheGhost/Library/metadata/00/00000000000000004000000000000000.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/00/00000000000000004100000000000000 b/EscapeTheGhost/Library/metadata/00/00000000000000004100000000000000
deleted file mode 100644
index 10d49d1..0000000
Binary files a/EscapeTheGhost/Library/metadata/00/00000000000000004100000000000000 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/00/00000000000000004100000000000000.info b/EscapeTheGhost/Library/metadata/00/00000000000000004100000000000000.info
deleted file mode 100644
index 65ed8e2..0000000
Binary files a/EscapeTheGhost/Library/metadata/00/00000000000000004100000000000000.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/00/00000000000000005000000000000000 b/EscapeTheGhost/Library/metadata/00/00000000000000005000000000000000
deleted file mode 100644
index d46aa4f..0000000
Binary files a/EscapeTheGhost/Library/metadata/00/00000000000000005000000000000000 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/00/00000000000000005000000000000000.info b/EscapeTheGhost/Library/metadata/00/00000000000000005000000000000000.info
deleted file mode 100644
index fade0c9..0000000
Binary files a/EscapeTheGhost/Library/metadata/00/00000000000000005000000000000000.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/00/00000000000000005100000000000000 b/EscapeTheGhost/Library/metadata/00/00000000000000005100000000000000
deleted file mode 100644
index 6ec8f12..0000000
Binary files a/EscapeTheGhost/Library/metadata/00/00000000000000005100000000000000 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/00/00000000000000005100000000000000.info b/EscapeTheGhost/Library/metadata/00/00000000000000005100000000000000.info
deleted file mode 100644
index 5db0c0b..0000000
Binary files a/EscapeTheGhost/Library/metadata/00/00000000000000005100000000000000.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/00/00000000000000006000000000000000 b/EscapeTheGhost/Library/metadata/00/00000000000000006000000000000000
deleted file mode 100644
index 009478b..0000000
Binary files a/EscapeTheGhost/Library/metadata/00/00000000000000006000000000000000 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/00/00000000000000006000000000000000.info b/EscapeTheGhost/Library/metadata/00/00000000000000006000000000000000.info
deleted file mode 100644
index bb46964..0000000
Binary files a/EscapeTheGhost/Library/metadata/00/00000000000000006000000000000000.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/00/00000000000000006100000000000000 b/EscapeTheGhost/Library/metadata/00/00000000000000006100000000000000
deleted file mode 100644
index d396902..0000000
Binary files a/EscapeTheGhost/Library/metadata/00/00000000000000006100000000000000 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/00/00000000000000006100000000000000.info b/EscapeTheGhost/Library/metadata/00/00000000000000006100000000000000.info
deleted file mode 100644
index dfb760a..0000000
Binary files a/EscapeTheGhost/Library/metadata/00/00000000000000006100000000000000.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/00/00000000000000007000000000000000 b/EscapeTheGhost/Library/metadata/00/00000000000000007000000000000000
deleted file mode 100644
index 314f8c5..0000000
Binary files a/EscapeTheGhost/Library/metadata/00/00000000000000007000000000000000 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/00/00000000000000007000000000000000.info b/EscapeTheGhost/Library/metadata/00/00000000000000007000000000000000.info
deleted file mode 100644
index a80c7dd..0000000
Binary files a/EscapeTheGhost/Library/metadata/00/00000000000000007000000000000000.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/00/00000000000000007100000000000000 b/EscapeTheGhost/Library/metadata/00/00000000000000007100000000000000
deleted file mode 100644
index 0bfc491..0000000
Binary files a/EscapeTheGhost/Library/metadata/00/00000000000000007100000000000000 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/00/00000000000000007100000000000000.info b/EscapeTheGhost/Library/metadata/00/00000000000000007100000000000000.info
deleted file mode 100644
index 1b7d26b..0000000
Binary files a/EscapeTheGhost/Library/metadata/00/00000000000000007100000000000000.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/00/00000000000000008000000000000000 b/EscapeTheGhost/Library/metadata/00/00000000000000008000000000000000
deleted file mode 100644
index 0feac86..0000000
Binary files a/EscapeTheGhost/Library/metadata/00/00000000000000008000000000000000 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/00/00000000000000008000000000000000.info b/EscapeTheGhost/Library/metadata/00/00000000000000008000000000000000.info
deleted file mode 100644
index 5dc930f..0000000
Binary files a/EscapeTheGhost/Library/metadata/00/00000000000000008000000000000000.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/00/00000000000000009000000000000000 b/EscapeTheGhost/Library/metadata/00/00000000000000009000000000000000
deleted file mode 100644
index 952bb27..0000000
Binary files a/EscapeTheGhost/Library/metadata/00/00000000000000009000000000000000 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/00/00000000000000009000000000000000.info b/EscapeTheGhost/Library/metadata/00/00000000000000009000000000000000.info
deleted file mode 100644
index bd8d03a..0000000
Binary files a/EscapeTheGhost/Library/metadata/00/00000000000000009000000000000000.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/00/0000000000000000a100000000000000 b/EscapeTheGhost/Library/metadata/00/0000000000000000a100000000000000
deleted file mode 100644
index 4d1feb7..0000000
Binary files a/EscapeTheGhost/Library/metadata/00/0000000000000000a100000000000000 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/00/0000000000000000a100000000000000.info b/EscapeTheGhost/Library/metadata/00/0000000000000000a100000000000000.info
deleted file mode 100644
index 552089b..0000000
Binary files a/EscapeTheGhost/Library/metadata/00/0000000000000000a100000000000000.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/00/0000000000000000b000000000000000 b/EscapeTheGhost/Library/metadata/00/0000000000000000b000000000000000
deleted file mode 100644
index 1e98bb0..0000000
Binary files a/EscapeTheGhost/Library/metadata/00/0000000000000000b000000000000000 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/00/0000000000000000b000000000000000.info b/EscapeTheGhost/Library/metadata/00/0000000000000000b000000000000000.info
deleted file mode 100644
index 3d0ea61..0000000
Binary files a/EscapeTheGhost/Library/metadata/00/0000000000000000b000000000000000.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/00/0000000000000000b100000000000000 b/EscapeTheGhost/Library/metadata/00/0000000000000000b100000000000000
deleted file mode 100644
index f9a721c..0000000
Binary files a/EscapeTheGhost/Library/metadata/00/0000000000000000b100000000000000 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/00/0000000000000000b100000000000000.info b/EscapeTheGhost/Library/metadata/00/0000000000000000b100000000000000.info
deleted file mode 100644
index 6b2e706..0000000
Binary files a/EscapeTheGhost/Library/metadata/00/0000000000000000b100000000000000.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/00/0000000000000000c000000000000000 b/EscapeTheGhost/Library/metadata/00/0000000000000000c000000000000000
deleted file mode 100644
index 52056a6..0000000
Binary files a/EscapeTheGhost/Library/metadata/00/0000000000000000c000000000000000 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/00/0000000000000000c000000000000000.info b/EscapeTheGhost/Library/metadata/00/0000000000000000c000000000000000.info
deleted file mode 100644
index 1af637d..0000000
Binary files a/EscapeTheGhost/Library/metadata/00/0000000000000000c000000000000000.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/00/005c4d80949154e5c87348bb9f5d15eb b/EscapeTheGhost/Library/metadata/00/005c4d80949154e5c87348bb9f5d15eb
deleted file mode 100644
index c68330d..0000000
Binary files a/EscapeTheGhost/Library/metadata/00/005c4d80949154e5c87348bb9f5d15eb and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/00/005c4d80949154e5c87348bb9f5d15eb.info b/EscapeTheGhost/Library/metadata/00/005c4d80949154e5c87348bb9f5d15eb.info
deleted file mode 100644
index 26dd89c..0000000
Binary files a/EscapeTheGhost/Library/metadata/00/005c4d80949154e5c87348bb9f5d15eb.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/01/01cd264c206ae482393dc9d04b26eca0 b/EscapeTheGhost/Library/metadata/01/01cd264c206ae482393dc9d04b26eca0
deleted file mode 100644
index e99b6c4..0000000
Binary files a/EscapeTheGhost/Library/metadata/01/01cd264c206ae482393dc9d04b26eca0 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/01/01cd264c206ae482393dc9d04b26eca0.info b/EscapeTheGhost/Library/metadata/01/01cd264c206ae482393dc9d04b26eca0.info
deleted file mode 100644
index fc9b032..0000000
Binary files a/EscapeTheGhost/Library/metadata/01/01cd264c206ae482393dc9d04b26eca0.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/01/01e02995805eb483690380a911a657e2 b/EscapeTheGhost/Library/metadata/01/01e02995805eb483690380a911a657e2
deleted file mode 100644
index f46139e..0000000
Binary files a/EscapeTheGhost/Library/metadata/01/01e02995805eb483690380a911a657e2 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/01/01e02995805eb483690380a911a657e2.info b/EscapeTheGhost/Library/metadata/01/01e02995805eb483690380a911a657e2.info
deleted file mode 100644
index aec024e..0000000
Binary files a/EscapeTheGhost/Library/metadata/01/01e02995805eb483690380a911a657e2.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/02/02893ffb522b490a9fa28eedd2584309 b/EscapeTheGhost/Library/metadata/02/02893ffb522b490a9fa28eedd2584309
deleted file mode 100644
index 411b0a5..0000000
Binary files a/EscapeTheGhost/Library/metadata/02/02893ffb522b490a9fa28eedd2584309 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/02/02893ffb522b490a9fa28eedd2584309.info b/EscapeTheGhost/Library/metadata/02/02893ffb522b490a9fa28eedd2584309.info
deleted file mode 100644
index 91ca1a0..0000000
Binary files a/EscapeTheGhost/Library/metadata/02/02893ffb522b490a9fa28eedd2584309.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/03/0386b6eb838c47138cd51d1c1b879a35 b/EscapeTheGhost/Library/metadata/03/0386b6eb838c47138cd51d1c1b879a35
deleted file mode 100644
index 872a4d2..0000000
Binary files a/EscapeTheGhost/Library/metadata/03/0386b6eb838c47138cd51d1c1b879a35 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/03/0386b6eb838c47138cd51d1c1b879a35.info b/EscapeTheGhost/Library/metadata/03/0386b6eb838c47138cd51d1c1b879a35.info
deleted file mode 100644
index bf38bfd..0000000
Binary files a/EscapeTheGhost/Library/metadata/03/0386b6eb838c47138cd51d1c1b879a35.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/03/039bd337da33e4bb7984d0383fcaa8ff b/EscapeTheGhost/Library/metadata/03/039bd337da33e4bb7984d0383fcaa8ff
deleted file mode 100644
index 8693316..0000000
Binary files a/EscapeTheGhost/Library/metadata/03/039bd337da33e4bb7984d0383fcaa8ff and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/03/039bd337da33e4bb7984d0383fcaa8ff.info b/EscapeTheGhost/Library/metadata/03/039bd337da33e4bb7984d0383fcaa8ff.info
deleted file mode 100644
index 8645979..0000000
Binary files a/EscapeTheGhost/Library/metadata/03/039bd337da33e4bb7984d0383fcaa8ff.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/03/03ffb9844f8d40e8a2f59dd2aff561eb b/EscapeTheGhost/Library/metadata/03/03ffb9844f8d40e8a2f59dd2aff561eb
deleted file mode 100644
index d0ed3ff..0000000
Binary files a/EscapeTheGhost/Library/metadata/03/03ffb9844f8d40e8a2f59dd2aff561eb and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/03/03ffb9844f8d40e8a2f59dd2aff561eb.info b/EscapeTheGhost/Library/metadata/03/03ffb9844f8d40e8a2f59dd2aff561eb.info
deleted file mode 100644
index 6ee2c56..0000000
Binary files a/EscapeTheGhost/Library/metadata/03/03ffb9844f8d40e8a2f59dd2aff561eb.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/05/058cba836c1846c3aa1c5fd2e28aea77 b/EscapeTheGhost/Library/metadata/05/058cba836c1846c3aa1c5fd2e28aea77
deleted file mode 100644
index 8ddaa79..0000000
Binary files a/EscapeTheGhost/Library/metadata/05/058cba836c1846c3aa1c5fd2e28aea77 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/05/058cba836c1846c3aa1c5fd2e28aea77.info b/EscapeTheGhost/Library/metadata/05/058cba836c1846c3aa1c5fd2e28aea77.info
deleted file mode 100644
index d355b47..0000000
Binary files a/EscapeTheGhost/Library/metadata/05/058cba836c1846c3aa1c5fd2e28aea77.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/05/05f5bfd584002f948982a1498890f9a9 b/EscapeTheGhost/Library/metadata/05/05f5bfd584002f948982a1498890f9a9
deleted file mode 100644
index 657aae1..0000000
Binary files a/EscapeTheGhost/Library/metadata/05/05f5bfd584002f948982a1498890f9a9 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/05/05f5bfd584002f948982a1498890f9a9.info b/EscapeTheGhost/Library/metadata/05/05f5bfd584002f948982a1498890f9a9.info
deleted file mode 100644
index 90bd3fb..0000000
Binary files a/EscapeTheGhost/Library/metadata/05/05f5bfd584002f948982a1498890f9a9.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/05/05f7f519769978b79b31d063a7fc6fa1 b/EscapeTheGhost/Library/metadata/05/05f7f519769978b79b31d063a7fc6fa1
deleted file mode 100644
index fff16e7..0000000
Binary files a/EscapeTheGhost/Library/metadata/05/05f7f519769978b79b31d063a7fc6fa1 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/05/05f7f519769978b79b31d063a7fc6fa1.info b/EscapeTheGhost/Library/metadata/05/05f7f519769978b79b31d063a7fc6fa1.info
deleted file mode 100644
index 87af4d1..0000000
Binary files a/EscapeTheGhost/Library/metadata/05/05f7f519769978b79b31d063a7fc6fa1.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/06/0621b4aab2236437592f1f292cb81d20 b/EscapeTheGhost/Library/metadata/06/0621b4aab2236437592f1f292cb81d20
deleted file mode 100644
index 9b6ce23..0000000
Binary files a/EscapeTheGhost/Library/metadata/06/0621b4aab2236437592f1f292cb81d20 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/06/0621b4aab2236437592f1f292cb81d20.info b/EscapeTheGhost/Library/metadata/06/0621b4aab2236437592f1f292cb81d20.info
deleted file mode 100644
index f0c6fe1..0000000
Binary files a/EscapeTheGhost/Library/metadata/06/0621b4aab2236437592f1f292cb81d20.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/06/063774d2ff01c43719d93b2d95e298b3 b/EscapeTheGhost/Library/metadata/06/063774d2ff01c43719d93b2d95e298b3
deleted file mode 100644
index a4e4562..0000000
Binary files a/EscapeTheGhost/Library/metadata/06/063774d2ff01c43719d93b2d95e298b3 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/06/063774d2ff01c43719d93b2d95e298b3.info b/EscapeTheGhost/Library/metadata/06/063774d2ff01c43719d93b2d95e298b3.info
deleted file mode 100644
index 6a4f31a..0000000
Binary files a/EscapeTheGhost/Library/metadata/06/063774d2ff01c43719d93b2d95e298b3.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/06/063b1587caa4a47f396741f4e69d108c b/EscapeTheGhost/Library/metadata/06/063b1587caa4a47f396741f4e69d108c
deleted file mode 100644
index 9f94424..0000000
Binary files a/EscapeTheGhost/Library/metadata/06/063b1587caa4a47f396741f4e69d108c and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/06/063b1587caa4a47f396741f4e69d108c.info b/EscapeTheGhost/Library/metadata/06/063b1587caa4a47f396741f4e69d108c.info
deleted file mode 100644
index c61b0d7..0000000
Binary files a/EscapeTheGhost/Library/metadata/06/063b1587caa4a47f396741f4e69d108c.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/06/066619c9c9c84f89acb1b48c11a7efe2 b/EscapeTheGhost/Library/metadata/06/066619c9c9c84f89acb1b48c11a7efe2
deleted file mode 100644
index 63c776a..0000000
Binary files a/EscapeTheGhost/Library/metadata/06/066619c9c9c84f89acb1b48c11a7efe2 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/06/066619c9c9c84f89acb1b48c11a7efe2.info b/EscapeTheGhost/Library/metadata/06/066619c9c9c84f89acb1b48c11a7efe2.info
deleted file mode 100644
index 73ef494..0000000
Binary files a/EscapeTheGhost/Library/metadata/06/066619c9c9c84f89acb1b48c11a7efe2.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/06/06b575597b644fe8ba88495149d01b66 b/EscapeTheGhost/Library/metadata/06/06b575597b644fe8ba88495149d01b66
deleted file mode 100644
index b3d962f..0000000
Binary files a/EscapeTheGhost/Library/metadata/06/06b575597b644fe8ba88495149d01b66 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/06/06b575597b644fe8ba88495149d01b66.info b/EscapeTheGhost/Library/metadata/06/06b575597b644fe8ba88495149d01b66.info
deleted file mode 100644
index 34fb2d4..0000000
Binary files a/EscapeTheGhost/Library/metadata/06/06b575597b644fe8ba88495149d01b66.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/06/06f8e3404d534cab82fe852ff33dad77 b/EscapeTheGhost/Library/metadata/06/06f8e3404d534cab82fe852ff33dad77
deleted file mode 100644
index 295883c..0000000
Binary files a/EscapeTheGhost/Library/metadata/06/06f8e3404d534cab82fe852ff33dad77 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/06/06f8e3404d534cab82fe852ff33dad77.info b/EscapeTheGhost/Library/metadata/06/06f8e3404d534cab82fe852ff33dad77.info
deleted file mode 100644
index 3b5a952..0000000
Binary files a/EscapeTheGhost/Library/metadata/06/06f8e3404d534cab82fe852ff33dad77.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/07/07994bfe8b0e4adb97d706de5dea48d5 b/EscapeTheGhost/Library/metadata/07/07994bfe8b0e4adb97d706de5dea48d5
deleted file mode 100644
index 0c98075..0000000
Binary files a/EscapeTheGhost/Library/metadata/07/07994bfe8b0e4adb97d706de5dea48d5 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/07/07994bfe8b0e4adb97d706de5dea48d5.info b/EscapeTheGhost/Library/metadata/07/07994bfe8b0e4adb97d706de5dea48d5.info
deleted file mode 100644
index 12be9d7..0000000
Binary files a/EscapeTheGhost/Library/metadata/07/07994bfe8b0e4adb97d706de5dea48d5.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/09/09e28640d754a611467eebfb261ed749 b/EscapeTheGhost/Library/metadata/09/09e28640d754a611467eebfb261ed749
deleted file mode 100644
index 6d6577c..0000000
Binary files a/EscapeTheGhost/Library/metadata/09/09e28640d754a611467eebfb261ed749 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/09/09e28640d754a611467eebfb261ed749.info b/EscapeTheGhost/Library/metadata/09/09e28640d754a611467eebfb261ed749.info
deleted file mode 100644
index 4e12624..0000000
Binary files a/EscapeTheGhost/Library/metadata/09/09e28640d754a611467eebfb261ed749.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/0a/0a1161a2ab6569948a0aa7899197218c b/EscapeTheGhost/Library/metadata/0a/0a1161a2ab6569948a0aa7899197218c
deleted file mode 100644
index 6495d91..0000000
Binary files a/EscapeTheGhost/Library/metadata/0a/0a1161a2ab6569948a0aa7899197218c and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/0a/0a1161a2ab6569948a0aa7899197218c.info b/EscapeTheGhost/Library/metadata/0a/0a1161a2ab6569948a0aa7899197218c.info
deleted file mode 100644
index 42aa5f9..0000000
Binary files a/EscapeTheGhost/Library/metadata/0a/0a1161a2ab6569948a0aa7899197218c.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/0a/0a281221c146e4700a74c9d3a357f299 b/EscapeTheGhost/Library/metadata/0a/0a281221c146e4700a74c9d3a357f299
deleted file mode 100644
index c055700..0000000
Binary files a/EscapeTheGhost/Library/metadata/0a/0a281221c146e4700a74c9d3a357f299 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/0a/0a281221c146e4700a74c9d3a357f299.info b/EscapeTheGhost/Library/metadata/0a/0a281221c146e4700a74c9d3a357f299.info
deleted file mode 100644
index cb889aa..0000000
Binary files a/EscapeTheGhost/Library/metadata/0a/0a281221c146e4700a74c9d3a357f299.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/0a/0a2c7bcbdfe0a438999cb0653789cdf4 b/EscapeTheGhost/Library/metadata/0a/0a2c7bcbdfe0a438999cb0653789cdf4
deleted file mode 100644
index 596a5e4..0000000
Binary files a/EscapeTheGhost/Library/metadata/0a/0a2c7bcbdfe0a438999cb0653789cdf4 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/0a/0a2c7bcbdfe0a438999cb0653789cdf4.info b/EscapeTheGhost/Library/metadata/0a/0a2c7bcbdfe0a438999cb0653789cdf4.info
deleted file mode 100644
index 052a222..0000000
Binary files a/EscapeTheGhost/Library/metadata/0a/0a2c7bcbdfe0a438999cb0653789cdf4.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/0a/0a4b2268f6bec4f3f9a9d36adb1efcc4 b/EscapeTheGhost/Library/metadata/0a/0a4b2268f6bec4f3f9a9d36adb1efcc4
deleted file mode 100644
index 494f86b..0000000
Binary files a/EscapeTheGhost/Library/metadata/0a/0a4b2268f6bec4f3f9a9d36adb1efcc4 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/0a/0a4b2268f6bec4f3f9a9d36adb1efcc4.info b/EscapeTheGhost/Library/metadata/0a/0a4b2268f6bec4f3f9a9d36adb1efcc4.info
deleted file mode 100644
index e4af13a..0000000
Binary files a/EscapeTheGhost/Library/metadata/0a/0a4b2268f6bec4f3f9a9d36adb1efcc4.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/0a/0a822dba3d5c4c85b150866e5442a5ec b/EscapeTheGhost/Library/metadata/0a/0a822dba3d5c4c85b150866e5442a5ec
deleted file mode 100644
index 3daffae..0000000
Binary files a/EscapeTheGhost/Library/metadata/0a/0a822dba3d5c4c85b150866e5442a5ec and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/0a/0a822dba3d5c4c85b150866e5442a5ec.info b/EscapeTheGhost/Library/metadata/0a/0a822dba3d5c4c85b150866e5442a5ec.info
deleted file mode 100644
index ac6c485..0000000
Binary files a/EscapeTheGhost/Library/metadata/0a/0a822dba3d5c4c85b150866e5442a5ec.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/0c/0c156a7b2f4d450da1716b1625b5441d b/EscapeTheGhost/Library/metadata/0c/0c156a7b2f4d450da1716b1625b5441d
deleted file mode 100644
index e829ec2..0000000
Binary files a/EscapeTheGhost/Library/metadata/0c/0c156a7b2f4d450da1716b1625b5441d and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/0c/0c156a7b2f4d450da1716b1625b5441d.info b/EscapeTheGhost/Library/metadata/0c/0c156a7b2f4d450da1716b1625b5441d.info
deleted file mode 100644
index 5ecd9fb..0000000
Binary files a/EscapeTheGhost/Library/metadata/0c/0c156a7b2f4d450da1716b1625b5441d.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/0d/0d2d0f36e67d4518a07df76235e91f9a b/EscapeTheGhost/Library/metadata/0d/0d2d0f36e67d4518a07df76235e91f9a
deleted file mode 100644
index ea50d98..0000000
Binary files a/EscapeTheGhost/Library/metadata/0d/0d2d0f36e67d4518a07df76235e91f9a and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/0d/0d2d0f36e67d4518a07df76235e91f9a.info b/EscapeTheGhost/Library/metadata/0d/0d2d0f36e67d4518a07df76235e91f9a.info
deleted file mode 100644
index 855ffcc..0000000
Binary files a/EscapeTheGhost/Library/metadata/0d/0d2d0f36e67d4518a07df76235e91f9a.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/0d/0d3bb855445e36e479c85976fc88383a b/EscapeTheGhost/Library/metadata/0d/0d3bb855445e36e479c85976fc88383a
deleted file mode 100644
index 1c3c59c..0000000
Binary files a/EscapeTheGhost/Library/metadata/0d/0d3bb855445e36e479c85976fc88383a and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/0d/0d3bb855445e36e479c85976fc88383a.info b/EscapeTheGhost/Library/metadata/0d/0d3bb855445e36e479c85976fc88383a.info
deleted file mode 100644
index 1875dc8..0000000
Binary files a/EscapeTheGhost/Library/metadata/0d/0d3bb855445e36e479c85976fc88383a.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/0d/0d9a36012a224080966c7b55896aa0f9 b/EscapeTheGhost/Library/metadata/0d/0d9a36012a224080966c7b55896aa0f9
deleted file mode 100644
index 7f7914b..0000000
Binary files a/EscapeTheGhost/Library/metadata/0d/0d9a36012a224080966c7b55896aa0f9 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/0d/0d9a36012a224080966c7b55896aa0f9.info b/EscapeTheGhost/Library/metadata/0d/0d9a36012a224080966c7b55896aa0f9.info
deleted file mode 100644
index 175c440..0000000
Binary files a/EscapeTheGhost/Library/metadata/0d/0d9a36012a224080966c7b55896aa0f9.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/0e/0e372f1bbea04aa9bd68055d4105bd84 b/EscapeTheGhost/Library/metadata/0e/0e372f1bbea04aa9bd68055d4105bd84
deleted file mode 100644
index f428a7f..0000000
Binary files a/EscapeTheGhost/Library/metadata/0e/0e372f1bbea04aa9bd68055d4105bd84 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/0e/0e372f1bbea04aa9bd68055d4105bd84.info b/EscapeTheGhost/Library/metadata/0e/0e372f1bbea04aa9bd68055d4105bd84.info
deleted file mode 100644
index 777be06..0000000
Binary files a/EscapeTheGhost/Library/metadata/0e/0e372f1bbea04aa9bd68055d4105bd84.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/0e/0e751e877ed14d71a6b8e63ac54949cf b/EscapeTheGhost/Library/metadata/0e/0e751e877ed14d71a6b8e63ac54949cf
deleted file mode 100644
index b469244..0000000
Binary files a/EscapeTheGhost/Library/metadata/0e/0e751e877ed14d71a6b8e63ac54949cf and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/0e/0e751e877ed14d71a6b8e63ac54949cf.info b/EscapeTheGhost/Library/metadata/0e/0e751e877ed14d71a6b8e63ac54949cf.info
deleted file mode 100644
index cc03932..0000000
Binary files a/EscapeTheGhost/Library/metadata/0e/0e751e877ed14d71a6b8e63ac54949cf.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/0e/0edd86f97b0648f685604a5582cff608 b/EscapeTheGhost/Library/metadata/0e/0edd86f97b0648f685604a5582cff608
deleted file mode 100644
index 8ad789e..0000000
Binary files a/EscapeTheGhost/Library/metadata/0e/0edd86f97b0648f685604a5582cff608 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/0e/0edd86f97b0648f685604a5582cff608.info b/EscapeTheGhost/Library/metadata/0e/0edd86f97b0648f685604a5582cff608.info
deleted file mode 100644
index 9bc0509..0000000
Binary files a/EscapeTheGhost/Library/metadata/0e/0edd86f97b0648f685604a5582cff608.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/10/10145f279f90346bbb61712ff585828b b/EscapeTheGhost/Library/metadata/10/10145f279f90346bbb61712ff585828b
deleted file mode 100644
index 38493b5..0000000
Binary files a/EscapeTheGhost/Library/metadata/10/10145f279f90346bbb61712ff585828b and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/10/10145f279f90346bbb61712ff585828b.info b/EscapeTheGhost/Library/metadata/10/10145f279f90346bbb61712ff585828b.info
deleted file mode 100644
index 1bc676b..0000000
Binary files a/EscapeTheGhost/Library/metadata/10/10145f279f90346bbb61712ff585828b.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/10/1048a87135154606808bf2030da32d18 b/EscapeTheGhost/Library/metadata/10/1048a87135154606808bf2030da32d18
deleted file mode 100644
index 2e7183e..0000000
Binary files a/EscapeTheGhost/Library/metadata/10/1048a87135154606808bf2030da32d18 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/10/1048a87135154606808bf2030da32d18.info b/EscapeTheGhost/Library/metadata/10/1048a87135154606808bf2030da32d18.info
deleted file mode 100644
index 2d2ec97..0000000
Binary files a/EscapeTheGhost/Library/metadata/10/1048a87135154606808bf2030da32d18.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/10/1067213df0c64b319bc81e73be809b1a b/EscapeTheGhost/Library/metadata/10/1067213df0c64b319bc81e73be809b1a
deleted file mode 100644
index eade26e..0000000
Binary files a/EscapeTheGhost/Library/metadata/10/1067213df0c64b319bc81e73be809b1a and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/10/1067213df0c64b319bc81e73be809b1a.info b/EscapeTheGhost/Library/metadata/10/1067213df0c64b319bc81e73be809b1a.info
deleted file mode 100644
index 93e881d..0000000
Binary files a/EscapeTheGhost/Library/metadata/10/1067213df0c64b319bc81e73be809b1a.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/10/10a526294333b45d0916e3da00f0e1fe b/EscapeTheGhost/Library/metadata/10/10a526294333b45d0916e3da00f0e1fe
deleted file mode 100644
index d21ef50..0000000
Binary files a/EscapeTheGhost/Library/metadata/10/10a526294333b45d0916e3da00f0e1fe and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/10/10a526294333b45d0916e3da00f0e1fe.info b/EscapeTheGhost/Library/metadata/10/10a526294333b45d0916e3da00f0e1fe.info
deleted file mode 100644
index 8f263c0..0000000
Binary files a/EscapeTheGhost/Library/metadata/10/10a526294333b45d0916e3da00f0e1fe.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/10/10bf81265ad87424d946598c575f45a0 b/EscapeTheGhost/Library/metadata/10/10bf81265ad87424d946598c575f45a0
deleted file mode 100644
index c5339c5..0000000
Binary files a/EscapeTheGhost/Library/metadata/10/10bf81265ad87424d946598c575f45a0 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/10/10bf81265ad87424d946598c575f45a0.info b/EscapeTheGhost/Library/metadata/10/10bf81265ad87424d946598c575f45a0.info
deleted file mode 100644
index eac9300..0000000
Binary files a/EscapeTheGhost/Library/metadata/10/10bf81265ad87424d946598c575f45a0.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/11/1141b1e00aab94f12a6c2b2ed9d3dfa0 b/EscapeTheGhost/Library/metadata/11/1141b1e00aab94f12a6c2b2ed9d3dfa0
deleted file mode 100644
index a879d77..0000000
Binary files a/EscapeTheGhost/Library/metadata/11/1141b1e00aab94f12a6c2b2ed9d3dfa0 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/11/1141b1e00aab94f12a6c2b2ed9d3dfa0.info b/EscapeTheGhost/Library/metadata/11/1141b1e00aab94f12a6c2b2ed9d3dfa0.info
deleted file mode 100644
index e42d2b7..0000000
Binary files a/EscapeTheGhost/Library/metadata/11/1141b1e00aab94f12a6c2b2ed9d3dfa0.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/11/1158e311a3101950348dcecb1bebc42d b/EscapeTheGhost/Library/metadata/11/1158e311a3101950348dcecb1bebc42d
deleted file mode 100644
index 5295354..0000000
Binary files a/EscapeTheGhost/Library/metadata/11/1158e311a3101950348dcecb1bebc42d and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/11/1158e311a3101950348dcecb1bebc42d.info b/EscapeTheGhost/Library/metadata/11/1158e311a3101950348dcecb1bebc42d.info
deleted file mode 100644
index 32ea3f8..0000000
Binary files a/EscapeTheGhost/Library/metadata/11/1158e311a3101950348dcecb1bebc42d.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/11/11a6a034ab84493cbed6af5ae7aae78b b/EscapeTheGhost/Library/metadata/11/11a6a034ab84493cbed6af5ae7aae78b
deleted file mode 100644
index 1c4b346..0000000
Binary files a/EscapeTheGhost/Library/metadata/11/11a6a034ab84493cbed6af5ae7aae78b and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/11/11a6a034ab84493cbed6af5ae7aae78b.info b/EscapeTheGhost/Library/metadata/11/11a6a034ab84493cbed6af5ae7aae78b.info
deleted file mode 100644
index 1a0ae04..0000000
Binary files a/EscapeTheGhost/Library/metadata/11/11a6a034ab84493cbed6af5ae7aae78b.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/12/12736c98af174f91827a26b66d2b01b9 b/EscapeTheGhost/Library/metadata/12/12736c98af174f91827a26b66d2b01b9
deleted file mode 100644
index 2667386..0000000
Binary files a/EscapeTheGhost/Library/metadata/12/12736c98af174f91827a26b66d2b01b9 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/12/12736c98af174f91827a26b66d2b01b9.info b/EscapeTheGhost/Library/metadata/12/12736c98af174f91827a26b66d2b01b9.info
deleted file mode 100644
index 3d6caec..0000000
Binary files a/EscapeTheGhost/Library/metadata/12/12736c98af174f91827a26b66d2b01b9.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/12/12b71d24f8b054f88b93357ef91540b2 b/EscapeTheGhost/Library/metadata/12/12b71d24f8b054f88b93357ef91540b2
deleted file mode 100644
index 1feba56..0000000
Binary files a/EscapeTheGhost/Library/metadata/12/12b71d24f8b054f88b93357ef91540b2 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/12/12b71d24f8b054f88b93357ef91540b2.info b/EscapeTheGhost/Library/metadata/12/12b71d24f8b054f88b93357ef91540b2.info
deleted file mode 100644
index 68eaebf..0000000
Binary files a/EscapeTheGhost/Library/metadata/12/12b71d24f8b054f88b93357ef91540b2.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/12/12fd8a0055b84bb59e84c9835a37e333 b/EscapeTheGhost/Library/metadata/12/12fd8a0055b84bb59e84c9835a37e333
deleted file mode 100644
index bf1dd31..0000000
Binary files a/EscapeTheGhost/Library/metadata/12/12fd8a0055b84bb59e84c9835a37e333 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/12/12fd8a0055b84bb59e84c9835a37e333.info b/EscapeTheGhost/Library/metadata/12/12fd8a0055b84bb59e84c9835a37e333.info
deleted file mode 100644
index 2b82eba..0000000
Binary files a/EscapeTheGhost/Library/metadata/12/12fd8a0055b84bb59e84c9835a37e333.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/13/131a6b21c8605f84396be9f6751fb6e3 b/EscapeTheGhost/Library/metadata/13/131a6b21c8605f84396be9f6751fb6e3
deleted file mode 100644
index a93a96d..0000000
Binary files a/EscapeTheGhost/Library/metadata/13/131a6b21c8605f84396be9f6751fb6e3 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/13/131a6b21c8605f84396be9f6751fb6e3.info b/EscapeTheGhost/Library/metadata/13/131a6b21c8605f84396be9f6751fb6e3.info
deleted file mode 100644
index 08a333d..0000000
Binary files a/EscapeTheGhost/Library/metadata/13/131a6b21c8605f84396be9f6751fb6e3.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/13/1322fd896bbb15bb6e335591b766ae62 b/EscapeTheGhost/Library/metadata/13/1322fd896bbb15bb6e335591b766ae62
deleted file mode 100644
index f4bc93e..0000000
Binary files a/EscapeTheGhost/Library/metadata/13/1322fd896bbb15bb6e335591b766ae62 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/13/1322fd896bbb15bb6e335591b766ae62.info b/EscapeTheGhost/Library/metadata/13/1322fd896bbb15bb6e335591b766ae62.info
deleted file mode 100644
index 64fd62d..0000000
Binary files a/EscapeTheGhost/Library/metadata/13/1322fd896bbb15bb6e335591b766ae62.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/13/13eb80ce50ac9c43cdbaf2109c0ec7db b/EscapeTheGhost/Library/metadata/13/13eb80ce50ac9c43cdbaf2109c0ec7db
deleted file mode 100644
index b84df92..0000000
Binary files a/EscapeTheGhost/Library/metadata/13/13eb80ce50ac9c43cdbaf2109c0ec7db and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/13/13eb80ce50ac9c43cdbaf2109c0ec7db.info b/EscapeTheGhost/Library/metadata/13/13eb80ce50ac9c43cdbaf2109c0ec7db.info
deleted file mode 100644
index ab4a897..0000000
Binary files a/EscapeTheGhost/Library/metadata/13/13eb80ce50ac9c43cdbaf2109c0ec7db.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/15/15a615c733aa240909fe0b28b0d5143c b/EscapeTheGhost/Library/metadata/15/15a615c733aa240909fe0b28b0d5143c
deleted file mode 100644
index fe8c8e6..0000000
Binary files a/EscapeTheGhost/Library/metadata/15/15a615c733aa240909fe0b28b0d5143c and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/15/15a615c733aa240909fe0b28b0d5143c.info b/EscapeTheGhost/Library/metadata/15/15a615c733aa240909fe0b28b0d5143c.info
deleted file mode 100644
index edc35d2..0000000
Binary files a/EscapeTheGhost/Library/metadata/15/15a615c733aa240909fe0b28b0d5143c.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/15/15be9c691b85a41a39c18beeff87e21b b/EscapeTheGhost/Library/metadata/15/15be9c691b85a41a39c18beeff87e21b
deleted file mode 100644
index 6568b2c..0000000
Binary files a/EscapeTheGhost/Library/metadata/15/15be9c691b85a41a39c18beeff87e21b and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/15/15be9c691b85a41a39c18beeff87e21b.info b/EscapeTheGhost/Library/metadata/15/15be9c691b85a41a39c18beeff87e21b.info
deleted file mode 100644
index 65f25f4..0000000
Binary files a/EscapeTheGhost/Library/metadata/15/15be9c691b85a41a39c18beeff87e21b.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/15/15bf9c691b85b41a39c18bee2f87e21b b/EscapeTheGhost/Library/metadata/15/15bf9c691b85b41a39c18bee2f87e21b
deleted file mode 100644
index fb31710..0000000
Binary files a/EscapeTheGhost/Library/metadata/15/15bf9c691b85b41a39c18bee2f87e21b and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/15/15bf9c691b85b41a39c18bee2f87e21b.info b/EscapeTheGhost/Library/metadata/15/15bf9c691b85b41a39c18bee2f87e21b.info
deleted file mode 100644
index 7480e98..0000000
Binary files a/EscapeTheGhost/Library/metadata/15/15bf9c691b85b41a39c18bee2f87e21b.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/16/1634b8cf6fe522449aae40f121d55c24 b/EscapeTheGhost/Library/metadata/16/1634b8cf6fe522449aae40f121d55c24
deleted file mode 100644
index c85e7a8..0000000
Binary files a/EscapeTheGhost/Library/metadata/16/1634b8cf6fe522449aae40f121d55c24 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/16/1634b8cf6fe522449aae40f121d55c24.info b/EscapeTheGhost/Library/metadata/16/1634b8cf6fe522449aae40f121d55c24.info
deleted file mode 100644
index 2ccf07a..0000000
Binary files a/EscapeTheGhost/Library/metadata/16/1634b8cf6fe522449aae40f121d55c24.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/17/178008567c08e6d84014fa87825d10bb b/EscapeTheGhost/Library/metadata/17/178008567c08e6d84014fa87825d10bb
deleted file mode 100644
index 04e062b..0000000
Binary files a/EscapeTheGhost/Library/metadata/17/178008567c08e6d84014fa87825d10bb and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/17/178008567c08e6d84014fa87825d10bb.info b/EscapeTheGhost/Library/metadata/17/178008567c08e6d84014fa87825d10bb.info
deleted file mode 100644
index d3ad655..0000000
Binary files a/EscapeTheGhost/Library/metadata/17/178008567c08e6d84014fa87825d10bb.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/17/17b632677410799367a53dc7ab96a8c2 b/EscapeTheGhost/Library/metadata/17/17b632677410799367a53dc7ab96a8c2
deleted file mode 100644
index 01acc8f..0000000
Binary files a/EscapeTheGhost/Library/metadata/17/17b632677410799367a53dc7ab96a8c2 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/17/17b632677410799367a53dc7ab96a8c2.info b/EscapeTheGhost/Library/metadata/17/17b632677410799367a53dc7ab96a8c2.info
deleted file mode 100644
index 4699608..0000000
Binary files a/EscapeTheGhost/Library/metadata/17/17b632677410799367a53dc7ab96a8c2.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/17/17dfdb089f10445c78bcc4f5ec718217 b/EscapeTheGhost/Library/metadata/17/17dfdb089f10445c78bcc4f5ec718217
deleted file mode 100644
index f27a063..0000000
Binary files a/EscapeTheGhost/Library/metadata/17/17dfdb089f10445c78bcc4f5ec718217 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/17/17dfdb089f10445c78bcc4f5ec718217.info b/EscapeTheGhost/Library/metadata/17/17dfdb089f10445c78bcc4f5ec718217.info
deleted file mode 100644
index e12a024..0000000
Binary files a/EscapeTheGhost/Library/metadata/17/17dfdb089f10445c78bcc4f5ec718217.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/18/18775b51e3bd42299fd30bd036ea982f b/EscapeTheGhost/Library/metadata/18/18775b51e3bd42299fd30bd036ea982f
deleted file mode 100644
index af6cd5a..0000000
Binary files a/EscapeTheGhost/Library/metadata/18/18775b51e3bd42299fd30bd036ea982f and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/18/18775b51e3bd42299fd30bd036ea982f.info b/EscapeTheGhost/Library/metadata/18/18775b51e3bd42299fd30bd036ea982f.info
deleted file mode 100644
index c5e9bd6..0000000
Binary files a/EscapeTheGhost/Library/metadata/18/18775b51e3bd42299fd30bd036ea982f.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/18/18a4fadfef534684d5af39ca8dc48fe9 b/EscapeTheGhost/Library/metadata/18/18a4fadfef534684d5af39ca8dc48fe9
deleted file mode 100644
index 2a8d0fc..0000000
Binary files a/EscapeTheGhost/Library/metadata/18/18a4fadfef534684d5af39ca8dc48fe9 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/18/18a4fadfef534684d5af39ca8dc48fe9.info b/EscapeTheGhost/Library/metadata/18/18a4fadfef534684d5af39ca8dc48fe9.info
deleted file mode 100644
index 81368be..0000000
Binary files a/EscapeTheGhost/Library/metadata/18/18a4fadfef534684d5af39ca8dc48fe9.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/19/19439a8dbd6e246fa883a262ada31e37 b/EscapeTheGhost/Library/metadata/19/19439a8dbd6e246fa883a262ada31e37
deleted file mode 100644
index a7bcff9..0000000
Binary files a/EscapeTheGhost/Library/metadata/19/19439a8dbd6e246fa883a262ada31e37 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/19/19439a8dbd6e246fa883a262ada31e37.info b/EscapeTheGhost/Library/metadata/19/19439a8dbd6e246fa883a262ada31e37.info
deleted file mode 100644
index d5e0432..0000000
Binary files a/EscapeTheGhost/Library/metadata/19/19439a8dbd6e246fa883a262ada31e37.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/1a/1a4266815e998967becf686f9c71f0a6 b/EscapeTheGhost/Library/metadata/1a/1a4266815e998967becf686f9c71f0a6
deleted file mode 100644
index 8abe8e6..0000000
Binary files a/EscapeTheGhost/Library/metadata/1a/1a4266815e998967becf686f9c71f0a6 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/1a/1a4266815e998967becf686f9c71f0a6.info b/EscapeTheGhost/Library/metadata/1a/1a4266815e998967becf686f9c71f0a6.info
deleted file mode 100644
index 815d68f..0000000
Binary files a/EscapeTheGhost/Library/metadata/1a/1a4266815e998967becf686f9c71f0a6.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/1b/1b32bcce201b4494ea8848326290c5d5 b/EscapeTheGhost/Library/metadata/1b/1b32bcce201b4494ea8848326290c5d5
deleted file mode 100644
index 12b1d48..0000000
Binary files a/EscapeTheGhost/Library/metadata/1b/1b32bcce201b4494ea8848326290c5d5 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/1b/1b32bcce201b4494ea8848326290c5d5.info b/EscapeTheGhost/Library/metadata/1b/1b32bcce201b4494ea8848326290c5d5.info
deleted file mode 100644
index b0c125a..0000000
Binary files a/EscapeTheGhost/Library/metadata/1b/1b32bcce201b4494ea8848326290c5d5.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/1b/1b355da31ea043feba0c03e35dd4bc62 b/EscapeTheGhost/Library/metadata/1b/1b355da31ea043feba0c03e35dd4bc62
deleted file mode 100644
index 38a99bf..0000000
Binary files a/EscapeTheGhost/Library/metadata/1b/1b355da31ea043feba0c03e35dd4bc62 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/1b/1b355da31ea043feba0c03e35dd4bc62.info b/EscapeTheGhost/Library/metadata/1b/1b355da31ea043feba0c03e35dd4bc62.info
deleted file mode 100644
index 57d20fc..0000000
Binary files a/EscapeTheGhost/Library/metadata/1b/1b355da31ea043feba0c03e35dd4bc62.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/1b/1be25132fa5e54b0ea23a23f7ceab7cc b/EscapeTheGhost/Library/metadata/1b/1be25132fa5e54b0ea23a23f7ceab7cc
deleted file mode 100644
index 0272069..0000000
Binary files a/EscapeTheGhost/Library/metadata/1b/1be25132fa5e54b0ea23a23f7ceab7cc and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/1b/1be25132fa5e54b0ea23a23f7ceab7cc.info b/EscapeTheGhost/Library/metadata/1b/1be25132fa5e54b0ea23a23f7ceab7cc.info
deleted file mode 100644
index 76e4516..0000000
Binary files a/EscapeTheGhost/Library/metadata/1b/1be25132fa5e54b0ea23a23f7ceab7cc.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/1c/1c6d1fbb51834b64847b1b73a75bfc77 b/EscapeTheGhost/Library/metadata/1c/1c6d1fbb51834b64847b1b73a75bfc77
deleted file mode 100644
index 7cab513..0000000
Binary files a/EscapeTheGhost/Library/metadata/1c/1c6d1fbb51834b64847b1b73a75bfc77 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/1c/1c6d1fbb51834b64847b1b73a75bfc77.info b/EscapeTheGhost/Library/metadata/1c/1c6d1fbb51834b64847b1b73a75bfc77.info
deleted file mode 100644
index 49491d0..0000000
Binary files a/EscapeTheGhost/Library/metadata/1c/1c6d1fbb51834b64847b1b73a75bfc77.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/1c/1cf2469083ffa484da4d78dd70d708e8 b/EscapeTheGhost/Library/metadata/1c/1cf2469083ffa484da4d78dd70d708e8
deleted file mode 100644
index 641eb18..0000000
Binary files a/EscapeTheGhost/Library/metadata/1c/1cf2469083ffa484da4d78dd70d708e8 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/1c/1cf2469083ffa484da4d78dd70d708e8.info b/EscapeTheGhost/Library/metadata/1c/1cf2469083ffa484da4d78dd70d708e8.info
deleted file mode 100644
index e5b04a7..0000000
Binary files a/EscapeTheGhost/Library/metadata/1c/1cf2469083ffa484da4d78dd70d708e8.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/1c/1cf679539c5e5499e8856aaacf1fc32f b/EscapeTheGhost/Library/metadata/1c/1cf679539c5e5499e8856aaacf1fc32f
deleted file mode 100644
index e3b1c29..0000000
Binary files a/EscapeTheGhost/Library/metadata/1c/1cf679539c5e5499e8856aaacf1fc32f and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/1c/1cf679539c5e5499e8856aaacf1fc32f.info b/EscapeTheGhost/Library/metadata/1c/1cf679539c5e5499e8856aaacf1fc32f.info
deleted file mode 100644
index ad00346..0000000
Binary files a/EscapeTheGhost/Library/metadata/1c/1cf679539c5e5499e8856aaacf1fc32f.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/1f/1fe40690cc55e4fb7995b058357fd3e3 b/EscapeTheGhost/Library/metadata/1f/1fe40690cc55e4fb7995b058357fd3e3
deleted file mode 100644
index db054c1..0000000
Binary files a/EscapeTheGhost/Library/metadata/1f/1fe40690cc55e4fb7995b058357fd3e3 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/1f/1fe40690cc55e4fb7995b058357fd3e3.info b/EscapeTheGhost/Library/metadata/1f/1fe40690cc55e4fb7995b058357fd3e3.info
deleted file mode 100644
index 640673d..0000000
Binary files a/EscapeTheGhost/Library/metadata/1f/1fe40690cc55e4fb7995b058357fd3e3.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/20/201535de6aef94e958deca2f11ad8244 b/EscapeTheGhost/Library/metadata/20/201535de6aef94e958deca2f11ad8244
deleted file mode 100644
index 5a4fc51..0000000
Binary files a/EscapeTheGhost/Library/metadata/20/201535de6aef94e958deca2f11ad8244 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/20/201535de6aef94e958deca2f11ad8244.info b/EscapeTheGhost/Library/metadata/20/201535de6aef94e958deca2f11ad8244.info
deleted file mode 100644
index 148ed16..0000000
Binary files a/EscapeTheGhost/Library/metadata/20/201535de6aef94e958deca2f11ad8244.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/20/2062721d247ef4a3d9a3ccc298c235ed b/EscapeTheGhost/Library/metadata/20/2062721d247ef4a3d9a3ccc298c235ed
deleted file mode 100644
index a83e2d6..0000000
Binary files a/EscapeTheGhost/Library/metadata/20/2062721d247ef4a3d9a3ccc298c235ed and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/20/2062721d247ef4a3d9a3ccc298c235ed.info b/EscapeTheGhost/Library/metadata/20/2062721d247ef4a3d9a3ccc298c235ed.info
deleted file mode 100644
index 8518824..0000000
Binary files a/EscapeTheGhost/Library/metadata/20/2062721d247ef4a3d9a3ccc298c235ed.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/20/20a8ca0a6d82545f6bfd6f2d898d61f7 b/EscapeTheGhost/Library/metadata/20/20a8ca0a6d82545f6bfd6f2d898d61f7
deleted file mode 100644
index 7c7c822..0000000
Binary files a/EscapeTheGhost/Library/metadata/20/20a8ca0a6d82545f6bfd6f2d898d61f7 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/20/20a8ca0a6d82545f6bfd6f2d898d61f7.info b/EscapeTheGhost/Library/metadata/20/20a8ca0a6d82545f6bfd6f2d898d61f7.info
deleted file mode 100644
index fa40094..0000000
Binary files a/EscapeTheGhost/Library/metadata/20/20a8ca0a6d82545f6bfd6f2d898d61f7.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/20/20a9b557a46149dfbfa04a3a7080f5aa b/EscapeTheGhost/Library/metadata/20/20a9b557a46149dfbfa04a3a7080f5aa
deleted file mode 100644
index d0c4f01..0000000
Binary files a/EscapeTheGhost/Library/metadata/20/20a9b557a46149dfbfa04a3a7080f5aa and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/20/20a9b557a46149dfbfa04a3a7080f5aa.info b/EscapeTheGhost/Library/metadata/20/20a9b557a46149dfbfa04a3a7080f5aa.info
deleted file mode 100644
index 4593868..0000000
Binary files a/EscapeTheGhost/Library/metadata/20/20a9b557a46149dfbfa04a3a7080f5aa.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/21/21c0044a7f964773be90d197a78e4703 b/EscapeTheGhost/Library/metadata/21/21c0044a7f964773be90d197a78e4703
deleted file mode 100644
index 04a7916..0000000
Binary files a/EscapeTheGhost/Library/metadata/21/21c0044a7f964773be90d197a78e4703 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/21/21c0044a7f964773be90d197a78e4703.info b/EscapeTheGhost/Library/metadata/21/21c0044a7f964773be90d197a78e4703.info
deleted file mode 100644
index 5cbe650..0000000
Binary files a/EscapeTheGhost/Library/metadata/21/21c0044a7f964773be90d197a78e4703.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/21/21eff446d50eaf44a85985cd4c0b6fa1 b/EscapeTheGhost/Library/metadata/21/21eff446d50eaf44a85985cd4c0b6fa1
deleted file mode 100644
index 71125f6..0000000
Binary files a/EscapeTheGhost/Library/metadata/21/21eff446d50eaf44a85985cd4c0b6fa1 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/21/21eff446d50eaf44a85985cd4c0b6fa1.info b/EscapeTheGhost/Library/metadata/21/21eff446d50eaf44a85985cd4c0b6fa1.info
deleted file mode 100644
index 084273e..0000000
Binary files a/EscapeTheGhost/Library/metadata/21/21eff446d50eaf44a85985cd4c0b6fa1.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/22/220224b43fc464c28bc0e8de8f54a432 b/EscapeTheGhost/Library/metadata/22/220224b43fc464c28bc0e8de8f54a432
deleted file mode 100644
index 94be5c5..0000000
Binary files a/EscapeTheGhost/Library/metadata/22/220224b43fc464c28bc0e8de8f54a432 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/22/220224b43fc464c28bc0e8de8f54a432.info b/EscapeTheGhost/Library/metadata/22/220224b43fc464c28bc0e8de8f54a432.info
deleted file mode 100644
index 039ca1f..0000000
Binary files a/EscapeTheGhost/Library/metadata/22/220224b43fc464c28bc0e8de8f54a432.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/22/220e9325710f4235a43492dd1ee4980d b/EscapeTheGhost/Library/metadata/22/220e9325710f4235a43492dd1ee4980d
deleted file mode 100644
index b1a5f64..0000000
Binary files a/EscapeTheGhost/Library/metadata/22/220e9325710f4235a43492dd1ee4980d and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/22/220e9325710f4235a43492dd1ee4980d.info b/EscapeTheGhost/Library/metadata/22/220e9325710f4235a43492dd1ee4980d.info
deleted file mode 100644
index aa17b7e..0000000
Binary files a/EscapeTheGhost/Library/metadata/22/220e9325710f4235a43492dd1ee4980d.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/22/22464cf7ab0243a6bf9c79851183b002 b/EscapeTheGhost/Library/metadata/22/22464cf7ab0243a6bf9c79851183b002
deleted file mode 100644
index ab8cf84..0000000
Binary files a/EscapeTheGhost/Library/metadata/22/22464cf7ab0243a6bf9c79851183b002 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/22/22464cf7ab0243a6bf9c79851183b002.info b/EscapeTheGhost/Library/metadata/22/22464cf7ab0243a6bf9c79851183b002.info
deleted file mode 100644
index c74eeb6..0000000
Binary files a/EscapeTheGhost/Library/metadata/22/22464cf7ab0243a6bf9c79851183b002.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/22/224ede67b4f3a4109bfec4d5cb161b05 b/EscapeTheGhost/Library/metadata/22/224ede67b4f3a4109bfec4d5cb161b05
deleted file mode 100644
index 758b1f7..0000000
Binary files a/EscapeTheGhost/Library/metadata/22/224ede67b4f3a4109bfec4d5cb161b05 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/22/224ede67b4f3a4109bfec4d5cb161b05.info b/EscapeTheGhost/Library/metadata/22/224ede67b4f3a4109bfec4d5cb161b05.info
deleted file mode 100644
index 0ea5642..0000000
Binary files a/EscapeTheGhost/Library/metadata/22/224ede67b4f3a4109bfec4d5cb161b05.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/23/2300e75732d74890b38a8ff257a3ae15 b/EscapeTheGhost/Library/metadata/23/2300e75732d74890b38a8ff257a3ae15
deleted file mode 100644
index e862f7f..0000000
Binary files a/EscapeTheGhost/Library/metadata/23/2300e75732d74890b38a8ff257a3ae15 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/23/2300e75732d74890b38a8ff257a3ae15.info b/EscapeTheGhost/Library/metadata/23/2300e75732d74890b38a8ff257a3ae15.info
deleted file mode 100644
index efa7796..0000000
Binary files a/EscapeTheGhost/Library/metadata/23/2300e75732d74890b38a8ff257a3ae15.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/23/23805a7a1623842b0b7b21158066bd90 b/EscapeTheGhost/Library/metadata/23/23805a7a1623842b0b7b21158066bd90
deleted file mode 100644
index 4ff5c65..0000000
Binary files a/EscapeTheGhost/Library/metadata/23/23805a7a1623842b0b7b21158066bd90 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/23/23805a7a1623842b0b7b21158066bd90.info b/EscapeTheGhost/Library/metadata/23/23805a7a1623842b0b7b21158066bd90.info
deleted file mode 100644
index b7a6a30..0000000
Binary files a/EscapeTheGhost/Library/metadata/23/23805a7a1623842b0b7b21158066bd90.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/23/23a562f2cac6401f9f91251c68a1a794 b/EscapeTheGhost/Library/metadata/23/23a562f2cac6401f9f91251c68a1a794
deleted file mode 100644
index f21c44e..0000000
Binary files a/EscapeTheGhost/Library/metadata/23/23a562f2cac6401f9f91251c68a1a794 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/23/23a562f2cac6401f9f91251c68a1a794.info b/EscapeTheGhost/Library/metadata/23/23a562f2cac6401f9f91251c68a1a794.info
deleted file mode 100644
index f3590fa..0000000
Binary files a/EscapeTheGhost/Library/metadata/23/23a562f2cac6401f9f91251c68a1a794.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/25/25ebe415cc14c4f4ea15c34a796b75bb b/EscapeTheGhost/Library/metadata/25/25ebe415cc14c4f4ea15c34a796b75bb
deleted file mode 100644
index 7ac8dfd..0000000
Binary files a/EscapeTheGhost/Library/metadata/25/25ebe415cc14c4f4ea15c34a796b75bb and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/25/25ebe415cc14c4f4ea15c34a796b75bb.info b/EscapeTheGhost/Library/metadata/25/25ebe415cc14c4f4ea15c34a796b75bb.info
deleted file mode 100644
index 92d5c55..0000000
Binary files a/EscapeTheGhost/Library/metadata/25/25ebe415cc14c4f4ea15c34a796b75bb.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/26/2682a692a2be7e14e901a738c7806da0 b/EscapeTheGhost/Library/metadata/26/2682a692a2be7e14e901a738c7806da0
deleted file mode 100644
index 1da2076..0000000
Binary files a/EscapeTheGhost/Library/metadata/26/2682a692a2be7e14e901a738c7806da0 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/26/2682a692a2be7e14e901a738c7806da0.info b/EscapeTheGhost/Library/metadata/26/2682a692a2be7e14e901a738c7806da0.info
deleted file mode 100644
index e9959ab..0000000
Binary files a/EscapeTheGhost/Library/metadata/26/2682a692a2be7e14e901a738c7806da0.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/26/26a4f29db434fd79025c91f6126382cc b/EscapeTheGhost/Library/metadata/26/26a4f29db434fd79025c91f6126382cc
deleted file mode 100644
index b401132..0000000
Binary files a/EscapeTheGhost/Library/metadata/26/26a4f29db434fd79025c91f6126382cc and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/26/26a4f29db434fd79025c91f6126382cc.info b/EscapeTheGhost/Library/metadata/26/26a4f29db434fd79025c91f6126382cc.info
deleted file mode 100644
index 047600f..0000000
Binary files a/EscapeTheGhost/Library/metadata/26/26a4f29db434fd79025c91f6126382cc.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/27/2705215ac5b84b70bacc50632be6e391 b/EscapeTheGhost/Library/metadata/27/2705215ac5b84b70bacc50632be6e391
deleted file mode 100644
index ff76e63..0000000
Binary files a/EscapeTheGhost/Library/metadata/27/2705215ac5b84b70bacc50632be6e391 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/27/2705215ac5b84b70bacc50632be6e391.info b/EscapeTheGhost/Library/metadata/27/2705215ac5b84b70bacc50632be6e391.info
deleted file mode 100644
index ae61269..0000000
Binary files a/EscapeTheGhost/Library/metadata/27/2705215ac5b84b70bacc50632be6e391.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/27/2759279b49ae84338a818fe5903419c1 b/EscapeTheGhost/Library/metadata/27/2759279b49ae84338a818fe5903419c1
deleted file mode 100644
index b77205f..0000000
Binary files a/EscapeTheGhost/Library/metadata/27/2759279b49ae84338a818fe5903419c1 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/27/2759279b49ae84338a818fe5903419c1.info b/EscapeTheGhost/Library/metadata/27/2759279b49ae84338a818fe5903419c1.info
deleted file mode 100644
index deba01e..0000000
Binary files a/EscapeTheGhost/Library/metadata/27/2759279b49ae84338a818fe5903419c1.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/27/27a0335dab59ec542aadd6636a5b4ebd b/EscapeTheGhost/Library/metadata/27/27a0335dab59ec542aadd6636a5b4ebd
deleted file mode 100644
index cce843d..0000000
Binary files a/EscapeTheGhost/Library/metadata/27/27a0335dab59ec542aadd6636a5b4ebd and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/27/27a0335dab59ec542aadd6636a5b4ebd.info b/EscapeTheGhost/Library/metadata/27/27a0335dab59ec542aadd6636a5b4ebd.info
deleted file mode 100644
index bbd0114..0000000
Binary files a/EscapeTheGhost/Library/metadata/27/27a0335dab59ec542aadd6636a5b4ebd.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/28/2808ba6bccb2478ec9c7209d8bf1f3cc b/EscapeTheGhost/Library/metadata/28/2808ba6bccb2478ec9c7209d8bf1f3cc
deleted file mode 100644
index cf8e998..0000000
Binary files a/EscapeTheGhost/Library/metadata/28/2808ba6bccb2478ec9c7209d8bf1f3cc and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/28/2808ba6bccb2478ec9c7209d8bf1f3cc.info b/EscapeTheGhost/Library/metadata/28/2808ba6bccb2478ec9c7209d8bf1f3cc.info
deleted file mode 100644
index 3d03b4e..0000000
Binary files a/EscapeTheGhost/Library/metadata/28/2808ba6bccb2478ec9c7209d8bf1f3cc.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/28/28375447bcea455c9b51a6650b10c9d7 b/EscapeTheGhost/Library/metadata/28/28375447bcea455c9b51a6650b10c9d7
deleted file mode 100644
index ed194bf..0000000
Binary files a/EscapeTheGhost/Library/metadata/28/28375447bcea455c9b51a6650b10c9d7 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/28/28375447bcea455c9b51a6650b10c9d7.info b/EscapeTheGhost/Library/metadata/28/28375447bcea455c9b51a6650b10c9d7.info
deleted file mode 100644
index 55dda29..0000000
Binary files a/EscapeTheGhost/Library/metadata/28/28375447bcea455c9b51a6650b10c9d7.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/28/28542eca5f1b4c64813acfbd512524b6 b/EscapeTheGhost/Library/metadata/28/28542eca5f1b4c64813acfbd512524b6
deleted file mode 100644
index 4f1657f..0000000
Binary files a/EscapeTheGhost/Library/metadata/28/28542eca5f1b4c64813acfbd512524b6 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/28/28542eca5f1b4c64813acfbd512524b6.info b/EscapeTheGhost/Library/metadata/28/28542eca5f1b4c64813acfbd512524b6.info
deleted file mode 100644
index 2c4e4b6..0000000
Binary files a/EscapeTheGhost/Library/metadata/28/28542eca5f1b4c64813acfbd512524b6.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/29/29c0cee3ab184b708f4a33663c974d92 b/EscapeTheGhost/Library/metadata/29/29c0cee3ab184b708f4a33663c974d92
deleted file mode 100644
index a41f6e0..0000000
Binary files a/EscapeTheGhost/Library/metadata/29/29c0cee3ab184b708f4a33663c974d92 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/29/29c0cee3ab184b708f4a33663c974d92.info b/EscapeTheGhost/Library/metadata/29/29c0cee3ab184b708f4a33663c974d92.info
deleted file mode 100644
index 870792d..0000000
Binary files a/EscapeTheGhost/Library/metadata/29/29c0cee3ab184b708f4a33663c974d92.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/2a/2a3f4f8c4e2df41108f55825c24ff694 b/EscapeTheGhost/Library/metadata/2a/2a3f4f8c4e2df41108f55825c24ff694
deleted file mode 100644
index 9a8cc85..0000000
Binary files a/EscapeTheGhost/Library/metadata/2a/2a3f4f8c4e2df41108f55825c24ff694 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/2a/2a3f4f8c4e2df41108f55825c24ff694.info b/EscapeTheGhost/Library/metadata/2a/2a3f4f8c4e2df41108f55825c24ff694.info
deleted file mode 100644
index fee19d5..0000000
Binary files a/EscapeTheGhost/Library/metadata/2a/2a3f4f8c4e2df41108f55825c24ff694.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/2b/2b3002c18d29d41b0898ab58bc6ee10d b/EscapeTheGhost/Library/metadata/2b/2b3002c18d29d41b0898ab58bc6ee10d
deleted file mode 100644
index 5a11c75..0000000
Binary files a/EscapeTheGhost/Library/metadata/2b/2b3002c18d29d41b0898ab58bc6ee10d and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/2b/2b3002c18d29d41b0898ab58bc6ee10d.info b/EscapeTheGhost/Library/metadata/2b/2b3002c18d29d41b0898ab58bc6ee10d.info
deleted file mode 100644
index 5c14574..0000000
Binary files a/EscapeTheGhost/Library/metadata/2b/2b3002c18d29d41b0898ab58bc6ee10d.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/2c/2c814623cb42764d304be0c5ddd03ceb b/EscapeTheGhost/Library/metadata/2c/2c814623cb42764d304be0c5ddd03ceb
deleted file mode 100644
index cf8b5e8..0000000
Binary files a/EscapeTheGhost/Library/metadata/2c/2c814623cb42764d304be0c5ddd03ceb and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/2c/2c814623cb42764d304be0c5ddd03ceb.info b/EscapeTheGhost/Library/metadata/2c/2c814623cb42764d304be0c5ddd03ceb.info
deleted file mode 100644
index 0b97d78..0000000
Binary files a/EscapeTheGhost/Library/metadata/2c/2c814623cb42764d304be0c5ddd03ceb.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/2c/2cda990e2423bbf4892e6590ba056729 b/EscapeTheGhost/Library/metadata/2c/2cda990e2423bbf4892e6590ba056729
deleted file mode 100644
index adbf8a6..0000000
Binary files a/EscapeTheGhost/Library/metadata/2c/2cda990e2423bbf4892e6590ba056729 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/2c/2cda990e2423bbf4892e6590ba056729.info b/EscapeTheGhost/Library/metadata/2c/2cda990e2423bbf4892e6590ba056729.info
deleted file mode 100644
index bae9976..0000000
Binary files a/EscapeTheGhost/Library/metadata/2c/2cda990e2423bbf4892e6590ba056729.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/2c/2ce4bbcc4722440890a03312706037fe b/EscapeTheGhost/Library/metadata/2c/2ce4bbcc4722440890a03312706037fe
deleted file mode 100644
index 311d1a2..0000000
Binary files a/EscapeTheGhost/Library/metadata/2c/2ce4bbcc4722440890a03312706037fe and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/2c/2ce4bbcc4722440890a03312706037fe.info b/EscapeTheGhost/Library/metadata/2c/2ce4bbcc4722440890a03312706037fe.info
deleted file mode 100644
index 12a8c82..0000000
Binary files a/EscapeTheGhost/Library/metadata/2c/2ce4bbcc4722440890a03312706037fe.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/2d/2d142b475fbfb8cf12ba3a795194300a b/EscapeTheGhost/Library/metadata/2d/2d142b475fbfb8cf12ba3a795194300a
deleted file mode 100644
index c3afd84..0000000
Binary files a/EscapeTheGhost/Library/metadata/2d/2d142b475fbfb8cf12ba3a795194300a and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/2d/2d142b475fbfb8cf12ba3a795194300a.info b/EscapeTheGhost/Library/metadata/2d/2d142b475fbfb8cf12ba3a795194300a.info
deleted file mode 100644
index f4aa953..0000000
Binary files a/EscapeTheGhost/Library/metadata/2d/2d142b475fbfb8cf12ba3a795194300a.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/2d/2d4d46c70fdd242668a56e99799e8540 b/EscapeTheGhost/Library/metadata/2d/2d4d46c70fdd242668a56e99799e8540
deleted file mode 100644
index 4621f0a..0000000
Binary files a/EscapeTheGhost/Library/metadata/2d/2d4d46c70fdd242668a56e99799e8540 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/2d/2d4d46c70fdd242668a56e99799e8540.info b/EscapeTheGhost/Library/metadata/2d/2d4d46c70fdd242668a56e99799e8540.info
deleted file mode 100644
index b8db6a0..0000000
Binary files a/EscapeTheGhost/Library/metadata/2d/2d4d46c70fdd242668a56e99799e8540.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/2d/2d6ba5cbe47e6ad3c87474c56174d4e0 b/EscapeTheGhost/Library/metadata/2d/2d6ba5cbe47e6ad3c87474c56174d4e0
deleted file mode 100644
index e1ac267..0000000
Binary files a/EscapeTheGhost/Library/metadata/2d/2d6ba5cbe47e6ad3c87474c56174d4e0 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/2d/2d6ba5cbe47e6ad3c87474c56174d4e0.info b/EscapeTheGhost/Library/metadata/2d/2d6ba5cbe47e6ad3c87474c56174d4e0.info
deleted file mode 100644
index 5c8c773..0000000
Binary files a/EscapeTheGhost/Library/metadata/2d/2d6ba5cbe47e6ad3c87474c56174d4e0.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/2d/2d77b2d58287d46a6a61f12c861bfc2f b/EscapeTheGhost/Library/metadata/2d/2d77b2d58287d46a6a61f12c861bfc2f
deleted file mode 100644
index 3ef5dcf..0000000
Binary files a/EscapeTheGhost/Library/metadata/2d/2d77b2d58287d46a6a61f12c861bfc2f and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/2d/2d77b2d58287d46a6a61f12c861bfc2f.info b/EscapeTheGhost/Library/metadata/2d/2d77b2d58287d46a6a61f12c861bfc2f.info
deleted file mode 100644
index b296643..0000000
Binary files a/EscapeTheGhost/Library/metadata/2d/2d77b2d58287d46a6a61f12c861bfc2f.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/2d/2da0c512f12947e489f739169773d7ca b/EscapeTheGhost/Library/metadata/2d/2da0c512f12947e489f739169773d7ca
deleted file mode 100644
index 34d03d7..0000000
Binary files a/EscapeTheGhost/Library/metadata/2d/2da0c512f12947e489f739169773d7ca and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/2d/2da0c512f12947e489f739169773d7ca.info b/EscapeTheGhost/Library/metadata/2d/2da0c512f12947e489f739169773d7ca.info
deleted file mode 100644
index 605850a..0000000
Binary files a/EscapeTheGhost/Library/metadata/2d/2da0c512f12947e489f739169773d7ca.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/2f/2f1849b9179b464381598f68663790d3 b/EscapeTheGhost/Library/metadata/2f/2f1849b9179b464381598f68663790d3
deleted file mode 100644
index 63b49ea..0000000
Binary files a/EscapeTheGhost/Library/metadata/2f/2f1849b9179b464381598f68663790d3 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/2f/2f1849b9179b464381598f68663790d3.info b/EscapeTheGhost/Library/metadata/2f/2f1849b9179b464381598f68663790d3.info
deleted file mode 100644
index b83f0f7..0000000
Binary files a/EscapeTheGhost/Library/metadata/2f/2f1849b9179b464381598f68663790d3.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/2f/2f1d33abb004b44cb90ec83a2bfe872e b/EscapeTheGhost/Library/metadata/2f/2f1d33abb004b44cb90ec83a2bfe872e
deleted file mode 100644
index 6173bc0..0000000
Binary files a/EscapeTheGhost/Library/metadata/2f/2f1d33abb004b44cb90ec83a2bfe872e and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/2f/2f1d33abb004b44cb90ec83a2bfe872e.info b/EscapeTheGhost/Library/metadata/2f/2f1d33abb004b44cb90ec83a2bfe872e.info
deleted file mode 100644
index 532671c..0000000
Binary files a/EscapeTheGhost/Library/metadata/2f/2f1d33abb004b44cb90ec83a2bfe872e.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/2f/2fd6421f253b4ef1a19526541f9ffc0c b/EscapeTheGhost/Library/metadata/2f/2fd6421f253b4ef1a19526541f9ffc0c
deleted file mode 100644
index bacdb54..0000000
Binary files a/EscapeTheGhost/Library/metadata/2f/2fd6421f253b4ef1a19526541f9ffc0c and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/2f/2fd6421f253b4ef1a19526541f9ffc0c.info b/EscapeTheGhost/Library/metadata/2f/2fd6421f253b4ef1a19526541f9ffc0c.info
deleted file mode 100644
index 3bddc05..0000000
Binary files a/EscapeTheGhost/Library/metadata/2f/2fd6421f253b4ef1a19526541f9ffc0c.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/30/301fbaa0e62e44fd2a7383bd338a2898 b/EscapeTheGhost/Library/metadata/30/301fbaa0e62e44fd2a7383bd338a2898
deleted file mode 100644
index 86001e5..0000000
Binary files a/EscapeTheGhost/Library/metadata/30/301fbaa0e62e44fd2a7383bd338a2898 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/30/301fbaa0e62e44fd2a7383bd338a2898.info b/EscapeTheGhost/Library/metadata/30/301fbaa0e62e44fd2a7383bd338a2898.info
deleted file mode 100644
index d00adce..0000000
Binary files a/EscapeTheGhost/Library/metadata/30/301fbaa0e62e44fd2a7383bd338a2898.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/30/3069a00b8c364df395994d7d379e0a99 b/EscapeTheGhost/Library/metadata/30/3069a00b8c364df395994d7d379e0a99
deleted file mode 100644
index 3d98b4f..0000000
Binary files a/EscapeTheGhost/Library/metadata/30/3069a00b8c364df395994d7d379e0a99 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/30/3069a00b8c364df395994d7d379e0a99.info b/EscapeTheGhost/Library/metadata/30/3069a00b8c364df395994d7d379e0a99.info
deleted file mode 100644
index b1d92fe..0000000
Binary files a/EscapeTheGhost/Library/metadata/30/3069a00b8c364df395994d7d379e0a99.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/30/30a939dce2fd4073955f2f20e659d506 b/EscapeTheGhost/Library/metadata/30/30a939dce2fd4073955f2f20e659d506
deleted file mode 100644
index bcb15c4..0000000
Binary files a/EscapeTheGhost/Library/metadata/30/30a939dce2fd4073955f2f20e659d506 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/30/30a939dce2fd4073955f2f20e659d506.info b/EscapeTheGhost/Library/metadata/30/30a939dce2fd4073955f2f20e659d506.info
deleted file mode 100644
index d7cd417..0000000
Binary files a/EscapeTheGhost/Library/metadata/30/30a939dce2fd4073955f2f20e659d506.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/30/30aa3194afbe44a72aa7ec76cb2bab8a b/EscapeTheGhost/Library/metadata/30/30aa3194afbe44a72aa7ec76cb2bab8a
deleted file mode 100644
index f17359b..0000000
Binary files a/EscapeTheGhost/Library/metadata/30/30aa3194afbe44a72aa7ec76cb2bab8a and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/30/30aa3194afbe44a72aa7ec76cb2bab8a.info b/EscapeTheGhost/Library/metadata/30/30aa3194afbe44a72aa7ec76cb2bab8a.info
deleted file mode 100644
index c5c1dbe..0000000
Binary files a/EscapeTheGhost/Library/metadata/30/30aa3194afbe44a72aa7ec76cb2bab8a.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/30/30bed781e402439ab8ce4e3357708115 b/EscapeTheGhost/Library/metadata/30/30bed781e402439ab8ce4e3357708115
deleted file mode 100644
index c2fac85..0000000
Binary files a/EscapeTheGhost/Library/metadata/30/30bed781e402439ab8ce4e3357708115 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/30/30bed781e402439ab8ce4e3357708115.info b/EscapeTheGhost/Library/metadata/30/30bed781e402439ab8ce4e3357708115.info
deleted file mode 100644
index d09191e..0000000
Binary files a/EscapeTheGhost/Library/metadata/30/30bed781e402439ab8ce4e3357708115.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/32/32188fd89022c154c81befa2f0e00be0 b/EscapeTheGhost/Library/metadata/32/32188fd89022c154c81befa2f0e00be0
deleted file mode 100644
index 423bec8..0000000
Binary files a/EscapeTheGhost/Library/metadata/32/32188fd89022c154c81befa2f0e00be0 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/32/32188fd89022c154c81befa2f0e00be0.info b/EscapeTheGhost/Library/metadata/32/32188fd89022c154c81befa2f0e00be0.info
deleted file mode 100644
index f353132..0000000
Binary files a/EscapeTheGhost/Library/metadata/32/32188fd89022c154c81befa2f0e00be0.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/32/322392995be44d23a3c86cfd972f838f b/EscapeTheGhost/Library/metadata/32/322392995be44d23a3c86cfd972f838f
deleted file mode 100644
index caaa75e..0000000
Binary files a/EscapeTheGhost/Library/metadata/32/322392995be44d23a3c86cfd972f838f and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/32/322392995be44d23a3c86cfd972f838f.info b/EscapeTheGhost/Library/metadata/32/322392995be44d23a3c86cfd972f838f.info
deleted file mode 100644
index 88eb16c..0000000
Binary files a/EscapeTheGhost/Library/metadata/32/322392995be44d23a3c86cfd972f838f.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/32/328cc881519068e4eb7db4bb907ad2d9 b/EscapeTheGhost/Library/metadata/32/328cc881519068e4eb7db4bb907ad2d9
deleted file mode 100644
index 551ee20..0000000
Binary files a/EscapeTheGhost/Library/metadata/32/328cc881519068e4eb7db4bb907ad2d9 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/32/328cc881519068e4eb7db4bb907ad2d9.info b/EscapeTheGhost/Library/metadata/32/328cc881519068e4eb7db4bb907ad2d9.info
deleted file mode 100644
index 65d5010..0000000
Binary files a/EscapeTheGhost/Library/metadata/32/328cc881519068e4eb7db4bb907ad2d9.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/32/32d40088a6124c578ad6b428df586e2e b/EscapeTheGhost/Library/metadata/32/32d40088a6124c578ad6b428df586e2e
deleted file mode 100644
index 829aa03..0000000
Binary files a/EscapeTheGhost/Library/metadata/32/32d40088a6124c578ad6b428df586e2e and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/32/32d40088a6124c578ad6b428df586e2e.info b/EscapeTheGhost/Library/metadata/32/32d40088a6124c578ad6b428df586e2e.info
deleted file mode 100644
index 1d5032c..0000000
Binary files a/EscapeTheGhost/Library/metadata/32/32d40088a6124c578ad6b428df586e2e.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/33/3339607d3aaa4528bc9ba6ad198ca8f3 b/EscapeTheGhost/Library/metadata/33/3339607d3aaa4528bc9ba6ad198ca8f3
deleted file mode 100644
index 85ebd0b..0000000
Binary files a/EscapeTheGhost/Library/metadata/33/3339607d3aaa4528bc9ba6ad198ca8f3 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/33/3339607d3aaa4528bc9ba6ad198ca8f3.info b/EscapeTheGhost/Library/metadata/33/3339607d3aaa4528bc9ba6ad198ca8f3.info
deleted file mode 100644
index 530242e..0000000
Binary files a/EscapeTheGhost/Library/metadata/33/3339607d3aaa4528bc9ba6ad198ca8f3.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/33/3385f7527e5be4c65b3a5294e8995ff8 b/EscapeTheGhost/Library/metadata/33/3385f7527e5be4c65b3a5294e8995ff8
deleted file mode 100644
index c47f88c..0000000
Binary files a/EscapeTheGhost/Library/metadata/33/3385f7527e5be4c65b3a5294e8995ff8 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/33/3385f7527e5be4c65b3a5294e8995ff8.info b/EscapeTheGhost/Library/metadata/33/3385f7527e5be4c65b3a5294e8995ff8.info
deleted file mode 100644
index 3d61511..0000000
Binary files a/EscapeTheGhost/Library/metadata/33/3385f7527e5be4c65b3a5294e8995ff8.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/34/342a0f8aca7f4f0691338912faec0494 b/EscapeTheGhost/Library/metadata/34/342a0f8aca7f4f0691338912faec0494
deleted file mode 100644
index 0acd36b..0000000
Binary files a/EscapeTheGhost/Library/metadata/34/342a0f8aca7f4f0691338912faec0494 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/34/342a0f8aca7f4f0691338912faec0494.info b/EscapeTheGhost/Library/metadata/34/342a0f8aca7f4f0691338912faec0494.info
deleted file mode 100644
index 89151cf..0000000
Binary files a/EscapeTheGhost/Library/metadata/34/342a0f8aca7f4f0691338912faec0494.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/34/344e30043c0ce48e6b561f4a02ebaad9 b/EscapeTheGhost/Library/metadata/34/344e30043c0ce48e6b561f4a02ebaad9
deleted file mode 100644
index c9e1537..0000000
Binary files a/EscapeTheGhost/Library/metadata/34/344e30043c0ce48e6b561f4a02ebaad9 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/34/344e30043c0ce48e6b561f4a02ebaad9.info b/EscapeTheGhost/Library/metadata/34/344e30043c0ce48e6b561f4a02ebaad9.info
deleted file mode 100644
index 131aad3..0000000
Binary files a/EscapeTheGhost/Library/metadata/34/344e30043c0ce48e6b561f4a02ebaad9.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/34/34652463ca66545cf9454b28705eed63 b/EscapeTheGhost/Library/metadata/34/34652463ca66545cf9454b28705eed63
deleted file mode 100644
index edff0ed..0000000
Binary files a/EscapeTheGhost/Library/metadata/34/34652463ca66545cf9454b28705eed63 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/34/34652463ca66545cf9454b28705eed63.info b/EscapeTheGhost/Library/metadata/34/34652463ca66545cf9454b28705eed63.info
deleted file mode 100644
index 6df8b53..0000000
Binary files a/EscapeTheGhost/Library/metadata/34/34652463ca66545cf9454b28705eed63.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/34/34e150112c1c42ac83170b52d898e322 b/EscapeTheGhost/Library/metadata/34/34e150112c1c42ac83170b52d898e322
deleted file mode 100644
index 70862ed..0000000
Binary files a/EscapeTheGhost/Library/metadata/34/34e150112c1c42ac83170b52d898e322 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/34/34e150112c1c42ac83170b52d898e322.info b/EscapeTheGhost/Library/metadata/34/34e150112c1c42ac83170b52d898e322.info
deleted file mode 100644
index 7280a05..0000000
Binary files a/EscapeTheGhost/Library/metadata/34/34e150112c1c42ac83170b52d898e322.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/34/34e2c9b9d9e44953933afe37461f44e6 b/EscapeTheGhost/Library/metadata/34/34e2c9b9d9e44953933afe37461f44e6
deleted file mode 100644
index 4626741..0000000
Binary files a/EscapeTheGhost/Library/metadata/34/34e2c9b9d9e44953933afe37461f44e6 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/34/34e2c9b9d9e44953933afe37461f44e6.info b/EscapeTheGhost/Library/metadata/34/34e2c9b9d9e44953933afe37461f44e6.info
deleted file mode 100644
index 972dd4b..0000000
Binary files a/EscapeTheGhost/Library/metadata/34/34e2c9b9d9e44953933afe37461f44e6.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/34/34f6695d37a94370a3697f6b068f5d5e b/EscapeTheGhost/Library/metadata/34/34f6695d37a94370a3697f6b068f5d5e
deleted file mode 100644
index 194eb3d..0000000
Binary files a/EscapeTheGhost/Library/metadata/34/34f6695d37a94370a3697f6b068f5d5e and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/34/34f6695d37a94370a3697f6b068f5d5e.info b/EscapeTheGhost/Library/metadata/34/34f6695d37a94370a3697f6b068f5d5e.info
deleted file mode 100644
index 050558b..0000000
Binary files a/EscapeTheGhost/Library/metadata/34/34f6695d37a94370a3697f6b068f5d5e.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/35/35b4e72ca46f44581b85082c4dc21d13 b/EscapeTheGhost/Library/metadata/35/35b4e72ca46f44581b85082c4dc21d13
deleted file mode 100644
index 67a7f31..0000000
Binary files a/EscapeTheGhost/Library/metadata/35/35b4e72ca46f44581b85082c4dc21d13 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/35/35b4e72ca46f44581b85082c4dc21d13.info b/EscapeTheGhost/Library/metadata/35/35b4e72ca46f44581b85082c4dc21d13.info
deleted file mode 100644
index 220eb81..0000000
Binary files a/EscapeTheGhost/Library/metadata/35/35b4e72ca46f44581b85082c4dc21d13.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/35/35ff0937876540d3bd4b6a941df62a92 b/EscapeTheGhost/Library/metadata/35/35ff0937876540d3bd4b6a941df62a92
deleted file mode 100644
index 9125122..0000000
Binary files a/EscapeTheGhost/Library/metadata/35/35ff0937876540d3bd4b6a941df62a92 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/35/35ff0937876540d3bd4b6a941df62a92.info b/EscapeTheGhost/Library/metadata/35/35ff0937876540d3bd4b6a941df62a92.info
deleted file mode 100644
index bcdcaaa..0000000
Binary files a/EscapeTheGhost/Library/metadata/35/35ff0937876540d3bd4b6a941df62a92.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/36/36e8bb3feb5e6402185947b817a6ed8d b/EscapeTheGhost/Library/metadata/36/36e8bb3feb5e6402185947b817a6ed8d
deleted file mode 100644
index 4cd74d6..0000000
Binary files a/EscapeTheGhost/Library/metadata/36/36e8bb3feb5e6402185947b817a6ed8d and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/36/36e8bb3feb5e6402185947b817a6ed8d.info b/EscapeTheGhost/Library/metadata/36/36e8bb3feb5e6402185947b817a6ed8d.info
deleted file mode 100644
index a11abb1..0000000
Binary files a/EscapeTheGhost/Library/metadata/36/36e8bb3feb5e6402185947b817a6ed8d.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/37/376c84ea405e0f2b80562c23bb977216 b/EscapeTheGhost/Library/metadata/37/376c84ea405e0f2b80562c23bb977216
deleted file mode 100644
index a207e12..0000000
Binary files a/EscapeTheGhost/Library/metadata/37/376c84ea405e0f2b80562c23bb977216 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/37/376c84ea405e0f2b80562c23bb977216.info b/EscapeTheGhost/Library/metadata/37/376c84ea405e0f2b80562c23bb977216.info
deleted file mode 100644
index 12e4ca2..0000000
Binary files a/EscapeTheGhost/Library/metadata/37/376c84ea405e0f2b80562c23bb977216.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/38/383966e89d344865a36addd5d378ffd3 b/EscapeTheGhost/Library/metadata/38/383966e89d344865a36addd5d378ffd3
deleted file mode 100644
index ef0b843..0000000
Binary files a/EscapeTheGhost/Library/metadata/38/383966e89d344865a36addd5d378ffd3 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/38/383966e89d344865a36addd5d378ffd3.info b/EscapeTheGhost/Library/metadata/38/383966e89d344865a36addd5d378ffd3.info
deleted file mode 100644
index 7d15b59..0000000
Binary files a/EscapeTheGhost/Library/metadata/38/383966e89d344865a36addd5d378ffd3.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/38/3877b2be7ee07495d8918dc8937e6de2 b/EscapeTheGhost/Library/metadata/38/3877b2be7ee07495d8918dc8937e6de2
deleted file mode 100644
index 0f3775b..0000000
Binary files a/EscapeTheGhost/Library/metadata/38/3877b2be7ee07495d8918dc8937e6de2 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/38/3877b2be7ee07495d8918dc8937e6de2.info b/EscapeTheGhost/Library/metadata/38/3877b2be7ee07495d8918dc8937e6de2.info
deleted file mode 100644
index 00bce50..0000000
Binary files a/EscapeTheGhost/Library/metadata/38/3877b2be7ee07495d8918dc8937e6de2.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/38/38c8faf1788024c02930a0c68a6e0edc b/EscapeTheGhost/Library/metadata/38/38c8faf1788024c02930a0c68a6e0edc
deleted file mode 100644
index c4c8186..0000000
Binary files a/EscapeTheGhost/Library/metadata/38/38c8faf1788024c02930a0c68a6e0edc and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/38/38c8faf1788024c02930a0c68a6e0edc.info b/EscapeTheGhost/Library/metadata/38/38c8faf1788024c02930a0c68a6e0edc.info
deleted file mode 100644
index 0daa3ef..0000000
Binary files a/EscapeTheGhost/Library/metadata/38/38c8faf1788024c02930a0c68a6e0edc.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/38/38d10cda59f30467ead377436c09ef9b b/EscapeTheGhost/Library/metadata/38/38d10cda59f30467ead377436c09ef9b
deleted file mode 100644
index a5c5e78..0000000
Binary files a/EscapeTheGhost/Library/metadata/38/38d10cda59f30467ead377436c09ef9b and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/38/38d10cda59f30467ead377436c09ef9b.info b/EscapeTheGhost/Library/metadata/38/38d10cda59f30467ead377436c09ef9b.info
deleted file mode 100644
index 9095813..0000000
Binary files a/EscapeTheGhost/Library/metadata/38/38d10cda59f30467ead377436c09ef9b.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/38/38e3a8976f0b9c586b6dfbcef4e4066c b/EscapeTheGhost/Library/metadata/38/38e3a8976f0b9c586b6dfbcef4e4066c
deleted file mode 100644
index 197ef97..0000000
Binary files a/EscapeTheGhost/Library/metadata/38/38e3a8976f0b9c586b6dfbcef4e4066c and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/38/38e3a8976f0b9c586b6dfbcef4e4066c.info b/EscapeTheGhost/Library/metadata/38/38e3a8976f0b9c586b6dfbcef4e4066c.info
deleted file mode 100644
index 85cab2a..0000000
Binary files a/EscapeTheGhost/Library/metadata/38/38e3a8976f0b9c586b6dfbcef4e4066c.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/39/39728903e57c60021f80449a8bbc0096 b/EscapeTheGhost/Library/metadata/39/39728903e57c60021f80449a8bbc0096
deleted file mode 100644
index ee650cc..0000000
Binary files a/EscapeTheGhost/Library/metadata/39/39728903e57c60021f80449a8bbc0096 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/39/39728903e57c60021f80449a8bbc0096.info b/EscapeTheGhost/Library/metadata/39/39728903e57c60021f80449a8bbc0096.info
deleted file mode 100644
index acd0311..0000000
Binary files a/EscapeTheGhost/Library/metadata/39/39728903e57c60021f80449a8bbc0096.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/3a/3a2bf0128e2dd664f91dfba49e36a012 b/EscapeTheGhost/Library/metadata/3a/3a2bf0128e2dd664f91dfba49e36a012
deleted file mode 100644
index 2404dd9..0000000
Binary files a/EscapeTheGhost/Library/metadata/3a/3a2bf0128e2dd664f91dfba49e36a012 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/3a/3a2bf0128e2dd664f91dfba49e36a012.info b/EscapeTheGhost/Library/metadata/3a/3a2bf0128e2dd664f91dfba49e36a012.info
deleted file mode 100644
index 30150f0..0000000
Binary files a/EscapeTheGhost/Library/metadata/3a/3a2bf0128e2dd664f91dfba49e36a012.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/3a/3a84de5cd0624681b6b6dcd8921d912a b/EscapeTheGhost/Library/metadata/3a/3a84de5cd0624681b6b6dcd8921d912a
deleted file mode 100644
index eb65a65..0000000
Binary files a/EscapeTheGhost/Library/metadata/3a/3a84de5cd0624681b6b6dcd8921d912a and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/3a/3a84de5cd0624681b6b6dcd8921d912a.info b/EscapeTheGhost/Library/metadata/3a/3a84de5cd0624681b6b6dcd8921d912a.info
deleted file mode 100644
index affdbd8..0000000
Binary files a/EscapeTheGhost/Library/metadata/3a/3a84de5cd0624681b6b6dcd8921d912a.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/3a/3abc8faab9f5cbe4db0336c99fef85ca b/EscapeTheGhost/Library/metadata/3a/3abc8faab9f5cbe4db0336c99fef85ca
deleted file mode 100644
index 8bac5f8..0000000
Binary files a/EscapeTheGhost/Library/metadata/3a/3abc8faab9f5cbe4db0336c99fef85ca and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/3a/3abc8faab9f5cbe4db0336c99fef85ca.info b/EscapeTheGhost/Library/metadata/3a/3abc8faab9f5cbe4db0336c99fef85ca.info
deleted file mode 100644
index 54f9955..0000000
Binary files a/EscapeTheGhost/Library/metadata/3a/3abc8faab9f5cbe4db0336c99fef85ca.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/3b/3b07d432cba2a4c4f8a2fdea984620b8 b/EscapeTheGhost/Library/metadata/3b/3b07d432cba2a4c4f8a2fdea984620b8
deleted file mode 100644
index 0e7d562..0000000
Binary files a/EscapeTheGhost/Library/metadata/3b/3b07d432cba2a4c4f8a2fdea984620b8 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/3b/3b07d432cba2a4c4f8a2fdea984620b8.info b/EscapeTheGhost/Library/metadata/3b/3b07d432cba2a4c4f8a2fdea984620b8.info
deleted file mode 100644
index 54fac74..0000000
Binary files a/EscapeTheGhost/Library/metadata/3b/3b07d432cba2a4c4f8a2fdea984620b8.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/3b/3bb0254b9671413d9d08a855c5090237 b/EscapeTheGhost/Library/metadata/3b/3bb0254b9671413d9d08a855c5090237
deleted file mode 100644
index b175ecc..0000000
Binary files a/EscapeTheGhost/Library/metadata/3b/3bb0254b9671413d9d08a855c5090237 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/3b/3bb0254b9671413d9d08a855c5090237.info b/EscapeTheGhost/Library/metadata/3b/3bb0254b9671413d9d08a855c5090237.info
deleted file mode 100644
index ba15ae0..0000000
Binary files a/EscapeTheGhost/Library/metadata/3b/3bb0254b9671413d9d08a855c5090237.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/3b/3bda1886f58f4e0ab1139400b160c3ee b/EscapeTheGhost/Library/metadata/3b/3bda1886f58f4e0ab1139400b160c3ee
deleted file mode 100644
index 214bcc0..0000000
Binary files a/EscapeTheGhost/Library/metadata/3b/3bda1886f58f4e0ab1139400b160c3ee and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/3b/3bda1886f58f4e0ab1139400b160c3ee.info b/EscapeTheGhost/Library/metadata/3b/3bda1886f58f4e0ab1139400b160c3ee.info
deleted file mode 100644
index f9c78e9..0000000
Binary files a/EscapeTheGhost/Library/metadata/3b/3bda1886f58f4e0ab1139400b160c3ee.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/3c/3c61c79a991f84470843243e9710743e b/EscapeTheGhost/Library/metadata/3c/3c61c79a991f84470843243e9710743e
deleted file mode 100644
index 9d92e52..0000000
Binary files a/EscapeTheGhost/Library/metadata/3c/3c61c79a991f84470843243e9710743e and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/3c/3c61c79a991f84470843243e9710743e.info b/EscapeTheGhost/Library/metadata/3c/3c61c79a991f84470843243e9710743e.info
deleted file mode 100644
index e501325..0000000
Binary files a/EscapeTheGhost/Library/metadata/3c/3c61c79a991f84470843243e9710743e.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/3c/3cbe74c18d295417f901410ce5e199eb b/EscapeTheGhost/Library/metadata/3c/3cbe74c18d295417f901410ce5e199eb
deleted file mode 100644
index 0e4413f..0000000
Binary files a/EscapeTheGhost/Library/metadata/3c/3cbe74c18d295417f901410ce5e199eb and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/3c/3cbe74c18d295417f901410ce5e199eb.info b/EscapeTheGhost/Library/metadata/3c/3cbe74c18d295417f901410ce5e199eb.info
deleted file mode 100644
index ebb000f..0000000
Binary files a/EscapeTheGhost/Library/metadata/3c/3cbe74c18d295417f901410ce5e199eb.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/3c/3cebe1a96232b44388b30b2f72dde434 b/EscapeTheGhost/Library/metadata/3c/3cebe1a96232b44388b30b2f72dde434
deleted file mode 100644
index 2d920a0..0000000
Binary files a/EscapeTheGhost/Library/metadata/3c/3cebe1a96232b44388b30b2f72dde434 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/3c/3cebe1a96232b44388b30b2f72dde434.info b/EscapeTheGhost/Library/metadata/3c/3cebe1a96232b44388b30b2f72dde434.info
deleted file mode 100644
index a042f2b..0000000
Binary files a/EscapeTheGhost/Library/metadata/3c/3cebe1a96232b44388b30b2f72dde434.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/3c/3cf132d4fa07f4f0cb2883499c5c7dd0 b/EscapeTheGhost/Library/metadata/3c/3cf132d4fa07f4f0cb2883499c5c7dd0
deleted file mode 100644
index 51b6b9b..0000000
Binary files a/EscapeTheGhost/Library/metadata/3c/3cf132d4fa07f4f0cb2883499c5c7dd0 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/3c/3cf132d4fa07f4f0cb2883499c5c7dd0.info b/EscapeTheGhost/Library/metadata/3c/3cf132d4fa07f4f0cb2883499c5c7dd0.info
deleted file mode 100644
index 727551b..0000000
Binary files a/EscapeTheGhost/Library/metadata/3c/3cf132d4fa07f4f0cb2883499c5c7dd0.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/3d/3dcbbc060dea46168ffc09a580836240 b/EscapeTheGhost/Library/metadata/3d/3dcbbc060dea46168ffc09a580836240
deleted file mode 100644
index 4bf9b62..0000000
Binary files a/EscapeTheGhost/Library/metadata/3d/3dcbbc060dea46168ffc09a580836240 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/3d/3dcbbc060dea46168ffc09a580836240.info b/EscapeTheGhost/Library/metadata/3d/3dcbbc060dea46168ffc09a580836240.info
deleted file mode 100644
index 4bdd49c..0000000
Binary files a/EscapeTheGhost/Library/metadata/3d/3dcbbc060dea46168ffc09a580836240.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/3e/3e9a2175e0404f7ea30b2b694850bae0 b/EscapeTheGhost/Library/metadata/3e/3e9a2175e0404f7ea30b2b694850bae0
deleted file mode 100644
index 3cb80cc..0000000
Binary files a/EscapeTheGhost/Library/metadata/3e/3e9a2175e0404f7ea30b2b694850bae0 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/3e/3e9a2175e0404f7ea30b2b694850bae0.info b/EscapeTheGhost/Library/metadata/3e/3e9a2175e0404f7ea30b2b694850bae0.info
deleted file mode 100644
index 5a99412..0000000
Binary files a/EscapeTheGhost/Library/metadata/3e/3e9a2175e0404f7ea30b2b694850bae0.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/3e/3ee40aa79cd242a5b53b0b0ca4f13f0f b/EscapeTheGhost/Library/metadata/3e/3ee40aa79cd242a5b53b0b0ca4f13f0f
deleted file mode 100644
index 7ca2d9f..0000000
Binary files a/EscapeTheGhost/Library/metadata/3e/3ee40aa79cd242a5b53b0b0ca4f13f0f and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/3e/3ee40aa79cd242a5b53b0b0ca4f13f0f.info b/EscapeTheGhost/Library/metadata/3e/3ee40aa79cd242a5b53b0b0ca4f13f0f.info
deleted file mode 100644
index 5a2bb95..0000000
Binary files a/EscapeTheGhost/Library/metadata/3e/3ee40aa79cd242a5b53b0b0ca4f13f0f.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/3f/3f0c4389c854bcaf848af1ea310dbada b/EscapeTheGhost/Library/metadata/3f/3f0c4389c854bcaf848af1ea310dbada
deleted file mode 100644
index 4946045..0000000
Binary files a/EscapeTheGhost/Library/metadata/3f/3f0c4389c854bcaf848af1ea310dbada and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/3f/3f0c4389c854bcaf848af1ea310dbada.info b/EscapeTheGhost/Library/metadata/3f/3f0c4389c854bcaf848af1ea310dbada.info
deleted file mode 100644
index 3bed3c1..0000000
Binary files a/EscapeTheGhost/Library/metadata/3f/3f0c4389c854bcaf848af1ea310dbada.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/3f/3f3e22b18940a4e828a5170574a3617e b/EscapeTheGhost/Library/metadata/3f/3f3e22b18940a4e828a5170574a3617e
deleted file mode 100644
index 5bae870..0000000
Binary files a/EscapeTheGhost/Library/metadata/3f/3f3e22b18940a4e828a5170574a3617e and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/3f/3f3e22b18940a4e828a5170574a3617e.info b/EscapeTheGhost/Library/metadata/3f/3f3e22b18940a4e828a5170574a3617e.info
deleted file mode 100644
index d0a89d2..0000000
Binary files a/EscapeTheGhost/Library/metadata/3f/3f3e22b18940a4e828a5170574a3617e.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/3f/3fd687846ba784d4583c294a60363afa b/EscapeTheGhost/Library/metadata/3f/3fd687846ba784d4583c294a60363afa
deleted file mode 100644
index 8e28821..0000000
Binary files a/EscapeTheGhost/Library/metadata/3f/3fd687846ba784d4583c294a60363afa and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/3f/3fd687846ba784d4583c294a60363afa.info b/EscapeTheGhost/Library/metadata/3f/3fd687846ba784d4583c294a60363afa.info
deleted file mode 100644
index b2d182d..0000000
Binary files a/EscapeTheGhost/Library/metadata/3f/3fd687846ba784d4583c294a60363afa.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/3f/3fdd83b151eb8d25c5e2f82fc39dcb04 b/EscapeTheGhost/Library/metadata/3f/3fdd83b151eb8d25c5e2f82fc39dcb04
deleted file mode 100644
index ed5ba71..0000000
Binary files a/EscapeTheGhost/Library/metadata/3f/3fdd83b151eb8d25c5e2f82fc39dcb04 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/3f/3fdd83b151eb8d25c5e2f82fc39dcb04.info b/EscapeTheGhost/Library/metadata/3f/3fdd83b151eb8d25c5e2f82fc39dcb04.info
deleted file mode 100644
index 50a85d7..0000000
Binary files a/EscapeTheGhost/Library/metadata/3f/3fdd83b151eb8d25c5e2f82fc39dcb04.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/40/4008a9a89683e664d8fe661233721fbf b/EscapeTheGhost/Library/metadata/40/4008a9a89683e664d8fe661233721fbf
deleted file mode 100644
index e51e741..0000000
Binary files a/EscapeTheGhost/Library/metadata/40/4008a9a89683e664d8fe661233721fbf and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/40/4008a9a89683e664d8fe661233721fbf.info b/EscapeTheGhost/Library/metadata/40/4008a9a89683e664d8fe661233721fbf.info
deleted file mode 100644
index f0d4830..0000000
Binary files a/EscapeTheGhost/Library/metadata/40/4008a9a89683e664d8fe661233721fbf.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/40/405b9b51bb344a128608d968297df79c b/EscapeTheGhost/Library/metadata/40/405b9b51bb344a128608d968297df79c
deleted file mode 100644
index e80bb6d..0000000
Binary files a/EscapeTheGhost/Library/metadata/40/405b9b51bb344a128608d968297df79c and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/40/405b9b51bb344a128608d968297df79c.info b/EscapeTheGhost/Library/metadata/40/405b9b51bb344a128608d968297df79c.info
deleted file mode 100644
index d181f74..0000000
Binary files a/EscapeTheGhost/Library/metadata/40/405b9b51bb344a128608d968297df79c.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/40/40bf3cec17fa0b49fe04443c8332d638 b/EscapeTheGhost/Library/metadata/40/40bf3cec17fa0b49fe04443c8332d638
deleted file mode 100644
index 719f008..0000000
Binary files a/EscapeTheGhost/Library/metadata/40/40bf3cec17fa0b49fe04443c8332d638 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/40/40bf3cec17fa0b49fe04443c8332d638.info b/EscapeTheGhost/Library/metadata/40/40bf3cec17fa0b49fe04443c8332d638.info
deleted file mode 100644
index 62ef5a7..0000000
Binary files a/EscapeTheGhost/Library/metadata/40/40bf3cec17fa0b49fe04443c8332d638.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/40/40f49bdf17e7d406f9f89b0afd423ae9 b/EscapeTheGhost/Library/metadata/40/40f49bdf17e7d406f9f89b0afd423ae9
deleted file mode 100644
index ed7bff1..0000000
Binary files a/EscapeTheGhost/Library/metadata/40/40f49bdf17e7d406f9f89b0afd423ae9 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/40/40f49bdf17e7d406f9f89b0afd423ae9.info b/EscapeTheGhost/Library/metadata/40/40f49bdf17e7d406f9f89b0afd423ae9.info
deleted file mode 100644
index 08057fe..0000000
Binary files a/EscapeTheGhost/Library/metadata/40/40f49bdf17e7d406f9f89b0afd423ae9.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/41/4113173d5e95493ab8765d7b08371de4 b/EscapeTheGhost/Library/metadata/41/4113173d5e95493ab8765d7b08371de4
deleted file mode 100644
index d9d6ec0..0000000
Binary files a/EscapeTheGhost/Library/metadata/41/4113173d5e95493ab8765d7b08371de4 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/41/4113173d5e95493ab8765d7b08371de4.info b/EscapeTheGhost/Library/metadata/41/4113173d5e95493ab8765d7b08371de4.info
deleted file mode 100644
index 9181ada..0000000
Binary files a/EscapeTheGhost/Library/metadata/41/4113173d5e95493ab8765d7b08371de4.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/41/41b96614b2e6494ba995ddcd252d11ae b/EscapeTheGhost/Library/metadata/41/41b96614b2e6494ba995ddcd252d11ae
deleted file mode 100644
index 055b13e..0000000
Binary files a/EscapeTheGhost/Library/metadata/41/41b96614b2e6494ba995ddcd252d11ae and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/41/41b96614b2e6494ba995ddcd252d11ae.info b/EscapeTheGhost/Library/metadata/41/41b96614b2e6494ba995ddcd252d11ae.info
deleted file mode 100644
index 07eec5e..0000000
Binary files a/EscapeTheGhost/Library/metadata/41/41b96614b2e6494ba995ddcd252d11ae.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/42/42064bc130be4c44b288d249a44b356f b/EscapeTheGhost/Library/metadata/42/42064bc130be4c44b288d249a44b356f
deleted file mode 100644
index 5dd6545..0000000
Binary files a/EscapeTheGhost/Library/metadata/42/42064bc130be4c44b288d249a44b356f and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/42/42064bc130be4c44b288d249a44b356f.info b/EscapeTheGhost/Library/metadata/42/42064bc130be4c44b288d249a44b356f.info
deleted file mode 100644
index 31e5b07..0000000
Binary files a/EscapeTheGhost/Library/metadata/42/42064bc130be4c44b288d249a44b356f.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/42/42fe78c8fe682715a2cb531422e6ccb3 b/EscapeTheGhost/Library/metadata/42/42fe78c8fe682715a2cb531422e6ccb3
deleted file mode 100644
index 8e18592..0000000
Binary files a/EscapeTheGhost/Library/metadata/42/42fe78c8fe682715a2cb531422e6ccb3 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/42/42fe78c8fe682715a2cb531422e6ccb3.info b/EscapeTheGhost/Library/metadata/42/42fe78c8fe682715a2cb531422e6ccb3.info
deleted file mode 100644
index ea0149c..0000000
Binary files a/EscapeTheGhost/Library/metadata/42/42fe78c8fe682715a2cb531422e6ccb3.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/43/438efd46088d408d8a53f707fa68d976 b/EscapeTheGhost/Library/metadata/43/438efd46088d408d8a53f707fa68d976
deleted file mode 100644
index 770c0ce..0000000
Binary files a/EscapeTheGhost/Library/metadata/43/438efd46088d408d8a53f707fa68d976 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/43/438efd46088d408d8a53f707fa68d976.info b/EscapeTheGhost/Library/metadata/43/438efd46088d408d8a53f707fa68d976.info
deleted file mode 100644
index 260961b..0000000
Binary files a/EscapeTheGhost/Library/metadata/43/438efd46088d408d8a53f707fa68d976.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/44/448c614d4e3aa46b8badb330e977ae75 b/EscapeTheGhost/Library/metadata/44/448c614d4e3aa46b8badb330e977ae75
deleted file mode 100644
index 43da303..0000000
Binary files a/EscapeTheGhost/Library/metadata/44/448c614d4e3aa46b8badb330e977ae75 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/44/448c614d4e3aa46b8badb330e977ae75.info b/EscapeTheGhost/Library/metadata/44/448c614d4e3aa46b8badb330e977ae75.info
deleted file mode 100644
index 9a6c9c8..0000000
Binary files a/EscapeTheGhost/Library/metadata/44/448c614d4e3aa46b8badb330e977ae75.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/44/44e1d646473a40178712cb2150f54cec b/EscapeTheGhost/Library/metadata/44/44e1d646473a40178712cb2150f54cec
deleted file mode 100644
index 8bbfa94..0000000
Binary files a/EscapeTheGhost/Library/metadata/44/44e1d646473a40178712cb2150f54cec and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/44/44e1d646473a40178712cb2150f54cec.info b/EscapeTheGhost/Library/metadata/44/44e1d646473a40178712cb2150f54cec.info
deleted file mode 100644
index d84964d..0000000
Binary files a/EscapeTheGhost/Library/metadata/44/44e1d646473a40178712cb2150f54cec.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/44/44f39a74ca5ee4bf5936b17e901f251c b/EscapeTheGhost/Library/metadata/44/44f39a74ca5ee4bf5936b17e901f251c
deleted file mode 100644
index 2484004..0000000
Binary files a/EscapeTheGhost/Library/metadata/44/44f39a74ca5ee4bf5936b17e901f251c and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/44/44f39a74ca5ee4bf5936b17e901f251c.info b/EscapeTheGhost/Library/metadata/44/44f39a74ca5ee4bf5936b17e901f251c.info
deleted file mode 100644
index 9cbf350..0000000
Binary files a/EscapeTheGhost/Library/metadata/44/44f39a74ca5ee4bf5936b17e901f251c.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/45/453f100e6bdae4dfd9e655927819dc85 b/EscapeTheGhost/Library/metadata/45/453f100e6bdae4dfd9e655927819dc85
deleted file mode 100644
index b9e584f..0000000
Binary files a/EscapeTheGhost/Library/metadata/45/453f100e6bdae4dfd9e655927819dc85 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/45/453f100e6bdae4dfd9e655927819dc85.info b/EscapeTheGhost/Library/metadata/45/453f100e6bdae4dfd9e655927819dc85.info
deleted file mode 100644
index 1cae500..0000000
Binary files a/EscapeTheGhost/Library/metadata/45/453f100e6bdae4dfd9e655927819dc85.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/46/460636d894925441ba1debe037d2e343 b/EscapeTheGhost/Library/metadata/46/460636d894925441ba1debe037d2e343
deleted file mode 100644
index 9b61ba0..0000000
Binary files a/EscapeTheGhost/Library/metadata/46/460636d894925441ba1debe037d2e343 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/46/460636d894925441ba1debe037d2e343.info b/EscapeTheGhost/Library/metadata/46/460636d894925441ba1debe037d2e343.info
deleted file mode 100644
index 2feab07..0000000
Binary files a/EscapeTheGhost/Library/metadata/46/460636d894925441ba1debe037d2e343.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/46/46098a81a64a45c5b756320e10a22f13 b/EscapeTheGhost/Library/metadata/46/46098a81a64a45c5b756320e10a22f13
deleted file mode 100644
index b2d10bc..0000000
Binary files a/EscapeTheGhost/Library/metadata/46/46098a81a64a45c5b756320e10a22f13 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/46/46098a81a64a45c5b756320e10a22f13.info b/EscapeTheGhost/Library/metadata/46/46098a81a64a45c5b756320e10a22f13.info
deleted file mode 100644
index c336c60..0000000
Binary files a/EscapeTheGhost/Library/metadata/46/46098a81a64a45c5b756320e10a22f13.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/46/46c02d8d6499b4309ac1ec5d0b818585 b/EscapeTheGhost/Library/metadata/46/46c02d8d6499b4309ac1ec5d0b818585
deleted file mode 100644
index 2c072cf..0000000
Binary files a/EscapeTheGhost/Library/metadata/46/46c02d8d6499b4309ac1ec5d0b818585 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/46/46c02d8d6499b4309ac1ec5d0b818585.info b/EscapeTheGhost/Library/metadata/46/46c02d8d6499b4309ac1ec5d0b818585.info
deleted file mode 100644
index 2689ece..0000000
Binary files a/EscapeTheGhost/Library/metadata/46/46c02d8d6499b4309ac1ec5d0b818585.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/47/47df14ce4e3c6419ab2ff3080ef897b6 b/EscapeTheGhost/Library/metadata/47/47df14ce4e3c6419ab2ff3080ef897b6
deleted file mode 100644
index 8dc3be8..0000000
Binary files a/EscapeTheGhost/Library/metadata/47/47df14ce4e3c6419ab2ff3080ef897b6 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/47/47df14ce4e3c6419ab2ff3080ef897b6.info b/EscapeTheGhost/Library/metadata/47/47df14ce4e3c6419ab2ff3080ef897b6.info
deleted file mode 100644
index 905f5be..0000000
Binary files a/EscapeTheGhost/Library/metadata/47/47df14ce4e3c6419ab2ff3080ef897b6.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/48/48986928cc2a449dbaecdd1654bc9bf6 b/EscapeTheGhost/Library/metadata/48/48986928cc2a449dbaecdd1654bc9bf6
deleted file mode 100644
index 69bf26f..0000000
Binary files a/EscapeTheGhost/Library/metadata/48/48986928cc2a449dbaecdd1654bc9bf6 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/48/48986928cc2a449dbaecdd1654bc9bf6.info b/EscapeTheGhost/Library/metadata/48/48986928cc2a449dbaecdd1654bc9bf6.info
deleted file mode 100644
index 6076edf..0000000
Binary files a/EscapeTheGhost/Library/metadata/48/48986928cc2a449dbaecdd1654bc9bf6.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/48/48b10b41f58d5b49717f376cda59eeb8 b/EscapeTheGhost/Library/metadata/48/48b10b41f58d5b49717f376cda59eeb8
deleted file mode 100644
index 0972919..0000000
Binary files a/EscapeTheGhost/Library/metadata/48/48b10b41f58d5b49717f376cda59eeb8 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/48/48b10b41f58d5b49717f376cda59eeb8.info b/EscapeTheGhost/Library/metadata/48/48b10b41f58d5b49717f376cda59eeb8.info
deleted file mode 100644
index 14b4280..0000000
Binary files a/EscapeTheGhost/Library/metadata/48/48b10b41f58d5b49717f376cda59eeb8.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/48/48d034c499ee4697af9dd6e327110249 b/EscapeTheGhost/Library/metadata/48/48d034c499ee4697af9dd6e327110249
deleted file mode 100644
index 1a53c9f..0000000
Binary files a/EscapeTheGhost/Library/metadata/48/48d034c499ee4697af9dd6e327110249 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/48/48d034c499ee4697af9dd6e327110249.info b/EscapeTheGhost/Library/metadata/48/48d034c499ee4697af9dd6e327110249.info
deleted file mode 100644
index f3c6a50..0000000
Binary files a/EscapeTheGhost/Library/metadata/48/48d034c499ee4697af9dd6e327110249.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/49/490fe93dbc954e3ba3651b7f55eaba70 b/EscapeTheGhost/Library/metadata/49/490fe93dbc954e3ba3651b7f55eaba70
deleted file mode 100644
index bb432bf..0000000
Binary files a/EscapeTheGhost/Library/metadata/49/490fe93dbc954e3ba3651b7f55eaba70 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/49/490fe93dbc954e3ba3651b7f55eaba70.info b/EscapeTheGhost/Library/metadata/49/490fe93dbc954e3ba3651b7f55eaba70.info
deleted file mode 100644
index eedccbd..0000000
Binary files a/EscapeTheGhost/Library/metadata/49/490fe93dbc954e3ba3651b7f55eaba70.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/49/49463c5d22bc0bf4fb122d1a88fc4226 b/EscapeTheGhost/Library/metadata/49/49463c5d22bc0bf4fb122d1a88fc4226
deleted file mode 100644
index 2a687d0..0000000
Binary files a/EscapeTheGhost/Library/metadata/49/49463c5d22bc0bf4fb122d1a88fc4226 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/49/49463c5d22bc0bf4fb122d1a88fc4226.info b/EscapeTheGhost/Library/metadata/49/49463c5d22bc0bf4fb122d1a88fc4226.info
deleted file mode 100644
index 60fef93..0000000
Binary files a/EscapeTheGhost/Library/metadata/49/49463c5d22bc0bf4fb122d1a88fc4226.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/49/49679f302ac6408697f6b9314a38985c b/EscapeTheGhost/Library/metadata/49/49679f302ac6408697f6b9314a38985c
deleted file mode 100644
index 9791ae4..0000000
Binary files a/EscapeTheGhost/Library/metadata/49/49679f302ac6408697f6b9314a38985c and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/49/49679f302ac6408697f6b9314a38985c.info b/EscapeTheGhost/Library/metadata/49/49679f302ac6408697f6b9314a38985c.info
deleted file mode 100644
index 1c1dbc3..0000000
Binary files a/EscapeTheGhost/Library/metadata/49/49679f302ac6408697f6b9314a38985c.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/4a/4a3ecb1425d14502837abea459cf2b70 b/EscapeTheGhost/Library/metadata/4a/4a3ecb1425d14502837abea459cf2b70
deleted file mode 100644
index e3d1219..0000000
Binary files a/EscapeTheGhost/Library/metadata/4a/4a3ecb1425d14502837abea459cf2b70 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/4a/4a3ecb1425d14502837abea459cf2b70.info b/EscapeTheGhost/Library/metadata/4a/4a3ecb1425d14502837abea459cf2b70.info
deleted file mode 100644
index 54adf87..0000000
Binary files a/EscapeTheGhost/Library/metadata/4a/4a3ecb1425d14502837abea459cf2b70.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/4a/4ae64f3f72004807a9f919f9c27af0db b/EscapeTheGhost/Library/metadata/4a/4ae64f3f72004807a9f919f9c27af0db
deleted file mode 100644
index 590698f..0000000
Binary files a/EscapeTheGhost/Library/metadata/4a/4ae64f3f72004807a9f919f9c27af0db and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/4a/4ae64f3f72004807a9f919f9c27af0db.info b/EscapeTheGhost/Library/metadata/4a/4ae64f3f72004807a9f919f9c27af0db.info
deleted file mode 100644
index 3a7b102..0000000
Binary files a/EscapeTheGhost/Library/metadata/4a/4ae64f3f72004807a9f919f9c27af0db.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/4b/4b3fa4bde7f1451a8218c03ee6a8ded8 b/EscapeTheGhost/Library/metadata/4b/4b3fa4bde7f1451a8218c03ee6a8ded8
deleted file mode 100644
index 8eb984f..0000000
Binary files a/EscapeTheGhost/Library/metadata/4b/4b3fa4bde7f1451a8218c03ee6a8ded8 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/4b/4b3fa4bde7f1451a8218c03ee6a8ded8.info b/EscapeTheGhost/Library/metadata/4b/4b3fa4bde7f1451a8218c03ee6a8ded8.info
deleted file mode 100644
index d419994..0000000
Binary files a/EscapeTheGhost/Library/metadata/4b/4b3fa4bde7f1451a8218c03ee6a8ded8.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/4b/4b518b37798c97b0f860962cbf615533 b/EscapeTheGhost/Library/metadata/4b/4b518b37798c97b0f860962cbf615533
deleted file mode 100644
index 570b8d2..0000000
Binary files a/EscapeTheGhost/Library/metadata/4b/4b518b37798c97b0f860962cbf615533 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/4b/4b518b37798c97b0f860962cbf615533.info b/EscapeTheGhost/Library/metadata/4b/4b518b37798c97b0f860962cbf615533.info
deleted file mode 100644
index fa8cee0..0000000
Binary files a/EscapeTheGhost/Library/metadata/4b/4b518b37798c97b0f860962cbf615533.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/4b/4ba2329b63d54f0187bcaa12486b1b0f b/EscapeTheGhost/Library/metadata/4b/4ba2329b63d54f0187bcaa12486b1b0f
deleted file mode 100644
index 140842e..0000000
Binary files a/EscapeTheGhost/Library/metadata/4b/4ba2329b63d54f0187bcaa12486b1b0f and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/4b/4ba2329b63d54f0187bcaa12486b1b0f.info b/EscapeTheGhost/Library/metadata/4b/4ba2329b63d54f0187bcaa12486b1b0f.info
deleted file mode 100644
index 20ea559..0000000
Binary files a/EscapeTheGhost/Library/metadata/4b/4ba2329b63d54f0187bcaa12486b1b0f.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/4c/4c0d87135c87149ffaf0566ccb537c67 b/EscapeTheGhost/Library/metadata/4c/4c0d87135c87149ffaf0566ccb537c67
deleted file mode 100644
index 76a81ab..0000000
Binary files a/EscapeTheGhost/Library/metadata/4c/4c0d87135c87149ffaf0566ccb537c67 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/4c/4c0d87135c87149ffaf0566ccb537c67.info b/EscapeTheGhost/Library/metadata/4c/4c0d87135c87149ffaf0566ccb537c67.info
deleted file mode 100644
index a2be898..0000000
Binary files a/EscapeTheGhost/Library/metadata/4c/4c0d87135c87149ffaf0566ccb537c67.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/4c/4c66545aacbe8438cb112f023a224de6 b/EscapeTheGhost/Library/metadata/4c/4c66545aacbe8438cb112f023a224de6
deleted file mode 100644
index 89068cb..0000000
Binary files a/EscapeTheGhost/Library/metadata/4c/4c66545aacbe8438cb112f023a224de6 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/4c/4c66545aacbe8438cb112f023a224de6.info b/EscapeTheGhost/Library/metadata/4c/4c66545aacbe8438cb112f023a224de6.info
deleted file mode 100644
index b5bf7d7..0000000
Binary files a/EscapeTheGhost/Library/metadata/4c/4c66545aacbe8438cb112f023a224de6.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/4c/4c6fe94acbb24417c988bab18cbd5209 b/EscapeTheGhost/Library/metadata/4c/4c6fe94acbb24417c988bab18cbd5209
deleted file mode 100644
index 80e283f..0000000
Binary files a/EscapeTheGhost/Library/metadata/4c/4c6fe94acbb24417c988bab18cbd5209 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/4c/4c6fe94acbb24417c988bab18cbd5209.info b/EscapeTheGhost/Library/metadata/4c/4c6fe94acbb24417c988bab18cbd5209.info
deleted file mode 100644
index f0c1fbb..0000000
Binary files a/EscapeTheGhost/Library/metadata/4c/4c6fe94acbb24417c988bab18cbd5209.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/4c/4cbc62eaec7a84466897a5f501429b74 b/EscapeTheGhost/Library/metadata/4c/4cbc62eaec7a84466897a5f501429b74
deleted file mode 100644
index a7678d6..0000000
Binary files a/EscapeTheGhost/Library/metadata/4c/4cbc62eaec7a84466897a5f501429b74 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/4c/4cbc62eaec7a84466897a5f501429b74.info b/EscapeTheGhost/Library/metadata/4c/4cbc62eaec7a84466897a5f501429b74.info
deleted file mode 100644
index 9b03f4d..0000000
Binary files a/EscapeTheGhost/Library/metadata/4c/4cbc62eaec7a84466897a5f501429b74.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/4d/4dfd3f5da88944ec6ac5977d676c30c6 b/EscapeTheGhost/Library/metadata/4d/4dfd3f5da88944ec6ac5977d676c30c6
deleted file mode 100644
index 9903349..0000000
Binary files a/EscapeTheGhost/Library/metadata/4d/4dfd3f5da88944ec6ac5977d676c30c6 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/4d/4dfd3f5da88944ec6ac5977d676c30c6.info b/EscapeTheGhost/Library/metadata/4d/4dfd3f5da88944ec6ac5977d676c30c6.info
deleted file mode 100644
index 2026b9b..0000000
Binary files a/EscapeTheGhost/Library/metadata/4d/4dfd3f5da88944ec6ac5977d676c30c6.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/4e/4e830e2dbc3315b4b97cd5311a54e4fe b/EscapeTheGhost/Library/metadata/4e/4e830e2dbc3315b4b97cd5311a54e4fe
deleted file mode 100644
index cf20817..0000000
Binary files a/EscapeTheGhost/Library/metadata/4e/4e830e2dbc3315b4b97cd5311a54e4fe and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/4e/4e830e2dbc3315b4b97cd5311a54e4fe.info b/EscapeTheGhost/Library/metadata/4e/4e830e2dbc3315b4b97cd5311a54e4fe.info
deleted file mode 100644
index 027f6c2..0000000
Binary files a/EscapeTheGhost/Library/metadata/4e/4e830e2dbc3315b4b97cd5311a54e4fe.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/4f/4f0ca6874aa74540bb3d4fe5a0f86bcc b/EscapeTheGhost/Library/metadata/4f/4f0ca6874aa74540bb3d4fe5a0f86bcc
deleted file mode 100644
index 8b05a3b..0000000
Binary files a/EscapeTheGhost/Library/metadata/4f/4f0ca6874aa74540bb3d4fe5a0f86bcc and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/4f/4f0ca6874aa74540bb3d4fe5a0f86bcc.info b/EscapeTheGhost/Library/metadata/4f/4f0ca6874aa74540bb3d4fe5a0f86bcc.info
deleted file mode 100644
index 8a396e4..0000000
Binary files a/EscapeTheGhost/Library/metadata/4f/4f0ca6874aa74540bb3d4fe5a0f86bcc.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/4f/4f0f9b9f3ed97ad2b9ba8f1a8e4666c2 b/EscapeTheGhost/Library/metadata/4f/4f0f9b9f3ed97ad2b9ba8f1a8e4666c2
deleted file mode 100644
index bbb9d3a..0000000
Binary files a/EscapeTheGhost/Library/metadata/4f/4f0f9b9f3ed97ad2b9ba8f1a8e4666c2 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/4f/4f0f9b9f3ed97ad2b9ba8f1a8e4666c2.info b/EscapeTheGhost/Library/metadata/4f/4f0f9b9f3ed97ad2b9ba8f1a8e4666c2.info
deleted file mode 100644
index db9dbb6..0000000
Binary files a/EscapeTheGhost/Library/metadata/4f/4f0f9b9f3ed97ad2b9ba8f1a8e4666c2.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/4f/4f234578336894dc081edf696f2ff5f2 b/EscapeTheGhost/Library/metadata/4f/4f234578336894dc081edf696f2ff5f2
deleted file mode 100644
index 6713057..0000000
Binary files a/EscapeTheGhost/Library/metadata/4f/4f234578336894dc081edf696f2ff5f2 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/4f/4f234578336894dc081edf696f2ff5f2.info b/EscapeTheGhost/Library/metadata/4f/4f234578336894dc081edf696f2ff5f2.info
deleted file mode 100644
index 15de5bc..0000000
Binary files a/EscapeTheGhost/Library/metadata/4f/4f234578336894dc081edf696f2ff5f2.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/4f/4f768b64e6c37495699fffe3007e4379 b/EscapeTheGhost/Library/metadata/4f/4f768b64e6c37495699fffe3007e4379
deleted file mode 100644
index 8edfb85..0000000
Binary files a/EscapeTheGhost/Library/metadata/4f/4f768b64e6c37495699fffe3007e4379 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/4f/4f768b64e6c37495699fffe3007e4379.info b/EscapeTheGhost/Library/metadata/4f/4f768b64e6c37495699fffe3007e4379.info
deleted file mode 100644
index 0c3f290..0000000
Binary files a/EscapeTheGhost/Library/metadata/4f/4f768b64e6c37495699fffe3007e4379.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/4f/4fc12201ddc4b4d45b9bdecdf7f00ea5 b/EscapeTheGhost/Library/metadata/4f/4fc12201ddc4b4d45b9bdecdf7f00ea5
deleted file mode 100644
index 1ee4426..0000000
Binary files a/EscapeTheGhost/Library/metadata/4f/4fc12201ddc4b4d45b9bdecdf7f00ea5 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/4f/4fc12201ddc4b4d45b9bdecdf7f00ea5.info b/EscapeTheGhost/Library/metadata/4f/4fc12201ddc4b4d45b9bdecdf7f00ea5.info
deleted file mode 100644
index fa1c297..0000000
Binary files a/EscapeTheGhost/Library/metadata/4f/4fc12201ddc4b4d45b9bdecdf7f00ea5.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/50/5075cb5aa3254b099b11b2840d7cd46e b/EscapeTheGhost/Library/metadata/50/5075cb5aa3254b099b11b2840d7cd46e
deleted file mode 100644
index 556f240..0000000
Binary files a/EscapeTheGhost/Library/metadata/50/5075cb5aa3254b099b11b2840d7cd46e and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/50/5075cb5aa3254b099b11b2840d7cd46e.info b/EscapeTheGhost/Library/metadata/50/5075cb5aa3254b099b11b2840d7cd46e.info
deleted file mode 100644
index 1d2c74d..0000000
Binary files a/EscapeTheGhost/Library/metadata/50/5075cb5aa3254b099b11b2840d7cd46e.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/51/510d1d319d2754ea4a47c6dd8c421ea0 b/EscapeTheGhost/Library/metadata/51/510d1d319d2754ea4a47c6dd8c421ea0
deleted file mode 100644
index 07009c4..0000000
Binary files a/EscapeTheGhost/Library/metadata/51/510d1d319d2754ea4a47c6dd8c421ea0 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/51/510d1d319d2754ea4a47c6dd8c421ea0.info b/EscapeTheGhost/Library/metadata/51/510d1d319d2754ea4a47c6dd8c421ea0.info
deleted file mode 100644
index 8eda38c..0000000
Binary files a/EscapeTheGhost/Library/metadata/51/510d1d319d2754ea4a47c6dd8c421ea0.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/51/5143f58107604835ab1a5efa2d8818fd b/EscapeTheGhost/Library/metadata/51/5143f58107604835ab1a5efa2d8818fd
deleted file mode 100644
index 8351423..0000000
Binary files a/EscapeTheGhost/Library/metadata/51/5143f58107604835ab1a5efa2d8818fd and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/51/5143f58107604835ab1a5efa2d8818fd.info b/EscapeTheGhost/Library/metadata/51/5143f58107604835ab1a5efa2d8818fd.info
deleted file mode 100644
index 49596b8..0000000
Binary files a/EscapeTheGhost/Library/metadata/51/5143f58107604835ab1a5efa2d8818fd.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/51/515638b803bef8599dbd6d5c8bdaa53e b/EscapeTheGhost/Library/metadata/51/515638b803bef8599dbd6d5c8bdaa53e
deleted file mode 100644
index 5883be4..0000000
Binary files a/EscapeTheGhost/Library/metadata/51/515638b803bef8599dbd6d5c8bdaa53e and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/51/515638b803bef8599dbd6d5c8bdaa53e.info b/EscapeTheGhost/Library/metadata/51/515638b803bef8599dbd6d5c8bdaa53e.info
deleted file mode 100644
index 7b12395..0000000
Binary files a/EscapeTheGhost/Library/metadata/51/515638b803bef8599dbd6d5c8bdaa53e.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/51/517af1b5b81b93b43b9745d58f017562 b/EscapeTheGhost/Library/metadata/51/517af1b5b81b93b43b9745d58f017562
deleted file mode 100644
index 2056c3e..0000000
Binary files a/EscapeTheGhost/Library/metadata/51/517af1b5b81b93b43b9745d58f017562 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/51/517af1b5b81b93b43b9745d58f017562.info b/EscapeTheGhost/Library/metadata/51/517af1b5b81b93b43b9745d58f017562.info
deleted file mode 100644
index b9a37c2..0000000
Binary files a/EscapeTheGhost/Library/metadata/51/517af1b5b81b93b43b9745d58f017562.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/53/5347e52e38be748d4b70d2961383b5df b/EscapeTheGhost/Library/metadata/53/5347e52e38be748d4b70d2961383b5df
deleted file mode 100644
index 8c88ac6..0000000
Binary files a/EscapeTheGhost/Library/metadata/53/5347e52e38be748d4b70d2961383b5df and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/53/5347e52e38be748d4b70d2961383b5df.info b/EscapeTheGhost/Library/metadata/53/5347e52e38be748d4b70d2961383b5df.info
deleted file mode 100644
index 6ec2aeb..0000000
Binary files a/EscapeTheGhost/Library/metadata/53/5347e52e38be748d4b70d2961383b5df.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/53/536c0048c80e8407084e29942e15685b b/EscapeTheGhost/Library/metadata/53/536c0048c80e8407084e29942e15685b
deleted file mode 100644
index b7aa790..0000000
Binary files a/EscapeTheGhost/Library/metadata/53/536c0048c80e8407084e29942e15685b and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/53/536c0048c80e8407084e29942e15685b.info b/EscapeTheGhost/Library/metadata/53/536c0048c80e8407084e29942e15685b.info
deleted file mode 100644
index ec57ca4..0000000
Binary files a/EscapeTheGhost/Library/metadata/53/536c0048c80e8407084e29942e15685b.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/53/53ebcfaa2e1e4e2dbc85882cd5a73fa1 b/EscapeTheGhost/Library/metadata/53/53ebcfaa2e1e4e2dbc85882cd5a73fa1
deleted file mode 100644
index 34021d3..0000000
Binary files a/EscapeTheGhost/Library/metadata/53/53ebcfaa2e1e4e2dbc85882cd5a73fa1 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/53/53ebcfaa2e1e4e2dbc85882cd5a73fa1.info b/EscapeTheGhost/Library/metadata/53/53ebcfaa2e1e4e2dbc85882cd5a73fa1.info
deleted file mode 100644
index 6b954b3..0000000
Binary files a/EscapeTheGhost/Library/metadata/53/53ebcfaa2e1e4e2dbc85882cd5a73fa1.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/54/5469ef0820152a4ae45d400fdc4626e4 b/EscapeTheGhost/Library/metadata/54/5469ef0820152a4ae45d400fdc4626e4
deleted file mode 100644
index 47eb897..0000000
Binary files a/EscapeTheGhost/Library/metadata/54/5469ef0820152a4ae45d400fdc4626e4 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/54/5469ef0820152a4ae45d400fdc4626e4.info b/EscapeTheGhost/Library/metadata/54/5469ef0820152a4ae45d400fdc4626e4.info
deleted file mode 100644
index 8922b1c..0000000
Binary files a/EscapeTheGhost/Library/metadata/54/5469ef0820152a4ae45d400fdc4626e4.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/54/54d21f6ece3b46479f0c328f8c6007e0 b/EscapeTheGhost/Library/metadata/54/54d21f6ece3b46479f0c328f8c6007e0
deleted file mode 100644
index 7c6d682..0000000
Binary files a/EscapeTheGhost/Library/metadata/54/54d21f6ece3b46479f0c328f8c6007e0 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/54/54d21f6ece3b46479f0c328f8c6007e0.info b/EscapeTheGhost/Library/metadata/54/54d21f6ece3b46479f0c328f8c6007e0.info
deleted file mode 100644
index 255db24..0000000
Binary files a/EscapeTheGhost/Library/metadata/54/54d21f6ece3b46479f0c328f8c6007e0.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/54/54e5fc61925bc4ca3b2c1e82dfb35eb5 b/EscapeTheGhost/Library/metadata/54/54e5fc61925bc4ca3b2c1e82dfb35eb5
deleted file mode 100644
index 2456f41..0000000
Binary files a/EscapeTheGhost/Library/metadata/54/54e5fc61925bc4ca3b2c1e82dfb35eb5 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/54/54e5fc61925bc4ca3b2c1e82dfb35eb5.info b/EscapeTheGhost/Library/metadata/54/54e5fc61925bc4ca3b2c1e82dfb35eb5.info
deleted file mode 100644
index b54ec5f..0000000
Binary files a/EscapeTheGhost/Library/metadata/54/54e5fc61925bc4ca3b2c1e82dfb35eb5.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/57/5782f9e9e6e0bb94bac99aeea24814fc b/EscapeTheGhost/Library/metadata/57/5782f9e9e6e0bb94bac99aeea24814fc
deleted file mode 100644
index a32741d..0000000
Binary files a/EscapeTheGhost/Library/metadata/57/5782f9e9e6e0bb94bac99aeea24814fc and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/57/5782f9e9e6e0bb94bac99aeea24814fc.info b/EscapeTheGhost/Library/metadata/57/5782f9e9e6e0bb94bac99aeea24814fc.info
deleted file mode 100644
index 2f38d58..0000000
Binary files a/EscapeTheGhost/Library/metadata/57/5782f9e9e6e0bb94bac99aeea24814fc.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/58/585b70cb75dd43efbfead809c30a1731 b/EscapeTheGhost/Library/metadata/58/585b70cb75dd43efbfead809c30a1731
deleted file mode 100644
index 387dbfc..0000000
Binary files a/EscapeTheGhost/Library/metadata/58/585b70cb75dd43efbfead809c30a1731 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/58/585b70cb75dd43efbfead809c30a1731.info b/EscapeTheGhost/Library/metadata/58/585b70cb75dd43efbfead809c30a1731.info
deleted file mode 100644
index 48fb0dd..0000000
Binary files a/EscapeTheGhost/Library/metadata/58/585b70cb75dd43efbfead809c30a1731.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/59/592f7288ed0df2c4b884e2cd9baac023 b/EscapeTheGhost/Library/metadata/59/592f7288ed0df2c4b884e2cd9baac023
deleted file mode 100644
index 0aaf3c9..0000000
Binary files a/EscapeTheGhost/Library/metadata/59/592f7288ed0df2c4b884e2cd9baac023 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/59/592f7288ed0df2c4b884e2cd9baac023.info b/EscapeTheGhost/Library/metadata/59/592f7288ed0df2c4b884e2cd9baac023.info
deleted file mode 100644
index ccbb38f..0000000
Binary files a/EscapeTheGhost/Library/metadata/59/592f7288ed0df2c4b884e2cd9baac023.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/59/5941c79cb78c34a0d9c677ece9784f15 b/EscapeTheGhost/Library/metadata/59/5941c79cb78c34a0d9c677ece9784f15
deleted file mode 100644
index 91d3e06..0000000
Binary files a/EscapeTheGhost/Library/metadata/59/5941c79cb78c34a0d9c677ece9784f15 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/59/5941c79cb78c34a0d9c677ece9784f15.info b/EscapeTheGhost/Library/metadata/59/5941c79cb78c34a0d9c677ece9784f15.info
deleted file mode 100644
index 0fc69e1..0000000
Binary files a/EscapeTheGhost/Library/metadata/59/5941c79cb78c34a0d9c677ece9784f15.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/5a/5afb9687033af4bca957216add3fe854 b/EscapeTheGhost/Library/metadata/5a/5afb9687033af4bca957216add3fe854
deleted file mode 100644
index 2033dc7..0000000
Binary files a/EscapeTheGhost/Library/metadata/5a/5afb9687033af4bca957216add3fe854 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/5a/5afb9687033af4bca957216add3fe854.info b/EscapeTheGhost/Library/metadata/5a/5afb9687033af4bca957216add3fe854.info
deleted file mode 100644
index 50ef7c3..0000000
Binary files a/EscapeTheGhost/Library/metadata/5a/5afb9687033af4bca957216add3fe854.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/5b/5bef055df2ab74b9cb16639963c14f6b b/EscapeTheGhost/Library/metadata/5b/5bef055df2ab74b9cb16639963c14f6b
deleted file mode 100644
index 506b2fa..0000000
Binary files a/EscapeTheGhost/Library/metadata/5b/5bef055df2ab74b9cb16639963c14f6b and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/5b/5bef055df2ab74b9cb16639963c14f6b.info b/EscapeTheGhost/Library/metadata/5b/5bef055df2ab74b9cb16639963c14f6b.info
deleted file mode 100644
index 66cd605..0000000
Binary files a/EscapeTheGhost/Library/metadata/5b/5bef055df2ab74b9cb16639963c14f6b.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/5c/5c38c5679d98faa4ae7df9fae0a8226e b/EscapeTheGhost/Library/metadata/5c/5c38c5679d98faa4ae7df9fae0a8226e
deleted file mode 100644
index 0b8af06..0000000
Binary files a/EscapeTheGhost/Library/metadata/5c/5c38c5679d98faa4ae7df9fae0a8226e and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/5c/5c38c5679d98faa4ae7df9fae0a8226e.info b/EscapeTheGhost/Library/metadata/5c/5c38c5679d98faa4ae7df9fae0a8226e.info
deleted file mode 100644
index d22abd9..0000000
Binary files a/EscapeTheGhost/Library/metadata/5c/5c38c5679d98faa4ae7df9fae0a8226e.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/5c/5c4f28f6254cd4e9fb5b1d7b51cb348c b/EscapeTheGhost/Library/metadata/5c/5c4f28f6254cd4e9fb5b1d7b51cb348c
deleted file mode 100644
index feee680..0000000
Binary files a/EscapeTheGhost/Library/metadata/5c/5c4f28f6254cd4e9fb5b1d7b51cb348c and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/5c/5c4f28f6254cd4e9fb5b1d7b51cb348c.info b/EscapeTheGhost/Library/metadata/5c/5c4f28f6254cd4e9fb5b1d7b51cb348c.info
deleted file mode 100644
index ffea462..0000000
Binary files a/EscapeTheGhost/Library/metadata/5c/5c4f28f6254cd4e9fb5b1d7b51cb348c.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/5e/5e57a6c62c1ec47d0bceb70495845164 b/EscapeTheGhost/Library/metadata/5e/5e57a6c62c1ec47d0bceb70495845164
deleted file mode 100644
index 5b855ad..0000000
Binary files a/EscapeTheGhost/Library/metadata/5e/5e57a6c62c1ec47d0bceb70495845164 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/5e/5e57a6c62c1ec47d0bceb70495845164.info b/EscapeTheGhost/Library/metadata/5e/5e57a6c62c1ec47d0bceb70495845164.info
deleted file mode 100644
index 15fb80e..0000000
Binary files a/EscapeTheGhost/Library/metadata/5e/5e57a6c62c1ec47d0bceb70495845164.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/5e/5e7c9ab97e5884e4eaa5967e9024f39d b/EscapeTheGhost/Library/metadata/5e/5e7c9ab97e5884e4eaa5967e9024f39d
deleted file mode 100644
index 6218c26..0000000
Binary files a/EscapeTheGhost/Library/metadata/5e/5e7c9ab97e5884e4eaa5967e9024f39d and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/5e/5e7c9ab97e5884e4eaa5967e9024f39d.info b/EscapeTheGhost/Library/metadata/5e/5e7c9ab97e5884e4eaa5967e9024f39d.info
deleted file mode 100644
index 7232e27..0000000
Binary files a/EscapeTheGhost/Library/metadata/5e/5e7c9ab97e5884e4eaa5967e9024f39d.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/5e/5ec95f4d5b2d1f14e9ff8682562553f9 b/EscapeTheGhost/Library/metadata/5e/5ec95f4d5b2d1f14e9ff8682562553f9
deleted file mode 100644
index bf0d7f0..0000000
Binary files a/EscapeTheGhost/Library/metadata/5e/5ec95f4d5b2d1f14e9ff8682562553f9 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/5e/5ec95f4d5b2d1f14e9ff8682562553f9.info b/EscapeTheGhost/Library/metadata/5e/5ec95f4d5b2d1f14e9ff8682562553f9.info
deleted file mode 100644
index 3dbe26e..0000000
Binary files a/EscapeTheGhost/Library/metadata/5e/5ec95f4d5b2d1f14e9ff8682562553f9.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/5f/5f32cd94baa94578a686d4b9d6b660f7 b/EscapeTheGhost/Library/metadata/5f/5f32cd94baa94578a686d4b9d6b660f7
deleted file mode 100644
index 2443153..0000000
Binary files a/EscapeTheGhost/Library/metadata/5f/5f32cd94baa94578a686d4b9d6b660f7 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/5f/5f32cd94baa94578a686d4b9d6b660f7.info b/EscapeTheGhost/Library/metadata/5f/5f32cd94baa94578a686d4b9d6b660f7.info
deleted file mode 100644
index a744203..0000000
Binary files a/EscapeTheGhost/Library/metadata/5f/5f32cd94baa94578a686d4b9d6b660f7.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/5f/5fc988a1d5b04aee9a5222502b201a45 b/EscapeTheGhost/Library/metadata/5f/5fc988a1d5b04aee9a5222502b201a45
deleted file mode 100644
index 91cca9e..0000000
Binary files a/EscapeTheGhost/Library/metadata/5f/5fc988a1d5b04aee9a5222502b201a45 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/5f/5fc988a1d5b04aee9a5222502b201a45.info b/EscapeTheGhost/Library/metadata/5f/5fc988a1d5b04aee9a5222502b201a45.info
deleted file mode 100644
index 1f0b4ef..0000000
Binary files a/EscapeTheGhost/Library/metadata/5f/5fc988a1d5b04aee9a5222502b201a45.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/60/6055be8ebefd69e48b49212b09b47b2f b/EscapeTheGhost/Library/metadata/60/6055be8ebefd69e48b49212b09b47b2f
deleted file mode 100644
index ccde121..0000000
Binary files a/EscapeTheGhost/Library/metadata/60/6055be8ebefd69e48b49212b09b47b2f and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/60/6055be8ebefd69e48b49212b09b47b2f.info b/EscapeTheGhost/Library/metadata/60/6055be8ebefd69e48b49212b09b47b2f.info
deleted file mode 100644
index 47f9d6c..0000000
Binary files a/EscapeTheGhost/Library/metadata/60/6055be8ebefd69e48b49212b09b47b2f.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/61/61d72cb49da3040d5ade3edfd6eccfc1 b/EscapeTheGhost/Library/metadata/61/61d72cb49da3040d5ade3edfd6eccfc1
deleted file mode 100644
index 289b791..0000000
Binary files a/EscapeTheGhost/Library/metadata/61/61d72cb49da3040d5ade3edfd6eccfc1 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/61/61d72cb49da3040d5ade3edfd6eccfc1.info b/EscapeTheGhost/Library/metadata/61/61d72cb49da3040d5ade3edfd6eccfc1.info
deleted file mode 100644
index 4f6789b..0000000
Binary files a/EscapeTheGhost/Library/metadata/61/61d72cb49da3040d5ade3edfd6eccfc1.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/62/62772aad98ed04f0d955b7d20de61f7f b/EscapeTheGhost/Library/metadata/62/62772aad98ed04f0d955b7d20de61f7f
deleted file mode 100644
index a753aa4..0000000
Binary files a/EscapeTheGhost/Library/metadata/62/62772aad98ed04f0d955b7d20de61f7f and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/62/62772aad98ed04f0d955b7d20de61f7f.info b/EscapeTheGhost/Library/metadata/62/62772aad98ed04f0d955b7d20de61f7f.info
deleted file mode 100644
index 5fa5483..0000000
Binary files a/EscapeTheGhost/Library/metadata/62/62772aad98ed04f0d955b7d20de61f7f.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/62/6277a751c6c9f46359fc7004b3ee12f0 b/EscapeTheGhost/Library/metadata/62/6277a751c6c9f46359fc7004b3ee12f0
deleted file mode 100644
index 923430f..0000000
Binary files a/EscapeTheGhost/Library/metadata/62/6277a751c6c9f46359fc7004b3ee12f0 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/62/6277a751c6c9f46359fc7004b3ee12f0.info b/EscapeTheGhost/Library/metadata/62/6277a751c6c9f46359fc7004b3ee12f0.info
deleted file mode 100644
index cac0faf..0000000
Binary files a/EscapeTheGhost/Library/metadata/62/6277a751c6c9f46359fc7004b3ee12f0.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/62/62a7573e463b4f68b578fcba3a94110c b/EscapeTheGhost/Library/metadata/62/62a7573e463b4f68b578fcba3a94110c
deleted file mode 100644
index d414d0e..0000000
Binary files a/EscapeTheGhost/Library/metadata/62/62a7573e463b4f68b578fcba3a94110c and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/62/62a7573e463b4f68b578fcba3a94110c.info b/EscapeTheGhost/Library/metadata/62/62a7573e463b4f68b578fcba3a94110c.info
deleted file mode 100644
index ec4c841..0000000
Binary files a/EscapeTheGhost/Library/metadata/62/62a7573e463b4f68b578fcba3a94110c.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/62/62e9e2c15c7c04d3195c136b99a5e4aa b/EscapeTheGhost/Library/metadata/62/62e9e2c15c7c04d3195c136b99a5e4aa
deleted file mode 100644
index 6cb18f2..0000000
Binary files a/EscapeTheGhost/Library/metadata/62/62e9e2c15c7c04d3195c136b99a5e4aa and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/62/62e9e2c15c7c04d3195c136b99a5e4aa.info b/EscapeTheGhost/Library/metadata/62/62e9e2c15c7c04d3195c136b99a5e4aa.info
deleted file mode 100644
index b3f0b2f..0000000
Binary files a/EscapeTheGhost/Library/metadata/62/62e9e2c15c7c04d3195c136b99a5e4aa.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/63/63031ac4293944719946e077c75b255a b/EscapeTheGhost/Library/metadata/63/63031ac4293944719946e077c75b255a
deleted file mode 100644
index dcacee1..0000000
Binary files a/EscapeTheGhost/Library/metadata/63/63031ac4293944719946e077c75b255a and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/63/63031ac4293944719946e077c75b255a.info b/EscapeTheGhost/Library/metadata/63/63031ac4293944719946e077c75b255a.info
deleted file mode 100644
index 8650334..0000000
Binary files a/EscapeTheGhost/Library/metadata/63/63031ac4293944719946e077c75b255a.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/63/6366ee97f6b541449155028b9487355a b/EscapeTheGhost/Library/metadata/63/6366ee97f6b541449155028b9487355a
deleted file mode 100644
index 84624d5..0000000
Binary files a/EscapeTheGhost/Library/metadata/63/6366ee97f6b541449155028b9487355a and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/63/6366ee97f6b541449155028b9487355a.info b/EscapeTheGhost/Library/metadata/63/6366ee97f6b541449155028b9487355a.info
deleted file mode 100644
index da01b50..0000000
Binary files a/EscapeTheGhost/Library/metadata/63/6366ee97f6b541449155028b9487355a.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/64/64b9fad609434c489c32b1cdf2004a1c b/EscapeTheGhost/Library/metadata/64/64b9fad609434c489c32b1cdf2004a1c
deleted file mode 100644
index 5563e0d..0000000
Binary files a/EscapeTheGhost/Library/metadata/64/64b9fad609434c489c32b1cdf2004a1c and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/64/64b9fad609434c489c32b1cdf2004a1c.info b/EscapeTheGhost/Library/metadata/64/64b9fad609434c489c32b1cdf2004a1c.info
deleted file mode 100644
index ba8126f..0000000
Binary files a/EscapeTheGhost/Library/metadata/64/64b9fad609434c489c32b1cdf2004a1c.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/65/650ea1d167b834d0f86d94e1e8c3b80f b/EscapeTheGhost/Library/metadata/65/650ea1d167b834d0f86d94e1e8c3b80f
deleted file mode 100644
index 47f4898..0000000
Binary files a/EscapeTheGhost/Library/metadata/65/650ea1d167b834d0f86d94e1e8c3b80f and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/65/650ea1d167b834d0f86d94e1e8c3b80f.info b/EscapeTheGhost/Library/metadata/65/650ea1d167b834d0f86d94e1e8c3b80f.info
deleted file mode 100644
index c20e502..0000000
Binary files a/EscapeTheGhost/Library/metadata/65/650ea1d167b834d0f86d94e1e8c3b80f.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/65/6546d7765b4165b40850b3667f981c26 b/EscapeTheGhost/Library/metadata/65/6546d7765b4165b40850b3667f981c26
deleted file mode 100644
index ffd78e3..0000000
Binary files a/EscapeTheGhost/Library/metadata/65/6546d7765b4165b40850b3667f981c26 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/65/6546d7765b4165b40850b3667f981c26.info b/EscapeTheGhost/Library/metadata/65/6546d7765b4165b40850b3667f981c26.info
deleted file mode 100644
index fa49ce1..0000000
Binary files a/EscapeTheGhost/Library/metadata/65/6546d7765b4165b40850b3667f981c26.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/65/656001254ef2d4d9cb59d524be0e8576 b/EscapeTheGhost/Library/metadata/65/656001254ef2d4d9cb59d524be0e8576
deleted file mode 100644
index 796a56d..0000000
Binary files a/EscapeTheGhost/Library/metadata/65/656001254ef2d4d9cb59d524be0e8576 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/65/656001254ef2d4d9cb59d524be0e8576.info b/EscapeTheGhost/Library/metadata/65/656001254ef2d4d9cb59d524be0e8576.info
deleted file mode 100644
index ebea927..0000000
Binary files a/EscapeTheGhost/Library/metadata/65/656001254ef2d4d9cb59d524be0e8576.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/65/656e461844099ae43a609ff6109b0877 b/EscapeTheGhost/Library/metadata/65/656e461844099ae43a609ff6109b0877
deleted file mode 100644
index 85ab359..0000000
Binary files a/EscapeTheGhost/Library/metadata/65/656e461844099ae43a609ff6109b0877 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/65/656e461844099ae43a609ff6109b0877.info b/EscapeTheGhost/Library/metadata/65/656e461844099ae43a609ff6109b0877.info
deleted file mode 100644
index 858661c..0000000
Binary files a/EscapeTheGhost/Library/metadata/65/656e461844099ae43a609ff6109b0877.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/65/658c1fb149e7498aa072b0c0f3bf13f0 b/EscapeTheGhost/Library/metadata/65/658c1fb149e7498aa072b0c0f3bf13f0
deleted file mode 100644
index 4e7a16e..0000000
Binary files a/EscapeTheGhost/Library/metadata/65/658c1fb149e7498aa072b0c0f3bf13f0 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/65/658c1fb149e7498aa072b0c0f3bf13f0.info b/EscapeTheGhost/Library/metadata/65/658c1fb149e7498aa072b0c0f3bf13f0.info
deleted file mode 100644
index fd8d334..0000000
Binary files a/EscapeTheGhost/Library/metadata/65/658c1fb149e7498aa072b0c0f3bf13f0.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/65/6597c6ea86d36477081342001145d8d9 b/EscapeTheGhost/Library/metadata/65/6597c6ea86d36477081342001145d8d9
deleted file mode 100644
index 2e8bf4d..0000000
Binary files a/EscapeTheGhost/Library/metadata/65/6597c6ea86d36477081342001145d8d9 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/65/6597c6ea86d36477081342001145d8d9.info b/EscapeTheGhost/Library/metadata/65/6597c6ea86d36477081342001145d8d9.info
deleted file mode 100644
index 67a6103..0000000
Binary files a/EscapeTheGhost/Library/metadata/65/6597c6ea86d36477081342001145d8d9.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/65/65b084fc444f7446386fad12317ea917 b/EscapeTheGhost/Library/metadata/65/65b084fc444f7446386fad12317ea917
deleted file mode 100644
index 12e2b85..0000000
Binary files a/EscapeTheGhost/Library/metadata/65/65b084fc444f7446386fad12317ea917 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/65/65b084fc444f7446386fad12317ea917.info b/EscapeTheGhost/Library/metadata/65/65b084fc444f7446386fad12317ea917.info
deleted file mode 100644
index 5d3c926..0000000
Binary files a/EscapeTheGhost/Library/metadata/65/65b084fc444f7446386fad12317ea917.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/65/65d58d50c3db54f979b1ffae3777d74b b/EscapeTheGhost/Library/metadata/65/65d58d50c3db54f979b1ffae3777d74b
deleted file mode 100644
index ed1139c..0000000
Binary files a/EscapeTheGhost/Library/metadata/65/65d58d50c3db54f979b1ffae3777d74b and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/65/65d58d50c3db54f979b1ffae3777d74b.info b/EscapeTheGhost/Library/metadata/65/65d58d50c3db54f979b1ffae3777d74b.info
deleted file mode 100644
index b408571..0000000
Binary files a/EscapeTheGhost/Library/metadata/65/65d58d50c3db54f979b1ffae3777d74b.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/66/66083b7f6dc2e433eae33f3244b2ce88 b/EscapeTheGhost/Library/metadata/66/66083b7f6dc2e433eae33f3244b2ce88
deleted file mode 100644
index 31e8de9..0000000
Binary files a/EscapeTheGhost/Library/metadata/66/66083b7f6dc2e433eae33f3244b2ce88 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/66/66083b7f6dc2e433eae33f3244b2ce88.info b/EscapeTheGhost/Library/metadata/66/66083b7f6dc2e433eae33f3244b2ce88.info
deleted file mode 100644
index c507b6b..0000000
Binary files a/EscapeTheGhost/Library/metadata/66/66083b7f6dc2e433eae33f3244b2ce88.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/66/66281976896b84291a7c933800665eee b/EscapeTheGhost/Library/metadata/66/66281976896b84291a7c933800665eee
deleted file mode 100644
index 7ff4093..0000000
Binary files a/EscapeTheGhost/Library/metadata/66/66281976896b84291a7c933800665eee and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/66/66281976896b84291a7c933800665eee.info b/EscapeTheGhost/Library/metadata/66/66281976896b84291a7c933800665eee.info
deleted file mode 100644
index 39c2093..0000000
Binary files a/EscapeTheGhost/Library/metadata/66/66281976896b84291a7c933800665eee.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/66/669717f3193a457b9bad9665ebcae836 b/EscapeTheGhost/Library/metadata/66/669717f3193a457b9bad9665ebcae836
deleted file mode 100644
index a6249a4..0000000
Binary files a/EscapeTheGhost/Library/metadata/66/669717f3193a457b9bad9665ebcae836 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/66/669717f3193a457b9bad9665ebcae836.info b/EscapeTheGhost/Library/metadata/66/669717f3193a457b9bad9665ebcae836.info
deleted file mode 100644
index ed46092..0000000
Binary files a/EscapeTheGhost/Library/metadata/66/669717f3193a457b9bad9665ebcae836.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/68/68eedd4e5b33b37429c02c4add0036fe b/EscapeTheGhost/Library/metadata/68/68eedd4e5b33b37429c02c4add0036fe
deleted file mode 100644
index 34b706d..0000000
Binary files a/EscapeTheGhost/Library/metadata/68/68eedd4e5b33b37429c02c4add0036fe and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/68/68eedd4e5b33b37429c02c4add0036fe.info b/EscapeTheGhost/Library/metadata/68/68eedd4e5b33b37429c02c4add0036fe.info
deleted file mode 100644
index 9280ce1..0000000
Binary files a/EscapeTheGhost/Library/metadata/68/68eedd4e5b33b37429c02c4add0036fe.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/69/691475c57a824010be0c6f474caeb7e1 b/EscapeTheGhost/Library/metadata/69/691475c57a824010be0c6f474caeb7e1
deleted file mode 100644
index 55a8544..0000000
Binary files a/EscapeTheGhost/Library/metadata/69/691475c57a824010be0c6f474caeb7e1 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/69/691475c57a824010be0c6f474caeb7e1.info b/EscapeTheGhost/Library/metadata/69/691475c57a824010be0c6f474caeb7e1.info
deleted file mode 100644
index c6b4043..0000000
Binary files a/EscapeTheGhost/Library/metadata/69/691475c57a824010be0c6f474caeb7e1.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/69/691db8cb70c4426a8ae718465c21345f b/EscapeTheGhost/Library/metadata/69/691db8cb70c4426a8ae718465c21345f
deleted file mode 100644
index 664086f..0000000
Binary files a/EscapeTheGhost/Library/metadata/69/691db8cb70c4426a8ae718465c21345f and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/69/691db8cb70c4426a8ae718465c21345f.info b/EscapeTheGhost/Library/metadata/69/691db8cb70c4426a8ae718465c21345f.info
deleted file mode 100644
index c5ba710..0000000
Binary files a/EscapeTheGhost/Library/metadata/69/691db8cb70c4426a8ae718465c21345f.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/69/69a8de809eca44cb59a09977c52740ac b/EscapeTheGhost/Library/metadata/69/69a8de809eca44cb59a09977c52740ac
deleted file mode 100644
index 4a8cf16..0000000
Binary files a/EscapeTheGhost/Library/metadata/69/69a8de809eca44cb59a09977c52740ac and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/69/69a8de809eca44cb59a09977c52740ac.info b/EscapeTheGhost/Library/metadata/69/69a8de809eca44cb59a09977c52740ac.info
deleted file mode 100644
index bc08eb7..0000000
Binary files a/EscapeTheGhost/Library/metadata/69/69a8de809eca44cb59a09977c52740ac.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/69/69f78ddba7f3142308e5b0998c570ca8 b/EscapeTheGhost/Library/metadata/69/69f78ddba7f3142308e5b0998c570ca8
deleted file mode 100644
index 56b6e20..0000000
Binary files a/EscapeTheGhost/Library/metadata/69/69f78ddba7f3142308e5b0998c570ca8 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/69/69f78ddba7f3142308e5b0998c570ca8.info b/EscapeTheGhost/Library/metadata/69/69f78ddba7f3142308e5b0998c570ca8.info
deleted file mode 100644
index 2e3b089..0000000
Binary files a/EscapeTheGhost/Library/metadata/69/69f78ddba7f3142308e5b0998c570ca8.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/6a/6a10b2909283487f913b00d94cd3faf5 b/EscapeTheGhost/Library/metadata/6a/6a10b2909283487f913b00d94cd3faf5
deleted file mode 100644
index cf42102..0000000
Binary files a/EscapeTheGhost/Library/metadata/6a/6a10b2909283487f913b00d94cd3faf5 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/6a/6a10b2909283487f913b00d94cd3faf5.info b/EscapeTheGhost/Library/metadata/6a/6a10b2909283487f913b00d94cd3faf5.info
deleted file mode 100644
index bfed484..0000000
Binary files a/EscapeTheGhost/Library/metadata/6a/6a10b2909283487f913b00d94cd3faf5.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/6a/6a2705af0cf7a418a94cfada8caccae7 b/EscapeTheGhost/Library/metadata/6a/6a2705af0cf7a418a94cfada8caccae7
deleted file mode 100644
index 912d205..0000000
Binary files a/EscapeTheGhost/Library/metadata/6a/6a2705af0cf7a418a94cfada8caccae7 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/6a/6a2705af0cf7a418a94cfada8caccae7.info b/EscapeTheGhost/Library/metadata/6a/6a2705af0cf7a418a94cfada8caccae7.info
deleted file mode 100644
index c7cc843..0000000
Binary files a/EscapeTheGhost/Library/metadata/6a/6a2705af0cf7a418a94cfada8caccae7.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/6a/6ace62d30f494c948b71d5594afce11d b/EscapeTheGhost/Library/metadata/6a/6ace62d30f494c948b71d5594afce11d
deleted file mode 100644
index 458e9f8..0000000
Binary files a/EscapeTheGhost/Library/metadata/6a/6ace62d30f494c948b71d5594afce11d and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/6a/6ace62d30f494c948b71d5594afce11d.info b/EscapeTheGhost/Library/metadata/6a/6ace62d30f494c948b71d5594afce11d.info
deleted file mode 100644
index 0098171..0000000
Binary files a/EscapeTheGhost/Library/metadata/6a/6ace62d30f494c948b71d5594afce11d.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/6a/6afb166a156df2d20433d981f4bb2832 b/EscapeTheGhost/Library/metadata/6a/6afb166a156df2d20433d981f4bb2832
deleted file mode 100644
index 61f2d50..0000000
Binary files a/EscapeTheGhost/Library/metadata/6a/6afb166a156df2d20433d981f4bb2832 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/6a/6afb166a156df2d20433d981f4bb2832.info b/EscapeTheGhost/Library/metadata/6a/6afb166a156df2d20433d981f4bb2832.info
deleted file mode 100644
index 22facec..0000000
Binary files a/EscapeTheGhost/Library/metadata/6a/6afb166a156df2d20433d981f4bb2832.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/6b/6b01141ed8f74d198965c86f25eb7040 b/EscapeTheGhost/Library/metadata/6b/6b01141ed8f74d198965c86f25eb7040
deleted file mode 100644
index 484ce23..0000000
Binary files a/EscapeTheGhost/Library/metadata/6b/6b01141ed8f74d198965c86f25eb7040 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/6b/6b01141ed8f74d198965c86f25eb7040.info b/EscapeTheGhost/Library/metadata/6b/6b01141ed8f74d198965c86f25eb7040.info
deleted file mode 100644
index fc1720d..0000000
Binary files a/EscapeTheGhost/Library/metadata/6b/6b01141ed8f74d198965c86f25eb7040.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/6d/6d437b997e074079b4b2f6e395394f4b b/EscapeTheGhost/Library/metadata/6d/6d437b997e074079b4b2f6e395394f4b
deleted file mode 100644
index d9c8789..0000000
Binary files a/EscapeTheGhost/Library/metadata/6d/6d437b997e074079b4b2f6e395394f4b and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/6d/6d437b997e074079b4b2f6e395394f4b.info b/EscapeTheGhost/Library/metadata/6d/6d437b997e074079b4b2f6e395394f4b.info
deleted file mode 100644
index 5b028e1..0000000
Binary files a/EscapeTheGhost/Library/metadata/6d/6d437b997e074079b4b2f6e395394f4b.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/6d/6d56244f8c39a851975d3c0bd432c66f b/EscapeTheGhost/Library/metadata/6d/6d56244f8c39a851975d3c0bd432c66f
deleted file mode 100644
index 1acdb6a..0000000
Binary files a/EscapeTheGhost/Library/metadata/6d/6d56244f8c39a851975d3c0bd432c66f and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/6d/6d56244f8c39a851975d3c0bd432c66f.info b/EscapeTheGhost/Library/metadata/6d/6d56244f8c39a851975d3c0bd432c66f.info
deleted file mode 100644
index f43963a..0000000
Binary files a/EscapeTheGhost/Library/metadata/6d/6d56244f8c39a851975d3c0bd432c66f.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/6d/6d6f82a762acb4417b895d3babc790f9 b/EscapeTheGhost/Library/metadata/6d/6d6f82a762acb4417b895d3babc790f9
deleted file mode 100644
index 5f02e7a..0000000
Binary files a/EscapeTheGhost/Library/metadata/6d/6d6f82a762acb4417b895d3babc790f9 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/6d/6d6f82a762acb4417b895d3babc790f9.info b/EscapeTheGhost/Library/metadata/6d/6d6f82a762acb4417b895d3babc790f9.info
deleted file mode 100644
index cad8873..0000000
Binary files a/EscapeTheGhost/Library/metadata/6d/6d6f82a762acb4417b895d3babc790f9.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/6d/6d9df2bc198c417db00037803568139c b/EscapeTheGhost/Library/metadata/6d/6d9df2bc198c417db00037803568139c
deleted file mode 100644
index 2054240..0000000
Binary files a/EscapeTheGhost/Library/metadata/6d/6d9df2bc198c417db00037803568139c and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/6d/6d9df2bc198c417db00037803568139c.info b/EscapeTheGhost/Library/metadata/6d/6d9df2bc198c417db00037803568139c.info
deleted file mode 100644
index 860fb6c..0000000
Binary files a/EscapeTheGhost/Library/metadata/6d/6d9df2bc198c417db00037803568139c.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/6d/6dbcf248c987476181a37f01a1814975 b/EscapeTheGhost/Library/metadata/6d/6dbcf248c987476181a37f01a1814975
deleted file mode 100644
index 058ab47..0000000
Binary files a/EscapeTheGhost/Library/metadata/6d/6dbcf248c987476181a37f01a1814975 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/6d/6dbcf248c987476181a37f01a1814975.info b/EscapeTheGhost/Library/metadata/6d/6dbcf248c987476181a37f01a1814975.info
deleted file mode 100644
index c65c715..0000000
Binary files a/EscapeTheGhost/Library/metadata/6d/6dbcf248c987476181a37f01a1814975.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/6e/6e1c8b97ec8aa0464e92506ffe099558 b/EscapeTheGhost/Library/metadata/6e/6e1c8b97ec8aa0464e92506ffe099558
deleted file mode 100644
index 481bcc3..0000000
Binary files a/EscapeTheGhost/Library/metadata/6e/6e1c8b97ec8aa0464e92506ffe099558 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/6e/6e1c8b97ec8aa0464e92506ffe099558.info b/EscapeTheGhost/Library/metadata/6e/6e1c8b97ec8aa0464e92506ffe099558.info
deleted file mode 100644
index 9ecca9e..0000000
Binary files a/EscapeTheGhost/Library/metadata/6e/6e1c8b97ec8aa0464e92506ffe099558.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/6e/6e2d432c5ea14e75aa3a79f90f704442 b/EscapeTheGhost/Library/metadata/6e/6e2d432c5ea14e75aa3a79f90f704442
deleted file mode 100644
index 2428759..0000000
Binary files a/EscapeTheGhost/Library/metadata/6e/6e2d432c5ea14e75aa3a79f90f704442 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/6e/6e2d432c5ea14e75aa3a79f90f704442.info b/EscapeTheGhost/Library/metadata/6e/6e2d432c5ea14e75aa3a79f90f704442.info
deleted file mode 100644
index 9a76bf0..0000000
Binary files a/EscapeTheGhost/Library/metadata/6e/6e2d432c5ea14e75aa3a79f90f704442.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/6e/6e7c8cfeedae74eb3a562055e069e441 b/EscapeTheGhost/Library/metadata/6e/6e7c8cfeedae74eb3a562055e069e441
deleted file mode 100644
index 350d4e5..0000000
Binary files a/EscapeTheGhost/Library/metadata/6e/6e7c8cfeedae74eb3a562055e069e441 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/6e/6e7c8cfeedae74eb3a562055e069e441.info b/EscapeTheGhost/Library/metadata/6e/6e7c8cfeedae74eb3a562055e069e441.info
deleted file mode 100644
index a280853..0000000
Binary files a/EscapeTheGhost/Library/metadata/6e/6e7c8cfeedae74eb3a562055e069e441.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/6f/6f1c7ebc8ac78cb951be24c238cbd3ba b/EscapeTheGhost/Library/metadata/6f/6f1c7ebc8ac78cb951be24c238cbd3ba
deleted file mode 100644
index 2feb854..0000000
Binary files a/EscapeTheGhost/Library/metadata/6f/6f1c7ebc8ac78cb951be24c238cbd3ba and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/6f/6f1c7ebc8ac78cb951be24c238cbd3ba.info b/EscapeTheGhost/Library/metadata/6f/6f1c7ebc8ac78cb951be24c238cbd3ba.info
deleted file mode 100644
index bf38c74..0000000
Binary files a/EscapeTheGhost/Library/metadata/6f/6f1c7ebc8ac78cb951be24c238cbd3ba.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/6f/6fdea2af3daa40fe8f88e5e9cfc17abb b/EscapeTheGhost/Library/metadata/6f/6fdea2af3daa40fe8f88e5e9cfc17abb
deleted file mode 100644
index d94c94e..0000000
Binary files a/EscapeTheGhost/Library/metadata/6f/6fdea2af3daa40fe8f88e5e9cfc17abb and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/6f/6fdea2af3daa40fe8f88e5e9cfc17abb.info b/EscapeTheGhost/Library/metadata/6f/6fdea2af3daa40fe8f88e5e9cfc17abb.info
deleted file mode 100644
index 23633e6..0000000
Binary files a/EscapeTheGhost/Library/metadata/6f/6fdea2af3daa40fe8f88e5e9cfc17abb.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/6f/6fe576b47d8b47688ec5d02bccd15cf9 b/EscapeTheGhost/Library/metadata/6f/6fe576b47d8b47688ec5d02bccd15cf9
deleted file mode 100644
index 920ac02..0000000
Binary files a/EscapeTheGhost/Library/metadata/6f/6fe576b47d8b47688ec5d02bccd15cf9 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/6f/6fe576b47d8b47688ec5d02bccd15cf9.info b/EscapeTheGhost/Library/metadata/6f/6fe576b47d8b47688ec5d02bccd15cf9.info
deleted file mode 100644
index 96ee7fd..0000000
Binary files a/EscapeTheGhost/Library/metadata/6f/6fe576b47d8b47688ec5d02bccd15cf9.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/70/7065397ff8184621aa3ca4f854491259 b/EscapeTheGhost/Library/metadata/70/7065397ff8184621aa3ca4f854491259
deleted file mode 100644
index 8439114..0000000
Binary files a/EscapeTheGhost/Library/metadata/70/7065397ff8184621aa3ca4f854491259 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/70/7065397ff8184621aa3ca4f854491259.info b/EscapeTheGhost/Library/metadata/70/7065397ff8184621aa3ca4f854491259.info
deleted file mode 100644
index afba0ad..0000000
Binary files a/EscapeTheGhost/Library/metadata/70/7065397ff8184621aa3ca4f854491259.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/71/71c1514a6bd24e1e882cebbe1904ce04 b/EscapeTheGhost/Library/metadata/71/71c1514a6bd24e1e882cebbe1904ce04
deleted file mode 100644
index 4a64e05..0000000
Binary files a/EscapeTheGhost/Library/metadata/71/71c1514a6bd24e1e882cebbe1904ce04 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/71/71c1514a6bd24e1e882cebbe1904ce04.info b/EscapeTheGhost/Library/metadata/71/71c1514a6bd24e1e882cebbe1904ce04.info
deleted file mode 100644
index 6dc743e..0000000
Binary files a/EscapeTheGhost/Library/metadata/71/71c1514a6bd24e1e882cebbe1904ce04.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/72/7241c7dc25374fc1a6ab3ef9da79c363 b/EscapeTheGhost/Library/metadata/72/7241c7dc25374fc1a6ab3ef9da79c363
deleted file mode 100644
index 1a167bd..0000000
Binary files a/EscapeTheGhost/Library/metadata/72/7241c7dc25374fc1a6ab3ef9da79c363 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/72/7241c7dc25374fc1a6ab3ef9da79c363.info b/EscapeTheGhost/Library/metadata/72/7241c7dc25374fc1a6ab3ef9da79c363.info
deleted file mode 100644
index ca5bce1..0000000
Binary files a/EscapeTheGhost/Library/metadata/72/7241c7dc25374fc1a6ab3ef9da79c363.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/72/72a912a47edea497ba0c5937ae39163d b/EscapeTheGhost/Library/metadata/72/72a912a47edea497ba0c5937ae39163d
deleted file mode 100644
index d75a85e..0000000
Binary files a/EscapeTheGhost/Library/metadata/72/72a912a47edea497ba0c5937ae39163d and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/72/72a912a47edea497ba0c5937ae39163d.info b/EscapeTheGhost/Library/metadata/72/72a912a47edea497ba0c5937ae39163d.info
deleted file mode 100644
index d6a96fc..0000000
Binary files a/EscapeTheGhost/Library/metadata/72/72a912a47edea497ba0c5937ae39163d.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/73/733ecdbcc8dda4699838a7124a5ebb33 b/EscapeTheGhost/Library/metadata/73/733ecdbcc8dda4699838a7124a5ebb33
deleted file mode 100644
index 244bc4a..0000000
Binary files a/EscapeTheGhost/Library/metadata/73/733ecdbcc8dda4699838a7124a5ebb33 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/73/733ecdbcc8dda4699838a7124a5ebb33.info b/EscapeTheGhost/Library/metadata/73/733ecdbcc8dda4699838a7124a5ebb33.info
deleted file mode 100644
index 96374b8..0000000
Binary files a/EscapeTheGhost/Library/metadata/73/733ecdbcc8dda4699838a7124a5ebb33.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/73/7385bea84547407c9a5a8a714ac49b38 b/EscapeTheGhost/Library/metadata/73/7385bea84547407c9a5a8a714ac49b38
deleted file mode 100644
index 10dd765..0000000
Binary files a/EscapeTheGhost/Library/metadata/73/7385bea84547407c9a5a8a714ac49b38 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/73/7385bea84547407c9a5a8a714ac49b38.info b/EscapeTheGhost/Library/metadata/73/7385bea84547407c9a5a8a714ac49b38.info
deleted file mode 100644
index 140b828..0000000
Binary files a/EscapeTheGhost/Library/metadata/73/7385bea84547407c9a5a8a714ac49b38.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/75/756038d97d4e441fdb7725337e2ed81f b/EscapeTheGhost/Library/metadata/75/756038d97d4e441fdb7725337e2ed81f
deleted file mode 100644
index 926ff77..0000000
Binary files a/EscapeTheGhost/Library/metadata/75/756038d97d4e441fdb7725337e2ed81f and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/75/756038d97d4e441fdb7725337e2ed81f.info b/EscapeTheGhost/Library/metadata/75/756038d97d4e441fdb7725337e2ed81f.info
deleted file mode 100644
index c06bcb4..0000000
Binary files a/EscapeTheGhost/Library/metadata/75/756038d97d4e441fdb7725337e2ed81f.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/75/75799de484ac4f4cadc268d2cbea830a b/EscapeTheGhost/Library/metadata/75/75799de484ac4f4cadc268d2cbea830a
deleted file mode 100644
index 72dd6fb..0000000
Binary files a/EscapeTheGhost/Library/metadata/75/75799de484ac4f4cadc268d2cbea830a and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/75/75799de484ac4f4cadc268d2cbea830a.info b/EscapeTheGhost/Library/metadata/75/75799de484ac4f4cadc268d2cbea830a.info
deleted file mode 100644
index 46565b2..0000000
Binary files a/EscapeTheGhost/Library/metadata/75/75799de484ac4f4cadc268d2cbea830a.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/75/75938f72739584ed9925bf4ae8989079 b/EscapeTheGhost/Library/metadata/75/75938f72739584ed9925bf4ae8989079
deleted file mode 100644
index 97f7dfa..0000000
Binary files a/EscapeTheGhost/Library/metadata/75/75938f72739584ed9925bf4ae8989079 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/75/75938f72739584ed9925bf4ae8989079.info b/EscapeTheGhost/Library/metadata/75/75938f72739584ed9925bf4ae8989079.info
deleted file mode 100644
index db1b84c..0000000
Binary files a/EscapeTheGhost/Library/metadata/75/75938f72739584ed9925bf4ae8989079.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/76/76078ddafb924ce19edc6034201cb15b b/EscapeTheGhost/Library/metadata/76/76078ddafb924ce19edc6034201cb15b
deleted file mode 100644
index feeec51..0000000
Binary files a/EscapeTheGhost/Library/metadata/76/76078ddafb924ce19edc6034201cb15b and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/76/76078ddafb924ce19edc6034201cb15b.info b/EscapeTheGhost/Library/metadata/76/76078ddafb924ce19edc6034201cb15b.info
deleted file mode 100644
index d7dab30..0000000
Binary files a/EscapeTheGhost/Library/metadata/76/76078ddafb924ce19edc6034201cb15b.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/76/760934a36e5f490db3c9fcaf497625a4 b/EscapeTheGhost/Library/metadata/76/760934a36e5f490db3c9fcaf497625a4
deleted file mode 100644
index ca4d35f..0000000
Binary files a/EscapeTheGhost/Library/metadata/76/760934a36e5f490db3c9fcaf497625a4 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/76/760934a36e5f490db3c9fcaf497625a4.info b/EscapeTheGhost/Library/metadata/76/760934a36e5f490db3c9fcaf497625a4.info
deleted file mode 100644
index 76cb7da..0000000
Binary files a/EscapeTheGhost/Library/metadata/76/760934a36e5f490db3c9fcaf497625a4.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/76/76349cec627454d3a80423a2eeaf0e63 b/EscapeTheGhost/Library/metadata/76/76349cec627454d3a80423a2eeaf0e63
deleted file mode 100644
index 8608d90..0000000
Binary files a/EscapeTheGhost/Library/metadata/76/76349cec627454d3a80423a2eeaf0e63 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/76/76349cec627454d3a80423a2eeaf0e63.info b/EscapeTheGhost/Library/metadata/76/76349cec627454d3a80423a2eeaf0e63.info
deleted file mode 100644
index 9763800..0000000
Binary files a/EscapeTheGhost/Library/metadata/76/76349cec627454d3a80423a2eeaf0e63.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/76/7648cb5b603be420181d45567fb411b0 b/EscapeTheGhost/Library/metadata/76/7648cb5b603be420181d45567fb411b0
deleted file mode 100644
index 9ea6f61..0000000
Binary files a/EscapeTheGhost/Library/metadata/76/7648cb5b603be420181d45567fb411b0 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/76/7648cb5b603be420181d45567fb411b0.info b/EscapeTheGhost/Library/metadata/76/7648cb5b603be420181d45567fb411b0.info
deleted file mode 100644
index 17253af..0000000
Binary files a/EscapeTheGhost/Library/metadata/76/7648cb5b603be420181d45567fb411b0.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/76/7668179ede524d6396c8b7d84461ea29 b/EscapeTheGhost/Library/metadata/76/7668179ede524d6396c8b7d84461ea29
deleted file mode 100644
index 2df85f2..0000000
Binary files a/EscapeTheGhost/Library/metadata/76/7668179ede524d6396c8b7d84461ea29 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/76/7668179ede524d6396c8b7d84461ea29.info b/EscapeTheGhost/Library/metadata/76/7668179ede524d6396c8b7d84461ea29.info
deleted file mode 100644
index a2646d8..0000000
Binary files a/EscapeTheGhost/Library/metadata/76/7668179ede524d6396c8b7d84461ea29.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/77/77266cd0cb87047598c012933eed3d57 b/EscapeTheGhost/Library/metadata/77/77266cd0cb87047598c012933eed3d57
deleted file mode 100644
index 3718946..0000000
Binary files a/EscapeTheGhost/Library/metadata/77/77266cd0cb87047598c012933eed3d57 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/77/77266cd0cb87047598c012933eed3d57.info b/EscapeTheGhost/Library/metadata/77/77266cd0cb87047598c012933eed3d57.info
deleted file mode 100644
index 3b23bf8..0000000
Binary files a/EscapeTheGhost/Library/metadata/77/77266cd0cb87047598c012933eed3d57.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/77/77476292f9fa4905a787e6417853846b b/EscapeTheGhost/Library/metadata/77/77476292f9fa4905a787e6417853846b
deleted file mode 100644
index 5b0bd65..0000000
Binary files a/EscapeTheGhost/Library/metadata/77/77476292f9fa4905a787e6417853846b and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/77/77476292f9fa4905a787e6417853846b.info b/EscapeTheGhost/Library/metadata/77/77476292f9fa4905a787e6417853846b.info
deleted file mode 100644
index e214952..0000000
Binary files a/EscapeTheGhost/Library/metadata/77/77476292f9fa4905a787e6417853846b.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/78/78b9ad527fe44d7cb05bbb77fbf351c0 b/EscapeTheGhost/Library/metadata/78/78b9ad527fe44d7cb05bbb77fbf351c0
deleted file mode 100644
index 0791c33..0000000
Binary files a/EscapeTheGhost/Library/metadata/78/78b9ad527fe44d7cb05bbb77fbf351c0 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/78/78b9ad527fe44d7cb05bbb77fbf351c0.info b/EscapeTheGhost/Library/metadata/78/78b9ad527fe44d7cb05bbb77fbf351c0.info
deleted file mode 100644
index d7b8c59..0000000
Binary files a/EscapeTheGhost/Library/metadata/78/78b9ad527fe44d7cb05bbb77fbf351c0.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/78/78e267bad6d564d49803ba3e9c13ff2e b/EscapeTheGhost/Library/metadata/78/78e267bad6d564d49803ba3e9c13ff2e
deleted file mode 100644
index d77d6f7..0000000
Binary files a/EscapeTheGhost/Library/metadata/78/78e267bad6d564d49803ba3e9c13ff2e and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/78/78e267bad6d564d49803ba3e9c13ff2e.info b/EscapeTheGhost/Library/metadata/78/78e267bad6d564d49803ba3e9c13ff2e.info
deleted file mode 100644
index 51db78a..0000000
Binary files a/EscapeTheGhost/Library/metadata/78/78e267bad6d564d49803ba3e9c13ff2e.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/79/7927683d1fc5848b5abfb54ebb1028ec b/EscapeTheGhost/Library/metadata/79/7927683d1fc5848b5abfb54ebb1028ec
deleted file mode 100644
index dad6aa6..0000000
Binary files a/EscapeTheGhost/Library/metadata/79/7927683d1fc5848b5abfb54ebb1028ec and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/79/7927683d1fc5848b5abfb54ebb1028ec.info b/EscapeTheGhost/Library/metadata/79/7927683d1fc5848b5abfb54ebb1028ec.info
deleted file mode 100644
index f0a631c..0000000
Binary files a/EscapeTheGhost/Library/metadata/79/7927683d1fc5848b5abfb54ebb1028ec.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/79/797cf0c5f1b7e4e1ab17481bd9b698eb b/EscapeTheGhost/Library/metadata/79/797cf0c5f1b7e4e1ab17481bd9b698eb
deleted file mode 100644
index f3d342a..0000000
Binary files a/EscapeTheGhost/Library/metadata/79/797cf0c5f1b7e4e1ab17481bd9b698eb and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/79/797cf0c5f1b7e4e1ab17481bd9b698eb.info b/EscapeTheGhost/Library/metadata/79/797cf0c5f1b7e4e1ab17481bd9b698eb.info
deleted file mode 100644
index 8e504b4..0000000
Binary files a/EscapeTheGhost/Library/metadata/79/797cf0c5f1b7e4e1ab17481bd9b698eb.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/79/79ff392d1bde4ad78a3836a4a480392d b/EscapeTheGhost/Library/metadata/79/79ff392d1bde4ad78a3836a4a480392d
deleted file mode 100644
index 08f86aa..0000000
Binary files a/EscapeTheGhost/Library/metadata/79/79ff392d1bde4ad78a3836a4a480392d and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/79/79ff392d1bde4ad78a3836a4a480392d.info b/EscapeTheGhost/Library/metadata/79/79ff392d1bde4ad78a3836a4a480392d.info
deleted file mode 100644
index a7d77bf..0000000
Binary files a/EscapeTheGhost/Library/metadata/79/79ff392d1bde4ad78a3836a4a480392d.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/7a/7a74094b34f74992a5121c0586ccf6ea b/EscapeTheGhost/Library/metadata/7a/7a74094b34f74992a5121c0586ccf6ea
deleted file mode 100644
index b1ad5a9..0000000
Binary files a/EscapeTheGhost/Library/metadata/7a/7a74094b34f74992a5121c0586ccf6ea and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/7a/7a74094b34f74992a5121c0586ccf6ea.info b/EscapeTheGhost/Library/metadata/7a/7a74094b34f74992a5121c0586ccf6ea.info
deleted file mode 100644
index 728e1a4..0000000
Binary files a/EscapeTheGhost/Library/metadata/7a/7a74094b34f74992a5121c0586ccf6ea.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/7b/7b743370ac3e4ec2a1668f5455a8ef8a b/EscapeTheGhost/Library/metadata/7b/7b743370ac3e4ec2a1668f5455a8ef8a
deleted file mode 100644
index 2135a7d..0000000
Binary files a/EscapeTheGhost/Library/metadata/7b/7b743370ac3e4ec2a1668f5455a8ef8a and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/7b/7b743370ac3e4ec2a1668f5455a8ef8a.info b/EscapeTheGhost/Library/metadata/7b/7b743370ac3e4ec2a1668f5455a8ef8a.info
deleted file mode 100644
index 9d367ff..0000000
Binary files a/EscapeTheGhost/Library/metadata/7b/7b743370ac3e4ec2a1668f5455a8ef8a.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/7b/7b87dac66d6e74d5f848d26f169bbe89 b/EscapeTheGhost/Library/metadata/7b/7b87dac66d6e74d5f848d26f169bbe89
deleted file mode 100644
index 82e46df..0000000
Binary files a/EscapeTheGhost/Library/metadata/7b/7b87dac66d6e74d5f848d26f169bbe89 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/7b/7b87dac66d6e74d5f848d26f169bbe89.info b/EscapeTheGhost/Library/metadata/7b/7b87dac66d6e74d5f848d26f169bbe89.info
deleted file mode 100644
index ae4c5e2..0000000
Binary files a/EscapeTheGhost/Library/metadata/7b/7b87dac66d6e74d5f848d26f169bbe89.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/7c/7c20856617c24cf99a5212838cacc239 b/EscapeTheGhost/Library/metadata/7c/7c20856617c24cf99a5212838cacc239
deleted file mode 100644
index 07f5bfc..0000000
Binary files a/EscapeTheGhost/Library/metadata/7c/7c20856617c24cf99a5212838cacc239 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/7c/7c20856617c24cf99a5212838cacc239.info b/EscapeTheGhost/Library/metadata/7c/7c20856617c24cf99a5212838cacc239.info
deleted file mode 100644
index 1222e5f..0000000
Binary files a/EscapeTheGhost/Library/metadata/7c/7c20856617c24cf99a5212838cacc239.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/7c/7c3a5d6e39b874f468b2691537168513 b/EscapeTheGhost/Library/metadata/7c/7c3a5d6e39b874f468b2691537168513
deleted file mode 100644
index 359ea64..0000000
Binary files a/EscapeTheGhost/Library/metadata/7c/7c3a5d6e39b874f468b2691537168513 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/7c/7c3a5d6e39b874f468b2691537168513.info b/EscapeTheGhost/Library/metadata/7c/7c3a5d6e39b874f468b2691537168513.info
deleted file mode 100644
index be83f1d..0000000
Binary files a/EscapeTheGhost/Library/metadata/7c/7c3a5d6e39b874f468b2691537168513.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/7c/7c8aa69027f74423f887bb1ca958844f b/EscapeTheGhost/Library/metadata/7c/7c8aa69027f74423f887bb1ca958844f
deleted file mode 100644
index 6b76e9e..0000000
Binary files a/EscapeTheGhost/Library/metadata/7c/7c8aa69027f74423f887bb1ca958844f and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/7c/7c8aa69027f74423f887bb1ca958844f.info b/EscapeTheGhost/Library/metadata/7c/7c8aa69027f74423f887bb1ca958844f.info
deleted file mode 100644
index 2ddc67c..0000000
Binary files a/EscapeTheGhost/Library/metadata/7c/7c8aa69027f74423f887bb1ca958844f.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/7c/7cd7f3c420f5f4dbe98f47ea77884c6d b/EscapeTheGhost/Library/metadata/7c/7cd7f3c420f5f4dbe98f47ea77884c6d
deleted file mode 100644
index 2afcb9a..0000000
Binary files a/EscapeTheGhost/Library/metadata/7c/7cd7f3c420f5f4dbe98f47ea77884c6d and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/7c/7cd7f3c420f5f4dbe98f47ea77884c6d.info b/EscapeTheGhost/Library/metadata/7c/7cd7f3c420f5f4dbe98f47ea77884c6d.info
deleted file mode 100644
index 7b67fe0..0000000
Binary files a/EscapeTheGhost/Library/metadata/7c/7cd7f3c420f5f4dbe98f47ea77884c6d.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/7d/7d22934bf84ccd14082fd2d5a9f5951e b/EscapeTheGhost/Library/metadata/7d/7d22934bf84ccd14082fd2d5a9f5951e
deleted file mode 100644
index f06b3d4..0000000
Binary files a/EscapeTheGhost/Library/metadata/7d/7d22934bf84ccd14082fd2d5a9f5951e and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/7d/7d22934bf84ccd14082fd2d5a9f5951e.info b/EscapeTheGhost/Library/metadata/7d/7d22934bf84ccd14082fd2d5a9f5951e.info
deleted file mode 100644
index f4c1677..0000000
Binary files a/EscapeTheGhost/Library/metadata/7d/7d22934bf84ccd14082fd2d5a9f5951e.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/7d/7d80354ace7ca4959abbd7c7e4df83bb b/EscapeTheGhost/Library/metadata/7d/7d80354ace7ca4959abbd7c7e4df83bb
deleted file mode 100644
index 423ae2d..0000000
Binary files a/EscapeTheGhost/Library/metadata/7d/7d80354ace7ca4959abbd7c7e4df83bb and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/7d/7d80354ace7ca4959abbd7c7e4df83bb.info b/EscapeTheGhost/Library/metadata/7d/7d80354ace7ca4959abbd7c7e4df83bb.info
deleted file mode 100644
index 4ed86d5..0000000
Binary files a/EscapeTheGhost/Library/metadata/7d/7d80354ace7ca4959abbd7c7e4df83bb.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/7d/7da0c11c52b4044de81c175887699282 b/EscapeTheGhost/Library/metadata/7d/7da0c11c52b4044de81c175887699282
deleted file mode 100644
index a6c8d3c..0000000
Binary files a/EscapeTheGhost/Library/metadata/7d/7da0c11c52b4044de81c175887699282 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/7d/7da0c11c52b4044de81c175887699282.info b/EscapeTheGhost/Library/metadata/7d/7da0c11c52b4044de81c175887699282.info
deleted file mode 100644
index 2c20472..0000000
Binary files a/EscapeTheGhost/Library/metadata/7d/7da0c11c52b4044de81c175887699282.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/7e/7e59c7317e51470a833219e69cdeec75 b/EscapeTheGhost/Library/metadata/7e/7e59c7317e51470a833219e69cdeec75
deleted file mode 100644
index 71c778d..0000000
Binary files a/EscapeTheGhost/Library/metadata/7e/7e59c7317e51470a833219e69cdeec75 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/7e/7e59c7317e51470a833219e69cdeec75.info b/EscapeTheGhost/Library/metadata/7e/7e59c7317e51470a833219e69cdeec75.info
deleted file mode 100644
index 3ec2392..0000000
Binary files a/EscapeTheGhost/Library/metadata/7e/7e59c7317e51470a833219e69cdeec75.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/7e/7ed48dcc992234c659018e00590315b7 b/EscapeTheGhost/Library/metadata/7e/7ed48dcc992234c659018e00590315b7
deleted file mode 100644
index 956a53d..0000000
Binary files a/EscapeTheGhost/Library/metadata/7e/7ed48dcc992234c659018e00590315b7 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/7e/7ed48dcc992234c659018e00590315b7.info b/EscapeTheGhost/Library/metadata/7e/7ed48dcc992234c659018e00590315b7.info
deleted file mode 100644
index 35dbc10..0000000
Binary files a/EscapeTheGhost/Library/metadata/7e/7ed48dcc992234c659018e00590315b7.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/7e/7ef8348b8ea834d7e1bc214b07f7fb87 b/EscapeTheGhost/Library/metadata/7e/7ef8348b8ea834d7e1bc214b07f7fb87
deleted file mode 100644
index a3d91b9..0000000
Binary files a/EscapeTheGhost/Library/metadata/7e/7ef8348b8ea834d7e1bc214b07f7fb87 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/7e/7ef8348b8ea834d7e1bc214b07f7fb87.info b/EscapeTheGhost/Library/metadata/7e/7ef8348b8ea834d7e1bc214b07f7fb87.info
deleted file mode 100644
index e8a1ad5..0000000
Binary files a/EscapeTheGhost/Library/metadata/7e/7ef8348b8ea834d7e1bc214b07f7fb87.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/7f/7fd5e77e7e7ea4eea8198138cd9cc814 b/EscapeTheGhost/Library/metadata/7f/7fd5e77e7e7ea4eea8198138cd9cc814
deleted file mode 100644
index a2bd617..0000000
Binary files a/EscapeTheGhost/Library/metadata/7f/7fd5e77e7e7ea4eea8198138cd9cc814 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/7f/7fd5e77e7e7ea4eea8198138cd9cc814.info b/EscapeTheGhost/Library/metadata/7f/7fd5e77e7e7ea4eea8198138cd9cc814.info
deleted file mode 100644
index 9858922..0000000
Binary files a/EscapeTheGhost/Library/metadata/7f/7fd5e77e7e7ea4eea8198138cd9cc814.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/80/806de5a9211448c8b65c8435ebb48dd4 b/EscapeTheGhost/Library/metadata/80/806de5a9211448c8b65c8435ebb48dd4
deleted file mode 100644
index 02d2e2f..0000000
Binary files a/EscapeTheGhost/Library/metadata/80/806de5a9211448c8b65c8435ebb48dd4 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/80/806de5a9211448c8b65c8435ebb48dd4.info b/EscapeTheGhost/Library/metadata/80/806de5a9211448c8b65c8435ebb48dd4.info
deleted file mode 100644
index 9d23241..0000000
Binary files a/EscapeTheGhost/Library/metadata/80/806de5a9211448c8b65c8435ebb48dd4.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/80/80a3616ca19596e4da0f10f14d241e9f b/EscapeTheGhost/Library/metadata/80/80a3616ca19596e4da0f10f14d241e9f
deleted file mode 100644
index fb7a4b4..0000000
Binary files a/EscapeTheGhost/Library/metadata/80/80a3616ca19596e4da0f10f14d241e9f and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/80/80a3616ca19596e4da0f10f14d241e9f.info b/EscapeTheGhost/Library/metadata/80/80a3616ca19596e4da0f10f14d241e9f.info
deleted file mode 100644
index beedd87..0000000
Binary files a/EscapeTheGhost/Library/metadata/80/80a3616ca19596e4da0f10f14d241e9f.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/80/80beef77cb19e713c7c2d481b65ed485 b/EscapeTheGhost/Library/metadata/80/80beef77cb19e713c7c2d481b65ed485
deleted file mode 100644
index be720b5..0000000
Binary files a/EscapeTheGhost/Library/metadata/80/80beef77cb19e713c7c2d481b65ed485 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/80/80beef77cb19e713c7c2d481b65ed485.info b/EscapeTheGhost/Library/metadata/80/80beef77cb19e713c7c2d481b65ed485.info
deleted file mode 100644
index f05bda2..0000000
Binary files a/EscapeTheGhost/Library/metadata/80/80beef77cb19e713c7c2d481b65ed485.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/81/810def08e6eae48f7b5d8c192e48356b b/EscapeTheGhost/Library/metadata/81/810def08e6eae48f7b5d8c192e48356b
deleted file mode 100644
index c20fb44..0000000
Binary files a/EscapeTheGhost/Library/metadata/81/810def08e6eae48f7b5d8c192e48356b and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/81/810def08e6eae48f7b5d8c192e48356b.info b/EscapeTheGhost/Library/metadata/81/810def08e6eae48f7b5d8c192e48356b.info
deleted file mode 100644
index 1811b25..0000000
Binary files a/EscapeTheGhost/Library/metadata/81/810def08e6eae48f7b5d8c192e48356b.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/81/81ed8c76d2bc4a4c95d092c98af4e58f b/EscapeTheGhost/Library/metadata/81/81ed8c76d2bc4a4c95d092c98af4e58f
deleted file mode 100644
index c4b4596..0000000
Binary files a/EscapeTheGhost/Library/metadata/81/81ed8c76d2bc4a4c95d092c98af4e58f and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/81/81ed8c76d2bc4a4c95d092c98af4e58f.info b/EscapeTheGhost/Library/metadata/81/81ed8c76d2bc4a4c95d092c98af4e58f.info
deleted file mode 100644
index 585c214..0000000
Binary files a/EscapeTheGhost/Library/metadata/81/81ed8c76d2bc4a4c95d092c98af4e58f.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/81/81f8cf4a1c4ad49e8a311dfc1998bd07 b/EscapeTheGhost/Library/metadata/81/81f8cf4a1c4ad49e8a311dfc1998bd07
deleted file mode 100644
index d4a8e6d..0000000
Binary files a/EscapeTheGhost/Library/metadata/81/81f8cf4a1c4ad49e8a311dfc1998bd07 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/81/81f8cf4a1c4ad49e8a311dfc1998bd07.info b/EscapeTheGhost/Library/metadata/81/81f8cf4a1c4ad49e8a311dfc1998bd07.info
deleted file mode 100644
index 4844857..0000000
Binary files a/EscapeTheGhost/Library/metadata/81/81f8cf4a1c4ad49e8a311dfc1998bd07.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/82/827e333f991ce49aeab918199cb8563d b/EscapeTheGhost/Library/metadata/82/827e333f991ce49aeab918199cb8563d
deleted file mode 100644
index a70fa3a..0000000
Binary files a/EscapeTheGhost/Library/metadata/82/827e333f991ce49aeab918199cb8563d and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/82/827e333f991ce49aeab918199cb8563d.info b/EscapeTheGhost/Library/metadata/82/827e333f991ce49aeab918199cb8563d.info
deleted file mode 100644
index 3583ff2..0000000
Binary files a/EscapeTheGhost/Library/metadata/82/827e333f991ce49aeab918199cb8563d.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/83/8311e0574a8bd42f78de3e17b70f43cf b/EscapeTheGhost/Library/metadata/83/8311e0574a8bd42f78de3e17b70f43cf
deleted file mode 100644
index e4478d4..0000000
Binary files a/EscapeTheGhost/Library/metadata/83/8311e0574a8bd42f78de3e17b70f43cf and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/83/8311e0574a8bd42f78de3e17b70f43cf.info b/EscapeTheGhost/Library/metadata/83/8311e0574a8bd42f78de3e17b70f43cf.info
deleted file mode 100644
index 2a47dd1..0000000
Binary files a/EscapeTheGhost/Library/metadata/83/8311e0574a8bd42f78de3e17b70f43cf.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/84/8413ca0e506d42a1a4bd9769f204ad16 b/EscapeTheGhost/Library/metadata/84/8413ca0e506d42a1a4bd9769f204ad16
deleted file mode 100644
index a5dfea4..0000000
Binary files a/EscapeTheGhost/Library/metadata/84/8413ca0e506d42a1a4bd9769f204ad16 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/84/8413ca0e506d42a1a4bd9769f204ad16.info b/EscapeTheGhost/Library/metadata/84/8413ca0e506d42a1a4bd9769f204ad16.info
deleted file mode 100644
index d214ab8..0000000
Binary files a/EscapeTheGhost/Library/metadata/84/8413ca0e506d42a1a4bd9769f204ad16.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/84/844f815391db42d49455cbf1a7bfc434 b/EscapeTheGhost/Library/metadata/84/844f815391db42d49455cbf1a7bfc434
deleted file mode 100644
index 0315d8d..0000000
Binary files a/EscapeTheGhost/Library/metadata/84/844f815391db42d49455cbf1a7bfc434 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/84/844f815391db42d49455cbf1a7bfc434.info b/EscapeTheGhost/Library/metadata/84/844f815391db42d49455cbf1a7bfc434.info
deleted file mode 100644
index bb8effc..0000000
Binary files a/EscapeTheGhost/Library/metadata/84/844f815391db42d49455cbf1a7bfc434.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/84/84a92b25f83d49b9bc132d206b370281 b/EscapeTheGhost/Library/metadata/84/84a92b25f83d49b9bc132d206b370281
deleted file mode 100644
index 036b9a1..0000000
Binary files a/EscapeTheGhost/Library/metadata/84/84a92b25f83d49b9bc132d206b370281 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/84/84a92b25f83d49b9bc132d206b370281.info b/EscapeTheGhost/Library/metadata/84/84a92b25f83d49b9bc132d206b370281.info
deleted file mode 100644
index 4088816..0000000
Binary files a/EscapeTheGhost/Library/metadata/84/84a92b25f83d49b9bc132d206b370281.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/84/84aec3c9054b3402293139f2c0bc1029 b/EscapeTheGhost/Library/metadata/84/84aec3c9054b3402293139f2c0bc1029
deleted file mode 100644
index fb7cb98..0000000
Binary files a/EscapeTheGhost/Library/metadata/84/84aec3c9054b3402293139f2c0bc1029 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/84/84aec3c9054b3402293139f2c0bc1029.info b/EscapeTheGhost/Library/metadata/84/84aec3c9054b3402293139f2c0bc1029.info
deleted file mode 100644
index 99701f7..0000000
Binary files a/EscapeTheGhost/Library/metadata/84/84aec3c9054b3402293139f2c0bc1029.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/85/850c54ee0b9e1aa740b1c67792eb1f26 b/EscapeTheGhost/Library/metadata/85/850c54ee0b9e1aa740b1c67792eb1f26
deleted file mode 100644
index 01f5743..0000000
Binary files a/EscapeTheGhost/Library/metadata/85/850c54ee0b9e1aa740b1c67792eb1f26 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/85/850c54ee0b9e1aa740b1c67792eb1f26.info b/EscapeTheGhost/Library/metadata/85/850c54ee0b9e1aa740b1c67792eb1f26.info
deleted file mode 100644
index 4eb0573..0000000
Binary files a/EscapeTheGhost/Library/metadata/85/850c54ee0b9e1aa740b1c67792eb1f26.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/85/85dba6b2d7204a7f9a1f976eb0a6b4d2 b/EscapeTheGhost/Library/metadata/85/85dba6b2d7204a7f9a1f976eb0a6b4d2
deleted file mode 100644
index 7e2cdb0..0000000
Binary files a/EscapeTheGhost/Library/metadata/85/85dba6b2d7204a7f9a1f976eb0a6b4d2 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/85/85dba6b2d7204a7f9a1f976eb0a6b4d2.info b/EscapeTheGhost/Library/metadata/85/85dba6b2d7204a7f9a1f976eb0a6b4d2.info
deleted file mode 100644
index 175c30b..0000000
Binary files a/EscapeTheGhost/Library/metadata/85/85dba6b2d7204a7f9a1f976eb0a6b4d2.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/86/86c008322e7c647149878156c5b81940 b/EscapeTheGhost/Library/metadata/86/86c008322e7c647149878156c5b81940
deleted file mode 100644
index 539698c..0000000
Binary files a/EscapeTheGhost/Library/metadata/86/86c008322e7c647149878156c5b81940 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/86/86c008322e7c647149878156c5b81940.info b/EscapeTheGhost/Library/metadata/86/86c008322e7c647149878156c5b81940.info
deleted file mode 100644
index 5141ad6..0000000
Binary files a/EscapeTheGhost/Library/metadata/86/86c008322e7c647149878156c5b81940.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/86/86c18994495874297b469aaa57ef9b44 b/EscapeTheGhost/Library/metadata/86/86c18994495874297b469aaa57ef9b44
deleted file mode 100644
index fbe5540..0000000
Binary files a/EscapeTheGhost/Library/metadata/86/86c18994495874297b469aaa57ef9b44 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/86/86c18994495874297b469aaa57ef9b44.info b/EscapeTheGhost/Library/metadata/86/86c18994495874297b469aaa57ef9b44.info
deleted file mode 100644
index 3298b9d..0000000
Binary files a/EscapeTheGhost/Library/metadata/86/86c18994495874297b469aaa57ef9b44.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/86/86d0242b70e6ab24aaf5a0e67edf2a61 b/EscapeTheGhost/Library/metadata/86/86d0242b70e6ab24aaf5a0e67edf2a61
deleted file mode 100644
index 1c35bce..0000000
Binary files a/EscapeTheGhost/Library/metadata/86/86d0242b70e6ab24aaf5a0e67edf2a61 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/86/86d0242b70e6ab24aaf5a0e67edf2a61.info b/EscapeTheGhost/Library/metadata/86/86d0242b70e6ab24aaf5a0e67edf2a61.info
deleted file mode 100644
index 3f87723..0000000
Binary files a/EscapeTheGhost/Library/metadata/86/86d0242b70e6ab24aaf5a0e67edf2a61.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/87/870353891bb340e2b2a9c8707e7419ba b/EscapeTheGhost/Library/metadata/87/870353891bb340e2b2a9c8707e7419ba
deleted file mode 100644
index 8845812..0000000
Binary files a/EscapeTheGhost/Library/metadata/87/870353891bb340e2b2a9c8707e7419ba and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/87/870353891bb340e2b2a9c8707e7419ba.info b/EscapeTheGhost/Library/metadata/87/870353891bb340e2b2a9c8707e7419ba.info
deleted file mode 100644
index a35de2a..0000000
Binary files a/EscapeTheGhost/Library/metadata/87/870353891bb340e2b2a9c8707e7419ba.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/87/871f8edd56e84b8fb295b10cc3c78f36 b/EscapeTheGhost/Library/metadata/87/871f8edd56e84b8fb295b10cc3c78f36
deleted file mode 100644
index 8b5c57e..0000000
Binary files a/EscapeTheGhost/Library/metadata/87/871f8edd56e84b8fb295b10cc3c78f36 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/87/871f8edd56e84b8fb295b10cc3c78f36.info b/EscapeTheGhost/Library/metadata/87/871f8edd56e84b8fb295b10cc3c78f36.info
deleted file mode 100644
index d3460bc..0000000
Binary files a/EscapeTheGhost/Library/metadata/87/871f8edd56e84b8fb295b10cc3c78f36.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/87/87738e82a4f047cc947cff8a2ccea594 b/EscapeTheGhost/Library/metadata/87/87738e82a4f047cc947cff8a2ccea594
deleted file mode 100644
index cfce0a0..0000000
Binary files a/EscapeTheGhost/Library/metadata/87/87738e82a4f047cc947cff8a2ccea594 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/87/87738e82a4f047cc947cff8a2ccea594.info b/EscapeTheGhost/Library/metadata/87/87738e82a4f047cc947cff8a2ccea594.info
deleted file mode 100644
index 42e2c76..0000000
Binary files a/EscapeTheGhost/Library/metadata/87/87738e82a4f047cc947cff8a2ccea594.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/87/87ab1bebe13f41f89d5427e7d2c34d58 b/EscapeTheGhost/Library/metadata/87/87ab1bebe13f41f89d5427e7d2c34d58
deleted file mode 100644
index eacdbfa..0000000
Binary files a/EscapeTheGhost/Library/metadata/87/87ab1bebe13f41f89d5427e7d2c34d58 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/87/87ab1bebe13f41f89d5427e7d2c34d58.info b/EscapeTheGhost/Library/metadata/87/87ab1bebe13f41f89d5427e7d2c34d58.info
deleted file mode 100644
index fb275a5..0000000
Binary files a/EscapeTheGhost/Library/metadata/87/87ab1bebe13f41f89d5427e7d2c34d58.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/87/87d720faa37005c08600090e04d8c739 b/EscapeTheGhost/Library/metadata/87/87d720faa37005c08600090e04d8c739
deleted file mode 100644
index de97c61..0000000
Binary files a/EscapeTheGhost/Library/metadata/87/87d720faa37005c08600090e04d8c739 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/87/87d720faa37005c08600090e04d8c739.info b/EscapeTheGhost/Library/metadata/87/87d720faa37005c08600090e04d8c739.info
deleted file mode 100644
index 25b02c1..0000000
Binary files a/EscapeTheGhost/Library/metadata/87/87d720faa37005c08600090e04d8c739.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/88/880f2fc52037c4fe09edb80cfe84ac7c b/EscapeTheGhost/Library/metadata/88/880f2fc52037c4fe09edb80cfe84ac7c
deleted file mode 100644
index 777274e..0000000
Binary files a/EscapeTheGhost/Library/metadata/88/880f2fc52037c4fe09edb80cfe84ac7c and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/88/880f2fc52037c4fe09edb80cfe84ac7c.info b/EscapeTheGhost/Library/metadata/88/880f2fc52037c4fe09edb80cfe84ac7c.info
deleted file mode 100644
index 44a93b3..0000000
Binary files a/EscapeTheGhost/Library/metadata/88/880f2fc52037c4fe09edb80cfe84ac7c.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/88/884f8f0e4025a420893d3a8d1d3063e1 b/EscapeTheGhost/Library/metadata/88/884f8f0e4025a420893d3a8d1d3063e1
deleted file mode 100644
index 0b4c7eb..0000000
Binary files a/EscapeTheGhost/Library/metadata/88/884f8f0e4025a420893d3a8d1d3063e1 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/88/884f8f0e4025a420893d3a8d1d3063e1.info b/EscapeTheGhost/Library/metadata/88/884f8f0e4025a420893d3a8d1d3063e1.info
deleted file mode 100644
index 64bd319..0000000
Binary files a/EscapeTheGhost/Library/metadata/88/884f8f0e4025a420893d3a8d1d3063e1.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/88/88ed537c17c34f339121fe9a7d6d7a0e b/EscapeTheGhost/Library/metadata/88/88ed537c17c34f339121fe9a7d6d7a0e
deleted file mode 100644
index e04b3e3..0000000
Binary files a/EscapeTheGhost/Library/metadata/88/88ed537c17c34f339121fe9a7d6d7a0e and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/88/88ed537c17c34f339121fe9a7d6d7a0e.info b/EscapeTheGhost/Library/metadata/88/88ed537c17c34f339121fe9a7d6d7a0e.info
deleted file mode 100644
index e8413f3..0000000
Binary files a/EscapeTheGhost/Library/metadata/88/88ed537c17c34f339121fe9a7d6d7a0e.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/8b/8bc445bb79654bf496c92d0407840a92 b/EscapeTheGhost/Library/metadata/8b/8bc445bb79654bf496c92d0407840a92
deleted file mode 100644
index be3b107..0000000
Binary files a/EscapeTheGhost/Library/metadata/8b/8bc445bb79654bf496c92d0407840a92 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/8b/8bc445bb79654bf496c92d0407840a92.info b/EscapeTheGhost/Library/metadata/8b/8bc445bb79654bf496c92d0407840a92.info
deleted file mode 100644
index aa90a1b..0000000
Binary files a/EscapeTheGhost/Library/metadata/8b/8bc445bb79654bf496c92d0407840a92.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/8c/8c25f8b5c9da143328c516248414b95d b/EscapeTheGhost/Library/metadata/8c/8c25f8b5c9da143328c516248414b95d
deleted file mode 100644
index 43a14d5..0000000
Binary files a/EscapeTheGhost/Library/metadata/8c/8c25f8b5c9da143328c516248414b95d and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/8c/8c25f8b5c9da143328c516248414b95d.info b/EscapeTheGhost/Library/metadata/8c/8c25f8b5c9da143328c516248414b95d.info
deleted file mode 100644
index 258e7b0..0000000
Binary files a/EscapeTheGhost/Library/metadata/8c/8c25f8b5c9da143328c516248414b95d.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/8e/8e7066e382b0fc749b25dbb1a3004dfe b/EscapeTheGhost/Library/metadata/8e/8e7066e382b0fc749b25dbb1a3004dfe
deleted file mode 100644
index 81135c7..0000000
Binary files a/EscapeTheGhost/Library/metadata/8e/8e7066e382b0fc749b25dbb1a3004dfe and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/8e/8e7066e382b0fc749b25dbb1a3004dfe.info b/EscapeTheGhost/Library/metadata/8e/8e7066e382b0fc749b25dbb1a3004dfe.info
deleted file mode 100644
index 4a69639..0000000
Binary files a/EscapeTheGhost/Library/metadata/8e/8e7066e382b0fc749b25dbb1a3004dfe.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/8f/8f8b248abe6b4dcebd6cdd0d754717f4 b/EscapeTheGhost/Library/metadata/8f/8f8b248abe6b4dcebd6cdd0d754717f4
deleted file mode 100644
index c5953c4..0000000
Binary files a/EscapeTheGhost/Library/metadata/8f/8f8b248abe6b4dcebd6cdd0d754717f4 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/8f/8f8b248abe6b4dcebd6cdd0d754717f4.info b/EscapeTheGhost/Library/metadata/8f/8f8b248abe6b4dcebd6cdd0d754717f4.info
deleted file mode 100644
index f2d786d..0000000
Binary files a/EscapeTheGhost/Library/metadata/8f/8f8b248abe6b4dcebd6cdd0d754717f4.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/90/900f1a451c764dc3bdcc0de815a15935 b/EscapeTheGhost/Library/metadata/90/900f1a451c764dc3bdcc0de815a15935
deleted file mode 100644
index 56c265a..0000000
Binary files a/EscapeTheGhost/Library/metadata/90/900f1a451c764dc3bdcc0de815a15935 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/90/900f1a451c764dc3bdcc0de815a15935.info b/EscapeTheGhost/Library/metadata/90/900f1a451c764dc3bdcc0de815a15935.info
deleted file mode 100644
index 9e175f1..0000000
Binary files a/EscapeTheGhost/Library/metadata/90/900f1a451c764dc3bdcc0de815a15935.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/90/906c12bc9cd95d3963c6d58f62522c78 b/EscapeTheGhost/Library/metadata/90/906c12bc9cd95d3963c6d58f62522c78
deleted file mode 100644
index 1922f38..0000000
Binary files a/EscapeTheGhost/Library/metadata/90/906c12bc9cd95d3963c6d58f62522c78 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/90/906c12bc9cd95d3963c6d58f62522c78.info b/EscapeTheGhost/Library/metadata/90/906c12bc9cd95d3963c6d58f62522c78.info
deleted file mode 100644
index fd135f0..0000000
Binary files a/EscapeTheGhost/Library/metadata/90/906c12bc9cd95d3963c6d58f62522c78.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/90/907731821455c4fa989ac14278e02251 b/EscapeTheGhost/Library/metadata/90/907731821455c4fa989ac14278e02251
deleted file mode 100644
index 368f835..0000000
Binary files a/EscapeTheGhost/Library/metadata/90/907731821455c4fa989ac14278e02251 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/90/907731821455c4fa989ac14278e02251.info b/EscapeTheGhost/Library/metadata/90/907731821455c4fa989ac14278e02251.info
deleted file mode 100644
index acd889b..0000000
Binary files a/EscapeTheGhost/Library/metadata/90/907731821455c4fa989ac14278e02251.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/90/9078b7128e594410d9b89e5b24cffd01 b/EscapeTheGhost/Library/metadata/90/9078b7128e594410d9b89e5b24cffd01
deleted file mode 100644
index 009587b..0000000
Binary files a/EscapeTheGhost/Library/metadata/90/9078b7128e594410d9b89e5b24cffd01 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/90/9078b7128e594410d9b89e5b24cffd01.info b/EscapeTheGhost/Library/metadata/90/9078b7128e594410d9b89e5b24cffd01.info
deleted file mode 100644
index 151e804..0000000
Binary files a/EscapeTheGhost/Library/metadata/90/9078b7128e594410d9b89e5b24cffd01.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/90/90791303b72ec4ae198f99d637dfdf6c b/EscapeTheGhost/Library/metadata/90/90791303b72ec4ae198f99d637dfdf6c
deleted file mode 100644
index d8215c1..0000000
Binary files a/EscapeTheGhost/Library/metadata/90/90791303b72ec4ae198f99d637dfdf6c and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/90/90791303b72ec4ae198f99d637dfdf6c.info b/EscapeTheGhost/Library/metadata/90/90791303b72ec4ae198f99d637dfdf6c.info
deleted file mode 100644
index 02ab77f..0000000
Binary files a/EscapeTheGhost/Library/metadata/90/90791303b72ec4ae198f99d637dfdf6c.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/92/92027f7f8cfc4feaa477da0dc38d3d46 b/EscapeTheGhost/Library/metadata/92/92027f7f8cfc4feaa477da0dc38d3d46
deleted file mode 100644
index e46ed88..0000000
Binary files a/EscapeTheGhost/Library/metadata/92/92027f7f8cfc4feaa477da0dc38d3d46 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/92/92027f7f8cfc4feaa477da0dc38d3d46.info b/EscapeTheGhost/Library/metadata/92/92027f7f8cfc4feaa477da0dc38d3d46.info
deleted file mode 100644
index 81e6876..0000000
Binary files a/EscapeTheGhost/Library/metadata/92/92027f7f8cfc4feaa477da0dc38d3d46.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/92/9288066c33474b94b6ee5465f4df1cc0 b/EscapeTheGhost/Library/metadata/92/9288066c33474b94b6ee5465f4df1cc0
deleted file mode 100644
index f65572c..0000000
Binary files a/EscapeTheGhost/Library/metadata/92/9288066c33474b94b6ee5465f4df1cc0 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/92/9288066c33474b94b6ee5465f4df1cc0.info b/EscapeTheGhost/Library/metadata/92/9288066c33474b94b6ee5465f4df1cc0.info
deleted file mode 100644
index b7e118a..0000000
Binary files a/EscapeTheGhost/Library/metadata/92/9288066c33474b94b6ee5465f4df1cc0.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/92/92a378669877c05c6071d0fed687bb95 b/EscapeTheGhost/Library/metadata/92/92a378669877c05c6071d0fed687bb95
deleted file mode 100644
index 031baf6..0000000
Binary files a/EscapeTheGhost/Library/metadata/92/92a378669877c05c6071d0fed687bb95 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/92/92a378669877c05c6071d0fed687bb95.info b/EscapeTheGhost/Library/metadata/92/92a378669877c05c6071d0fed687bb95.info
deleted file mode 100644
index 4f2d08f..0000000
Binary files a/EscapeTheGhost/Library/metadata/92/92a378669877c05c6071d0fed687bb95.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/93/93c1370867fcb45079592da39e0994c5 b/EscapeTheGhost/Library/metadata/93/93c1370867fcb45079592da39e0994c5
deleted file mode 100644
index 7a7de34..0000000
Binary files a/EscapeTheGhost/Library/metadata/93/93c1370867fcb45079592da39e0994c5 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/93/93c1370867fcb45079592da39e0994c5.info b/EscapeTheGhost/Library/metadata/93/93c1370867fcb45079592da39e0994c5.info
deleted file mode 100644
index 08d7ca6..0000000
Binary files a/EscapeTheGhost/Library/metadata/93/93c1370867fcb45079592da39e0994c5.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/95/953fab16d15d5885b3600fcd6388b2ad b/EscapeTheGhost/Library/metadata/95/953fab16d15d5885b3600fcd6388b2ad
deleted file mode 100644
index 34c6055..0000000
Binary files a/EscapeTheGhost/Library/metadata/95/953fab16d15d5885b3600fcd6388b2ad and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/95/953fab16d15d5885b3600fcd6388b2ad.info b/EscapeTheGhost/Library/metadata/95/953fab16d15d5885b3600fcd6388b2ad.info
deleted file mode 100644
index a665a85..0000000
Binary files a/EscapeTheGhost/Library/metadata/95/953fab16d15d5885b3600fcd6388b2ad.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/95/9541d86e2fd84c1d9990edf0852d74ab b/EscapeTheGhost/Library/metadata/95/9541d86e2fd84c1d9990edf0852d74ab
deleted file mode 100644
index 4f592c4..0000000
Binary files a/EscapeTheGhost/Library/metadata/95/9541d86e2fd84c1d9990edf0852d74ab and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/95/9541d86e2fd84c1d9990edf0852d74ab.info b/EscapeTheGhost/Library/metadata/95/9541d86e2fd84c1d9990edf0852d74ab.info
deleted file mode 100644
index 565500e..0000000
Binary files a/EscapeTheGhost/Library/metadata/95/9541d86e2fd84c1d9990edf0852d74ab.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/95/9545c9eb3bf94265810463794fec8334 b/EscapeTheGhost/Library/metadata/95/9545c9eb3bf94265810463794fec8334
deleted file mode 100644
index d6f7d95..0000000
Binary files a/EscapeTheGhost/Library/metadata/95/9545c9eb3bf94265810463794fec8334 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/95/9545c9eb3bf94265810463794fec8334.info b/EscapeTheGhost/Library/metadata/95/9545c9eb3bf94265810463794fec8334.info
deleted file mode 100644
index 2f48b06..0000000
Binary files a/EscapeTheGhost/Library/metadata/95/9545c9eb3bf94265810463794fec8334.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/95/95f85adeda79e994f011eb2152cf4fc9 b/EscapeTheGhost/Library/metadata/95/95f85adeda79e994f011eb2152cf4fc9
deleted file mode 100644
index 0fbebcb..0000000
Binary files a/EscapeTheGhost/Library/metadata/95/95f85adeda79e994f011eb2152cf4fc9 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/95/95f85adeda79e994f011eb2152cf4fc9.info b/EscapeTheGhost/Library/metadata/95/95f85adeda79e994f011eb2152cf4fc9.info
deleted file mode 100644
index 0809e55..0000000
Binary files a/EscapeTheGhost/Library/metadata/95/95f85adeda79e994f011eb2152cf4fc9.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/96/968a09f153574430a6e15ae975145768 b/EscapeTheGhost/Library/metadata/96/968a09f153574430a6e15ae975145768
deleted file mode 100644
index cb4e0e2..0000000
Binary files a/EscapeTheGhost/Library/metadata/96/968a09f153574430a6e15ae975145768 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/96/968a09f153574430a6e15ae975145768.info b/EscapeTheGhost/Library/metadata/96/968a09f153574430a6e15ae975145768.info
deleted file mode 100644
index aae4d47..0000000
Binary files a/EscapeTheGhost/Library/metadata/96/968a09f153574430a6e15ae975145768.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/96/96b44f7d98314b139324a8a87eb66067 b/EscapeTheGhost/Library/metadata/96/96b44f7d98314b139324a8a87eb66067
deleted file mode 100644
index 3d17802..0000000
Binary files a/EscapeTheGhost/Library/metadata/96/96b44f7d98314b139324a8a87eb66067 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/96/96b44f7d98314b139324a8a87eb66067.info b/EscapeTheGhost/Library/metadata/96/96b44f7d98314b139324a8a87eb66067.info
deleted file mode 100644
index 9094b18..0000000
Binary files a/EscapeTheGhost/Library/metadata/96/96b44f7d98314b139324a8a87eb66067.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/96/96d14b71b907bb52333b2886e665aba6 b/EscapeTheGhost/Library/metadata/96/96d14b71b907bb52333b2886e665aba6
deleted file mode 100644
index e3486cf..0000000
Binary files a/EscapeTheGhost/Library/metadata/96/96d14b71b907bb52333b2886e665aba6 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/96/96d14b71b907bb52333b2886e665aba6.info b/EscapeTheGhost/Library/metadata/96/96d14b71b907bb52333b2886e665aba6.info
deleted file mode 100644
index 4dbddc9..0000000
Binary files a/EscapeTheGhost/Library/metadata/96/96d14b71b907bb52333b2886e665aba6.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/96/96e9072453a441618754c478755b3028 b/EscapeTheGhost/Library/metadata/96/96e9072453a441618754c478755b3028
deleted file mode 100644
index cf3e6ca..0000000
Binary files a/EscapeTheGhost/Library/metadata/96/96e9072453a441618754c478755b3028 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/96/96e9072453a441618754c478755b3028.info b/EscapeTheGhost/Library/metadata/96/96e9072453a441618754c478755b3028.info
deleted file mode 100644
index 79d9bf7..0000000
Binary files a/EscapeTheGhost/Library/metadata/96/96e9072453a441618754c478755b3028.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/98/983d491088dbb4db8b83c926939a08c5 b/EscapeTheGhost/Library/metadata/98/983d491088dbb4db8b83c926939a08c5
deleted file mode 100644
index 4c3288c..0000000
Binary files a/EscapeTheGhost/Library/metadata/98/983d491088dbb4db8b83c926939a08c5 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/98/983d491088dbb4db8b83c926939a08c5.info b/EscapeTheGhost/Library/metadata/98/983d491088dbb4db8b83c926939a08c5.info
deleted file mode 100644
index d9bcd73..0000000
Binary files a/EscapeTheGhost/Library/metadata/98/983d491088dbb4db8b83c926939a08c5.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/99/99ddb49592ff84811804420a1910cb89 b/EscapeTheGhost/Library/metadata/99/99ddb49592ff84811804420a1910cb89
deleted file mode 100644
index 3f1990f..0000000
Binary files a/EscapeTheGhost/Library/metadata/99/99ddb49592ff84811804420a1910cb89 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/99/99ddb49592ff84811804420a1910cb89.info b/EscapeTheGhost/Library/metadata/99/99ddb49592ff84811804420a1910cb89.info
deleted file mode 100644
index bd823ad..0000000
Binary files a/EscapeTheGhost/Library/metadata/99/99ddb49592ff84811804420a1910cb89.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/99/99e3f0c2b5e54694dbb1b61db7550631 b/EscapeTheGhost/Library/metadata/99/99e3f0c2b5e54694dbb1b61db7550631
deleted file mode 100644
index 6b0ae16..0000000
Binary files a/EscapeTheGhost/Library/metadata/99/99e3f0c2b5e54694dbb1b61db7550631 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/99/99e3f0c2b5e54694dbb1b61db7550631.info b/EscapeTheGhost/Library/metadata/99/99e3f0c2b5e54694dbb1b61db7550631.info
deleted file mode 100644
index bdc1343..0000000
Binary files a/EscapeTheGhost/Library/metadata/99/99e3f0c2b5e54694dbb1b61db7550631.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/9a/9a2c874c382e2419184b302497279dd9 b/EscapeTheGhost/Library/metadata/9a/9a2c874c382e2419184b302497279dd9
deleted file mode 100644
index 0273a31..0000000
Binary files a/EscapeTheGhost/Library/metadata/9a/9a2c874c382e2419184b302497279dd9 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/9a/9a2c874c382e2419184b302497279dd9.info b/EscapeTheGhost/Library/metadata/9a/9a2c874c382e2419184b302497279dd9.info
deleted file mode 100644
index 26098db..0000000
Binary files a/EscapeTheGhost/Library/metadata/9a/9a2c874c382e2419184b302497279dd9.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/9c/9c7c268fa6492449654839df69f2a2f4 b/EscapeTheGhost/Library/metadata/9c/9c7c268fa6492449654839df69f2a2f4
deleted file mode 100644
index 3c770c7..0000000
Binary files a/EscapeTheGhost/Library/metadata/9c/9c7c268fa6492449654839df69f2a2f4 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/9c/9c7c268fa6492449654839df69f2a2f4.info b/EscapeTheGhost/Library/metadata/9c/9c7c268fa6492449654839df69f2a2f4.info
deleted file mode 100644
index af416f0..0000000
Binary files a/EscapeTheGhost/Library/metadata/9c/9c7c268fa6492449654839df69f2a2f4.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/9d/9d345c3252c147c89e8b61a249a46a9d b/EscapeTheGhost/Library/metadata/9d/9d345c3252c147c89e8b61a249a46a9d
deleted file mode 100644
index 2cc2918..0000000
Binary files a/EscapeTheGhost/Library/metadata/9d/9d345c3252c147c89e8b61a249a46a9d and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/9d/9d345c3252c147c89e8b61a249a46a9d.info b/EscapeTheGhost/Library/metadata/9d/9d345c3252c147c89e8b61a249a46a9d.info
deleted file mode 100644
index 710c51b..0000000
Binary files a/EscapeTheGhost/Library/metadata/9d/9d345c3252c147c89e8b61a249a46a9d.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/9d/9da568db70dafa345a908282554b3672 b/EscapeTheGhost/Library/metadata/9d/9da568db70dafa345a908282554b3672
deleted file mode 100644
index cd47557..0000000
Binary files a/EscapeTheGhost/Library/metadata/9d/9da568db70dafa345a908282554b3672 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/9d/9da568db70dafa345a908282554b3672.info b/EscapeTheGhost/Library/metadata/9d/9da568db70dafa345a908282554b3672.info
deleted file mode 100644
index 12b6c2c..0000000
Binary files a/EscapeTheGhost/Library/metadata/9d/9da568db70dafa345a908282554b3672.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/9d/9de24983a2c6cbe4f925c3e98a79b804 b/EscapeTheGhost/Library/metadata/9d/9de24983a2c6cbe4f925c3e98a79b804
deleted file mode 100644
index 37bb11e..0000000
Binary files a/EscapeTheGhost/Library/metadata/9d/9de24983a2c6cbe4f925c3e98a79b804 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/9d/9de24983a2c6cbe4f925c3e98a79b804.info b/EscapeTheGhost/Library/metadata/9d/9de24983a2c6cbe4f925c3e98a79b804.info
deleted file mode 100644
index e61ea0a..0000000
Binary files a/EscapeTheGhost/Library/metadata/9d/9de24983a2c6cbe4f925c3e98a79b804.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/9d/9de9e8523c82543c5b3e40a4b51aa2c9 b/EscapeTheGhost/Library/metadata/9d/9de9e8523c82543c5b3e40a4b51aa2c9
deleted file mode 100644
index e18c053..0000000
Binary files a/EscapeTheGhost/Library/metadata/9d/9de9e8523c82543c5b3e40a4b51aa2c9 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/9d/9de9e8523c82543c5b3e40a4b51aa2c9.info b/EscapeTheGhost/Library/metadata/9d/9de9e8523c82543c5b3e40a4b51aa2c9.info
deleted file mode 100644
index f352cb1..0000000
Binary files a/EscapeTheGhost/Library/metadata/9d/9de9e8523c82543c5b3e40a4b51aa2c9.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/9e/9e18667272bc0436d9cbf9166c874cb6 b/EscapeTheGhost/Library/metadata/9e/9e18667272bc0436d9cbf9166c874cb6
deleted file mode 100644
index dbee8e4..0000000
Binary files a/EscapeTheGhost/Library/metadata/9e/9e18667272bc0436d9cbf9166c874cb6 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/9e/9e18667272bc0436d9cbf9166c874cb6.info b/EscapeTheGhost/Library/metadata/9e/9e18667272bc0436d9cbf9166c874cb6.info
deleted file mode 100644
index 2806bfa..0000000
Binary files a/EscapeTheGhost/Library/metadata/9e/9e18667272bc0436d9cbf9166c874cb6.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/9e/9e69df8ff024a4dc1a9e5c22725e4863 b/EscapeTheGhost/Library/metadata/9e/9e69df8ff024a4dc1a9e5c22725e4863
deleted file mode 100644
index 94cf41f..0000000
Binary files a/EscapeTheGhost/Library/metadata/9e/9e69df8ff024a4dc1a9e5c22725e4863 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/9e/9e69df8ff024a4dc1a9e5c22725e4863.info b/EscapeTheGhost/Library/metadata/9e/9e69df8ff024a4dc1a9e5c22725e4863.info
deleted file mode 100644
index 3eb7bd2..0000000
Binary files a/EscapeTheGhost/Library/metadata/9e/9e69df8ff024a4dc1a9e5c22725e4863.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/9e/9ec5dc72125424af38a9bfaca532acc8 b/EscapeTheGhost/Library/metadata/9e/9ec5dc72125424af38a9bfaca532acc8
deleted file mode 100644
index b35384e..0000000
Binary files a/EscapeTheGhost/Library/metadata/9e/9ec5dc72125424af38a9bfaca532acc8 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/9e/9ec5dc72125424af38a9bfaca532acc8.info b/EscapeTheGhost/Library/metadata/9e/9ec5dc72125424af38a9bfaca532acc8.info
deleted file mode 100644
index 6bf97cd..0000000
Binary files a/EscapeTheGhost/Library/metadata/9e/9ec5dc72125424af38a9bfaca532acc8.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/9e/9edc9283e7d6409fab242fe8fb6a822c b/EscapeTheGhost/Library/metadata/9e/9edc9283e7d6409fab242fe8fb6a822c
deleted file mode 100644
index 2eefdf1..0000000
Binary files a/EscapeTheGhost/Library/metadata/9e/9edc9283e7d6409fab242fe8fb6a822c and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/9e/9edc9283e7d6409fab242fe8fb6a822c.info b/EscapeTheGhost/Library/metadata/9e/9edc9283e7d6409fab242fe8fb6a822c.info
deleted file mode 100644
index 9ac8dad..0000000
Binary files a/EscapeTheGhost/Library/metadata/9e/9edc9283e7d6409fab242fe8fb6a822c.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/9f/9f091dea68a1452cb6c04a6dfa73d5f5 b/EscapeTheGhost/Library/metadata/9f/9f091dea68a1452cb6c04a6dfa73d5f5
deleted file mode 100644
index b2c1b59..0000000
Binary files a/EscapeTheGhost/Library/metadata/9f/9f091dea68a1452cb6c04a6dfa73d5f5 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/9f/9f091dea68a1452cb6c04a6dfa73d5f5.info b/EscapeTheGhost/Library/metadata/9f/9f091dea68a1452cb6c04a6dfa73d5f5.info
deleted file mode 100644
index 0f9e75b..0000000
Binary files a/EscapeTheGhost/Library/metadata/9f/9f091dea68a1452cb6c04a6dfa73d5f5.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/9f/9f17a0688211d476f8d8c9742bb9f992 b/EscapeTheGhost/Library/metadata/9f/9f17a0688211d476f8d8c9742bb9f992
deleted file mode 100644
index 7cc8a26..0000000
Binary files a/EscapeTheGhost/Library/metadata/9f/9f17a0688211d476f8d8c9742bb9f992 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/9f/9f17a0688211d476f8d8c9742bb9f992.info b/EscapeTheGhost/Library/metadata/9f/9f17a0688211d476f8d8c9742bb9f992.info
deleted file mode 100644
index e53987b..0000000
Binary files a/EscapeTheGhost/Library/metadata/9f/9f17a0688211d476f8d8c9742bb9f992.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/a2/a2d2e078736b94e5680096c99899b773 b/EscapeTheGhost/Library/metadata/a2/a2d2e078736b94e5680096c99899b773
deleted file mode 100644
index 324bae3..0000000
Binary files a/EscapeTheGhost/Library/metadata/a2/a2d2e078736b94e5680096c99899b773 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/a2/a2d2e078736b94e5680096c99899b773.info b/EscapeTheGhost/Library/metadata/a2/a2d2e078736b94e5680096c99899b773.info
deleted file mode 100644
index 2cb4e0e..0000000
Binary files a/EscapeTheGhost/Library/metadata/a2/a2d2e078736b94e5680096c99899b773.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/a3/a342381d77833427fa10621e38fbae10 b/EscapeTheGhost/Library/metadata/a3/a342381d77833427fa10621e38fbae10
deleted file mode 100644
index 56e587c..0000000
Binary files a/EscapeTheGhost/Library/metadata/a3/a342381d77833427fa10621e38fbae10 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/a3/a342381d77833427fa10621e38fbae10.info b/EscapeTheGhost/Library/metadata/a3/a342381d77833427fa10621e38fbae10.info
deleted file mode 100644
index a8d4a9f..0000000
Binary files a/EscapeTheGhost/Library/metadata/a3/a342381d77833427fa10621e38fbae10.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/a3/a37e18887fa954edf92bc36bc353b879 b/EscapeTheGhost/Library/metadata/a3/a37e18887fa954edf92bc36bc353b879
deleted file mode 100644
index 6dd8724..0000000
Binary files a/EscapeTheGhost/Library/metadata/a3/a37e18887fa954edf92bc36bc353b879 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/a3/a37e18887fa954edf92bc36bc353b879.info b/EscapeTheGhost/Library/metadata/a3/a37e18887fa954edf92bc36bc353b879.info
deleted file mode 100644
index 99b8c82..0000000
Binary files a/EscapeTheGhost/Library/metadata/a3/a37e18887fa954edf92bc36bc353b879.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/a5/a54eac0e085a44468963fa57f209470d b/EscapeTheGhost/Library/metadata/a5/a54eac0e085a44468963fa57f209470d
deleted file mode 100644
index 5be6293..0000000
Binary files a/EscapeTheGhost/Library/metadata/a5/a54eac0e085a44468963fa57f209470d and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/a5/a54eac0e085a44468963fa57f209470d.info b/EscapeTheGhost/Library/metadata/a5/a54eac0e085a44468963fa57f209470d.info
deleted file mode 100644
index f60fe50..0000000
Binary files a/EscapeTheGhost/Library/metadata/a5/a54eac0e085a44468963fa57f209470d.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/a5/a55fb7b4961a425381d1282fc424f966 b/EscapeTheGhost/Library/metadata/a5/a55fb7b4961a425381d1282fc424f966
deleted file mode 100644
index bae93e4..0000000
Binary files a/EscapeTheGhost/Library/metadata/a5/a55fb7b4961a425381d1282fc424f966 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/a5/a55fb7b4961a425381d1282fc424f966.info b/EscapeTheGhost/Library/metadata/a5/a55fb7b4961a425381d1282fc424f966.info
deleted file mode 100644
index cd98805..0000000
Binary files a/EscapeTheGhost/Library/metadata/a5/a55fb7b4961a425381d1282fc424f966.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/a5/a5edd19845e0e426eb775477a7988a4a b/EscapeTheGhost/Library/metadata/a5/a5edd19845e0e426eb775477a7988a4a
deleted file mode 100644
index 07ed381..0000000
Binary files a/EscapeTheGhost/Library/metadata/a5/a5edd19845e0e426eb775477a7988a4a and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/a5/a5edd19845e0e426eb775477a7988a4a.info b/EscapeTheGhost/Library/metadata/a5/a5edd19845e0e426eb775477a7988a4a.info
deleted file mode 100644
index eeb7f3b..0000000
Binary files a/EscapeTheGhost/Library/metadata/a5/a5edd19845e0e426eb775477a7988a4a.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/a6/a6842a74831964edc8fefa1c0aed89dc b/EscapeTheGhost/Library/metadata/a6/a6842a74831964edc8fefa1c0aed89dc
deleted file mode 100644
index e9eee4c..0000000
Binary files a/EscapeTheGhost/Library/metadata/a6/a6842a74831964edc8fefa1c0aed89dc and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/a6/a6842a74831964edc8fefa1c0aed89dc.info b/EscapeTheGhost/Library/metadata/a6/a6842a74831964edc8fefa1c0aed89dc.info
deleted file mode 100644
index a217ff1..0000000
Binary files a/EscapeTheGhost/Library/metadata/a6/a6842a74831964edc8fefa1c0aed89dc.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/a7/a7b89acd74e047778b42209a7a733d39 b/EscapeTheGhost/Library/metadata/a7/a7b89acd74e047778b42209a7a733d39
deleted file mode 100644
index 2626490..0000000
Binary files a/EscapeTheGhost/Library/metadata/a7/a7b89acd74e047778b42209a7a733d39 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/a7/a7b89acd74e047778b42209a7a733d39.info b/EscapeTheGhost/Library/metadata/a7/a7b89acd74e047778b42209a7a733d39.info
deleted file mode 100644
index 77c18a5..0000000
Binary files a/EscapeTheGhost/Library/metadata/a7/a7b89acd74e047778b42209a7a733d39.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/a7/a7ec9e7ad8b847b7ae4510af83c5d868 b/EscapeTheGhost/Library/metadata/a7/a7ec9e7ad8b847b7ae4510af83c5d868
deleted file mode 100644
index c5b82d8..0000000
Binary files a/EscapeTheGhost/Library/metadata/a7/a7ec9e7ad8b847b7ae4510af83c5d868 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/a7/a7ec9e7ad8b847b7ae4510af83c5d868.info b/EscapeTheGhost/Library/metadata/a7/a7ec9e7ad8b847b7ae4510af83c5d868.info
deleted file mode 100644
index a15587c..0000000
Binary files a/EscapeTheGhost/Library/metadata/a7/a7ec9e7ad8b847b7ae4510af83c5d868.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/a8/a8d9e44eff3f447db9448925617ccb44 b/EscapeTheGhost/Library/metadata/a8/a8d9e44eff3f447db9448925617ccb44
deleted file mode 100644
index 5bef10a..0000000
Binary files a/EscapeTheGhost/Library/metadata/a8/a8d9e44eff3f447db9448925617ccb44 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/a8/a8d9e44eff3f447db9448925617ccb44.info b/EscapeTheGhost/Library/metadata/a8/a8d9e44eff3f447db9448925617ccb44.info
deleted file mode 100644
index 4e00c1c..0000000
Binary files a/EscapeTheGhost/Library/metadata/a8/a8d9e44eff3f447db9448925617ccb44.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/a9/a98bc92072da64d49a393088e55ce2a0 b/EscapeTheGhost/Library/metadata/a9/a98bc92072da64d49a393088e55ce2a0
deleted file mode 100644
index cd46488..0000000
Binary files a/EscapeTheGhost/Library/metadata/a9/a98bc92072da64d49a393088e55ce2a0 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/a9/a98bc92072da64d49a393088e55ce2a0.info b/EscapeTheGhost/Library/metadata/a9/a98bc92072da64d49a393088e55ce2a0.info
deleted file mode 100644
index 2bcd01f..0000000
Binary files a/EscapeTheGhost/Library/metadata/a9/a98bc92072da64d49a393088e55ce2a0.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/aa/aa160f27c3fe4052a5850e21108811b6 b/EscapeTheGhost/Library/metadata/aa/aa160f27c3fe4052a5850e21108811b6
deleted file mode 100644
index 52bd76e..0000000
Binary files a/EscapeTheGhost/Library/metadata/aa/aa160f27c3fe4052a5850e21108811b6 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/aa/aa160f27c3fe4052a5850e21108811b6.info b/EscapeTheGhost/Library/metadata/aa/aa160f27c3fe4052a5850e21108811b6.info
deleted file mode 100644
index 1b74647..0000000
Binary files a/EscapeTheGhost/Library/metadata/aa/aa160f27c3fe4052a5850e21108811b6.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/aa/aa76955fe5bb44f7915d91db8c7043c4 b/EscapeTheGhost/Library/metadata/aa/aa76955fe5bb44f7915d91db8c7043c4
deleted file mode 100644
index 0337a10..0000000
Binary files a/EscapeTheGhost/Library/metadata/aa/aa76955fe5bb44f7915d91db8c7043c4 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/aa/aa76955fe5bb44f7915d91db8c7043c4.info b/EscapeTheGhost/Library/metadata/aa/aa76955fe5bb44f7915d91db8c7043c4.info
deleted file mode 100644
index 52e62ec..0000000
Binary files a/EscapeTheGhost/Library/metadata/aa/aa76955fe5bb44f7915d91db8c7043c4.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/ab/ab2114bdc8544297b417dfefe9f1e410 b/EscapeTheGhost/Library/metadata/ab/ab2114bdc8544297b417dfefe9f1e410
deleted file mode 100644
index bad541b..0000000
Binary files a/EscapeTheGhost/Library/metadata/ab/ab2114bdc8544297b417dfefe9f1e410 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/ab/ab2114bdc8544297b417dfefe9f1e410.info b/EscapeTheGhost/Library/metadata/ab/ab2114bdc8544297b417dfefe9f1e410.info
deleted file mode 100644
index 4de42ab..0000000
Binary files a/EscapeTheGhost/Library/metadata/ab/ab2114bdc8544297b417dfefe9f1e410.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/ab/ab866bd39382069418f5c179c1e1ab3e b/EscapeTheGhost/Library/metadata/ab/ab866bd39382069418f5c179c1e1ab3e
deleted file mode 100644
index d787669..0000000
Binary files a/EscapeTheGhost/Library/metadata/ab/ab866bd39382069418f5c179c1e1ab3e and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/ab/ab866bd39382069418f5c179c1e1ab3e.info b/EscapeTheGhost/Library/metadata/ab/ab866bd39382069418f5c179c1e1ab3e.info
deleted file mode 100644
index 27c84b7..0000000
Binary files a/EscapeTheGhost/Library/metadata/ab/ab866bd39382069418f5c179c1e1ab3e.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/ab/abdc053b8e3644f299aedc641d609a84 b/EscapeTheGhost/Library/metadata/ab/abdc053b8e3644f299aedc641d609a84
deleted file mode 100644
index b3ee49c..0000000
Binary files a/EscapeTheGhost/Library/metadata/ab/abdc053b8e3644f299aedc641d609a84 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/ab/abdc053b8e3644f299aedc641d609a84.info b/EscapeTheGhost/Library/metadata/ab/abdc053b8e3644f299aedc641d609a84.info
deleted file mode 100644
index 024d7d5..0000000
Binary files a/EscapeTheGhost/Library/metadata/ab/abdc053b8e3644f299aedc641d609a84.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/ad/adebbd281f1a4ef3a30be7f21937e02f b/EscapeTheGhost/Library/metadata/ad/adebbd281f1a4ef3a30be7f21937e02f
deleted file mode 100644
index cf576c2..0000000
Binary files a/EscapeTheGhost/Library/metadata/ad/adebbd281f1a4ef3a30be7f21937e02f and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/ad/adebbd281f1a4ef3a30be7f21937e02f.info b/EscapeTheGhost/Library/metadata/ad/adebbd281f1a4ef3a30be7f21937e02f.info
deleted file mode 100644
index c70deee..0000000
Binary files a/EscapeTheGhost/Library/metadata/ad/adebbd281f1a4ef3a30be7f21937e02f.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/af/af77d853213b64700887ae98f21e4d72 b/EscapeTheGhost/Library/metadata/af/af77d853213b64700887ae98f21e4d72
deleted file mode 100644
index 9321d8c..0000000
Binary files a/EscapeTheGhost/Library/metadata/af/af77d853213b64700887ae98f21e4d72 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/af/af77d853213b64700887ae98f21e4d72.info b/EscapeTheGhost/Library/metadata/af/af77d853213b64700887ae98f21e4d72.info
deleted file mode 100644
index 4598d7e..0000000
Binary files a/EscapeTheGhost/Library/metadata/af/af77d853213b64700887ae98f21e4d72.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/af/af978c9ff2a7a784c8afa7637b7ff41e b/EscapeTheGhost/Library/metadata/af/af978c9ff2a7a784c8afa7637b7ff41e
deleted file mode 100644
index 3c0e096..0000000
Binary files a/EscapeTheGhost/Library/metadata/af/af978c9ff2a7a784c8afa7637b7ff41e and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/af/af978c9ff2a7a784c8afa7637b7ff41e.info b/EscapeTheGhost/Library/metadata/af/af978c9ff2a7a784c8afa7637b7ff41e.info
deleted file mode 100644
index 38d113c..0000000
Binary files a/EscapeTheGhost/Library/metadata/af/af978c9ff2a7a784c8afa7637b7ff41e.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/af/afd7697844f4142f9aa91471c1fba506 b/EscapeTheGhost/Library/metadata/af/afd7697844f4142f9aa91471c1fba506
deleted file mode 100644
index 4170c9e..0000000
Binary files a/EscapeTheGhost/Library/metadata/af/afd7697844f4142f9aa91471c1fba506 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/af/afd7697844f4142f9aa91471c1fba506.info b/EscapeTheGhost/Library/metadata/af/afd7697844f4142f9aa91471c1fba506.info
deleted file mode 100644
index b2f76ce..0000000
Binary files a/EscapeTheGhost/Library/metadata/af/afd7697844f4142f9aa91471c1fba506.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/b0/b09be1f217d34247af54863a2f5587e1 b/EscapeTheGhost/Library/metadata/b0/b09be1f217d34247af54863a2f5587e1
deleted file mode 100644
index 4bf9e11..0000000
Binary files a/EscapeTheGhost/Library/metadata/b0/b09be1f217d34247af54863a2f5587e1 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/b0/b09be1f217d34247af54863a2f5587e1.info b/EscapeTheGhost/Library/metadata/b0/b09be1f217d34247af54863a2f5587e1.info
deleted file mode 100644
index e357afd..0000000
Binary files a/EscapeTheGhost/Library/metadata/b0/b09be1f217d34247af54863a2f5587e1.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/b0/b0c12f0066bd444a1b3a900679169f30 b/EscapeTheGhost/Library/metadata/b0/b0c12f0066bd444a1b3a900679169f30
deleted file mode 100644
index 3a58406..0000000
Binary files a/EscapeTheGhost/Library/metadata/b0/b0c12f0066bd444a1b3a900679169f30 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/b0/b0c12f0066bd444a1b3a900679169f30.info b/EscapeTheGhost/Library/metadata/b0/b0c12f0066bd444a1b3a900679169f30.info
deleted file mode 100644
index 6c6dc53..0000000
Binary files a/EscapeTheGhost/Library/metadata/b0/b0c12f0066bd444a1b3a900679169f30.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/b1/b181a174758843d998af1f275856d318 b/EscapeTheGhost/Library/metadata/b1/b181a174758843d998af1f275856d318
deleted file mode 100644
index 032f2ac..0000000
Binary files a/EscapeTheGhost/Library/metadata/b1/b181a174758843d998af1f275856d318 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/b1/b181a174758843d998af1f275856d318.info b/EscapeTheGhost/Library/metadata/b1/b181a174758843d998af1f275856d318.info
deleted file mode 100644
index 7cf1080..0000000
Binary files a/EscapeTheGhost/Library/metadata/b1/b181a174758843d998af1f275856d318.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/b2/b219c86ce508e478367c0a46e1aa9fe4 b/EscapeTheGhost/Library/metadata/b2/b219c86ce508e478367c0a46e1aa9fe4
deleted file mode 100644
index 0c3c21d..0000000
Binary files a/EscapeTheGhost/Library/metadata/b2/b219c86ce508e478367c0a46e1aa9fe4 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/b2/b219c86ce508e478367c0a46e1aa9fe4.info b/EscapeTheGhost/Library/metadata/b2/b219c86ce508e478367c0a46e1aa9fe4.info
deleted file mode 100644
index c7faea2..0000000
Binary files a/EscapeTheGhost/Library/metadata/b2/b219c86ce508e478367c0a46e1aa9fe4.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/b2/b274f3d1ea05d4bd8a13f4556f7797d2 b/EscapeTheGhost/Library/metadata/b2/b274f3d1ea05d4bd8a13f4556f7797d2
deleted file mode 100644
index 4a47d46..0000000
Binary files a/EscapeTheGhost/Library/metadata/b2/b274f3d1ea05d4bd8a13f4556f7797d2 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/b2/b274f3d1ea05d4bd8a13f4556f7797d2.info b/EscapeTheGhost/Library/metadata/b2/b274f3d1ea05d4bd8a13f4556f7797d2.info
deleted file mode 100644
index b65d8b4..0000000
Binary files a/EscapeTheGhost/Library/metadata/b2/b274f3d1ea05d4bd8a13f4556f7797d2.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/b2/b2b693dffac3a4433b3114fea0b7fd4e b/EscapeTheGhost/Library/metadata/b2/b2b693dffac3a4433b3114fea0b7fd4e
deleted file mode 100644
index 0c07e4b..0000000
Binary files a/EscapeTheGhost/Library/metadata/b2/b2b693dffac3a4433b3114fea0b7fd4e and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/b2/b2b693dffac3a4433b3114fea0b7fd4e.info b/EscapeTheGhost/Library/metadata/b2/b2b693dffac3a4433b3114fea0b7fd4e.info
deleted file mode 100644
index d172e84..0000000
Binary files a/EscapeTheGhost/Library/metadata/b2/b2b693dffac3a4433b3114fea0b7fd4e.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/b2/b2bead50dbf86924f8e51f03ddbebf70 b/EscapeTheGhost/Library/metadata/b2/b2bead50dbf86924f8e51f03ddbebf70
deleted file mode 100644
index ee12e7f..0000000
Binary files a/EscapeTheGhost/Library/metadata/b2/b2bead50dbf86924f8e51f03ddbebf70 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/b2/b2bead50dbf86924f8e51f03ddbebf70.info b/EscapeTheGhost/Library/metadata/b2/b2bead50dbf86924f8e51f03ddbebf70.info
deleted file mode 100644
index 004c758..0000000
Binary files a/EscapeTheGhost/Library/metadata/b2/b2bead50dbf86924f8e51f03ddbebf70.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/b3/b32abd1c9d73a4cce8389f084ac12b11 b/EscapeTheGhost/Library/metadata/b3/b32abd1c9d73a4cce8389f084ac12b11
deleted file mode 100644
index 30b644b..0000000
Binary files a/EscapeTheGhost/Library/metadata/b3/b32abd1c9d73a4cce8389f084ac12b11 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/b3/b32abd1c9d73a4cce8389f084ac12b11.info b/EscapeTheGhost/Library/metadata/b3/b32abd1c9d73a4cce8389f084ac12b11.info
deleted file mode 100644
index 8415f44..0000000
Binary files a/EscapeTheGhost/Library/metadata/b3/b32abd1c9d73a4cce8389f084ac12b11.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/b4/b477863df05004372a7f00730ef3bb55 b/EscapeTheGhost/Library/metadata/b4/b477863df05004372a7f00730ef3bb55
deleted file mode 100644
index 1a487ce..0000000
Binary files a/EscapeTheGhost/Library/metadata/b4/b477863df05004372a7f00730ef3bb55 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/b4/b477863df05004372a7f00730ef3bb55.info b/EscapeTheGhost/Library/metadata/b4/b477863df05004372a7f00730ef3bb55.info
deleted file mode 100644
index 66b43a0..0000000
Binary files a/EscapeTheGhost/Library/metadata/b4/b477863df05004372a7f00730ef3bb55.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/b5/b52e557db2c2b4eebb10444f1d582029 b/EscapeTheGhost/Library/metadata/b5/b52e557db2c2b4eebb10444f1d582029
deleted file mode 100644
index 7a016b5..0000000
Binary files a/EscapeTheGhost/Library/metadata/b5/b52e557db2c2b4eebb10444f1d582029 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/b5/b52e557db2c2b4eebb10444f1d582029.info b/EscapeTheGhost/Library/metadata/b5/b52e557db2c2b4eebb10444f1d582029.info
deleted file mode 100644
index 36c65ef..0000000
Binary files a/EscapeTheGhost/Library/metadata/b5/b52e557db2c2b4eebb10444f1d582029.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/b5/b5d6c28ed7b94775be9e2560f300247c b/EscapeTheGhost/Library/metadata/b5/b5d6c28ed7b94775be9e2560f300247c
deleted file mode 100644
index 4d3bd0e..0000000
Binary files a/EscapeTheGhost/Library/metadata/b5/b5d6c28ed7b94775be9e2560f300247c and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/b5/b5d6c28ed7b94775be9e2560f300247c.info b/EscapeTheGhost/Library/metadata/b5/b5d6c28ed7b94775be9e2560f300247c.info
deleted file mode 100644
index 389834e..0000000
Binary files a/EscapeTheGhost/Library/metadata/b5/b5d6c28ed7b94775be9e2560f300247c.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/b5/b5da970776034f77a070d99423d68791 b/EscapeTheGhost/Library/metadata/b5/b5da970776034f77a070d99423d68791
deleted file mode 100644
index c027da8..0000000
Binary files a/EscapeTheGhost/Library/metadata/b5/b5da970776034f77a070d99423d68791 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/b5/b5da970776034f77a070d99423d68791.info b/EscapeTheGhost/Library/metadata/b5/b5da970776034f77a070d99423d68791.info
deleted file mode 100644
index eab10b5..0000000
Binary files a/EscapeTheGhost/Library/metadata/b5/b5da970776034f77a070d99423d68791.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/b5/b5f4343795a0e4626ac1fe4a9e6fce59 b/EscapeTheGhost/Library/metadata/b5/b5f4343795a0e4626ac1fe4a9e6fce59
deleted file mode 100644
index 2c998a4..0000000
Binary files a/EscapeTheGhost/Library/metadata/b5/b5f4343795a0e4626ac1fe4a9e6fce59 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/b5/b5f4343795a0e4626ac1fe4a9e6fce59.info b/EscapeTheGhost/Library/metadata/b5/b5f4343795a0e4626ac1fe4a9e6fce59.info
deleted file mode 100644
index 2964e98..0000000
Binary files a/EscapeTheGhost/Library/metadata/b5/b5f4343795a0e4626ac1fe4a9e6fce59.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/b6/b6e75d7f429a4e7e9e1ffb4f85cff49f b/EscapeTheGhost/Library/metadata/b6/b6e75d7f429a4e7e9e1ffb4f85cff49f
deleted file mode 100644
index 73329ef..0000000
Binary files a/EscapeTheGhost/Library/metadata/b6/b6e75d7f429a4e7e9e1ffb4f85cff49f and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/b6/b6e75d7f429a4e7e9e1ffb4f85cff49f.info b/EscapeTheGhost/Library/metadata/b6/b6e75d7f429a4e7e9e1ffb4f85cff49f.info
deleted file mode 100644
index bd9fd05..0000000
Binary files a/EscapeTheGhost/Library/metadata/b6/b6e75d7f429a4e7e9e1ffb4f85cff49f.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/b7/b77b1ad9c05af0412725856c6c53b037 b/EscapeTheGhost/Library/metadata/b7/b77b1ad9c05af0412725856c6c53b037
deleted file mode 100644
index f385e85..0000000
Binary files a/EscapeTheGhost/Library/metadata/b7/b77b1ad9c05af0412725856c6c53b037 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/b7/b77b1ad9c05af0412725856c6c53b037.info b/EscapeTheGhost/Library/metadata/b7/b77b1ad9c05af0412725856c6c53b037.info
deleted file mode 100644
index 357cb88..0000000
Binary files a/EscapeTheGhost/Library/metadata/b7/b77b1ad9c05af0412725856c6c53b037.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/b7/b7e8a8fb69eacee439474914ea54bf9b b/EscapeTheGhost/Library/metadata/b7/b7e8a8fb69eacee439474914ea54bf9b
deleted file mode 100644
index fbc9f72..0000000
Binary files a/EscapeTheGhost/Library/metadata/b7/b7e8a8fb69eacee439474914ea54bf9b and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/b7/b7e8a8fb69eacee439474914ea54bf9b.info b/EscapeTheGhost/Library/metadata/b7/b7e8a8fb69eacee439474914ea54bf9b.info
deleted file mode 100644
index 4f2d76b..0000000
Binary files a/EscapeTheGhost/Library/metadata/b7/b7e8a8fb69eacee439474914ea54bf9b.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/b8/b83f06ac0c0696e9563230865ca72b81 b/EscapeTheGhost/Library/metadata/b8/b83f06ac0c0696e9563230865ca72b81
deleted file mode 100644
index ce46757..0000000
Binary files a/EscapeTheGhost/Library/metadata/b8/b83f06ac0c0696e9563230865ca72b81 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/b8/b83f06ac0c0696e9563230865ca72b81.info b/EscapeTheGhost/Library/metadata/b8/b83f06ac0c0696e9563230865ca72b81.info
deleted file mode 100644
index 7916ac7..0000000
Binary files a/EscapeTheGhost/Library/metadata/b8/b83f06ac0c0696e9563230865ca72b81.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/b8/b84e31775b6c7466392d5c8a0eb32027 b/EscapeTheGhost/Library/metadata/b8/b84e31775b6c7466392d5c8a0eb32027
deleted file mode 100644
index 03f78da..0000000
Binary files a/EscapeTheGhost/Library/metadata/b8/b84e31775b6c7466392d5c8a0eb32027 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/b8/b84e31775b6c7466392d5c8a0eb32027.info b/EscapeTheGhost/Library/metadata/b8/b84e31775b6c7466392d5c8a0eb32027.info
deleted file mode 100644
index 6d4146a..0000000
Binary files a/EscapeTheGhost/Library/metadata/b8/b84e31775b6c7466392d5c8a0eb32027.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/b9/b95ab00277ee47c687d710a3bb623d0a b/EscapeTheGhost/Library/metadata/b9/b95ab00277ee47c687d710a3bb623d0a
deleted file mode 100644
index dac7312..0000000
Binary files a/EscapeTheGhost/Library/metadata/b9/b95ab00277ee47c687d710a3bb623d0a and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/b9/b95ab00277ee47c687d710a3bb623d0a.info b/EscapeTheGhost/Library/metadata/b9/b95ab00277ee47c687d710a3bb623d0a.info
deleted file mode 100644
index 34b7f2a..0000000
Binary files a/EscapeTheGhost/Library/metadata/b9/b95ab00277ee47c687d710a3bb623d0a.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/b9/b9f324f08cd904ec986357c98dd9eaa6 b/EscapeTheGhost/Library/metadata/b9/b9f324f08cd904ec986357c98dd9eaa6
deleted file mode 100644
index df6c411..0000000
Binary files a/EscapeTheGhost/Library/metadata/b9/b9f324f08cd904ec986357c98dd9eaa6 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/b9/b9f324f08cd904ec986357c98dd9eaa6.info b/EscapeTheGhost/Library/metadata/b9/b9f324f08cd904ec986357c98dd9eaa6.info
deleted file mode 100644
index 35f0312..0000000
Binary files a/EscapeTheGhost/Library/metadata/b9/b9f324f08cd904ec986357c98dd9eaa6.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/ba/bac185a28e198c1419b649ca946942ea b/EscapeTheGhost/Library/metadata/ba/bac185a28e198c1419b649ca946942ea
deleted file mode 100644
index 21b8d3b..0000000
Binary files a/EscapeTheGhost/Library/metadata/ba/bac185a28e198c1419b649ca946942ea and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/ba/bac185a28e198c1419b649ca946942ea.info b/EscapeTheGhost/Library/metadata/ba/bac185a28e198c1419b649ca946942ea.info
deleted file mode 100644
index 19dc1ad..0000000
Binary files a/EscapeTheGhost/Library/metadata/ba/bac185a28e198c1419b649ca946942ea.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/bb/bb05cab7d802aa5468f8f2f86840d984 b/EscapeTheGhost/Library/metadata/bb/bb05cab7d802aa5468f8f2f86840d984
deleted file mode 100644
index 1a00384..0000000
Binary files a/EscapeTheGhost/Library/metadata/bb/bb05cab7d802aa5468f8f2f86840d984 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/bb/bb05cab7d802aa5468f8f2f86840d984.info b/EscapeTheGhost/Library/metadata/bb/bb05cab7d802aa5468f8f2f86840d984.info
deleted file mode 100644
index 7fcd260..0000000
Binary files a/EscapeTheGhost/Library/metadata/bb/bb05cab7d802aa5468f8f2f86840d984.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/bb/bb15697a279504a90b825c44dc355047 b/EscapeTheGhost/Library/metadata/bb/bb15697a279504a90b825c44dc355047
deleted file mode 100644
index 0bf632f..0000000
Binary files a/EscapeTheGhost/Library/metadata/bb/bb15697a279504a90b825c44dc355047 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/bb/bb15697a279504a90b825c44dc355047.info b/EscapeTheGhost/Library/metadata/bb/bb15697a279504a90b825c44dc355047.info
deleted file mode 100644
index 2463154..0000000
Binary files a/EscapeTheGhost/Library/metadata/bb/bb15697a279504a90b825c44dc355047.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/bb/bb42b2d967d6427983c901a4ffc8ecd9 b/EscapeTheGhost/Library/metadata/bb/bb42b2d967d6427983c901a4ffc8ecd9
deleted file mode 100644
index 92f2545..0000000
Binary files a/EscapeTheGhost/Library/metadata/bb/bb42b2d967d6427983c901a4ffc8ecd9 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/bb/bb42b2d967d6427983c901a4ffc8ecd9.info b/EscapeTheGhost/Library/metadata/bb/bb42b2d967d6427983c901a4ffc8ecd9.info
deleted file mode 100644
index 4ac70ec..0000000
Binary files a/EscapeTheGhost/Library/metadata/bb/bb42b2d967d6427983c901a4ffc8ecd9.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/bb/bbec1324b05a54939ad2fea2d7e11063 b/EscapeTheGhost/Library/metadata/bb/bbec1324b05a54939ad2fea2d7e11063
deleted file mode 100644
index eb25581..0000000
Binary files a/EscapeTheGhost/Library/metadata/bb/bbec1324b05a54939ad2fea2d7e11063 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/bb/bbec1324b05a54939ad2fea2d7e11063.info b/EscapeTheGhost/Library/metadata/bb/bbec1324b05a54939ad2fea2d7e11063.info
deleted file mode 100644
index d1118c2..0000000
Binary files a/EscapeTheGhost/Library/metadata/bb/bbec1324b05a54939ad2fea2d7e11063.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/bc/bc00e25696e4132499f56528d3fed2e3 b/EscapeTheGhost/Library/metadata/bc/bc00e25696e4132499f56528d3fed2e3
deleted file mode 100644
index 05bce25..0000000
Binary files a/EscapeTheGhost/Library/metadata/bc/bc00e25696e4132499f56528d3fed2e3 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/bc/bc00e25696e4132499f56528d3fed2e3.info b/EscapeTheGhost/Library/metadata/bc/bc00e25696e4132499f56528d3fed2e3.info
deleted file mode 100644
index 6aca281..0000000
Binary files a/EscapeTheGhost/Library/metadata/bc/bc00e25696e4132499f56528d3fed2e3.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/bc/bcd27da1c9ae94d2cafe094482a20792 b/EscapeTheGhost/Library/metadata/bc/bcd27da1c9ae94d2cafe094482a20792
deleted file mode 100644
index c1c86ca..0000000
Binary files a/EscapeTheGhost/Library/metadata/bc/bcd27da1c9ae94d2cafe094482a20792 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/bc/bcd27da1c9ae94d2cafe094482a20792.info b/EscapeTheGhost/Library/metadata/bc/bcd27da1c9ae94d2cafe094482a20792.info
deleted file mode 100644
index c4322a9..0000000
Binary files a/EscapeTheGhost/Library/metadata/bc/bcd27da1c9ae94d2cafe094482a20792.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/be/be4b06d1ee51e4ac2a01a0e499d4c214 b/EscapeTheGhost/Library/metadata/be/be4b06d1ee51e4ac2a01a0e499d4c214
deleted file mode 100644
index 96bafab..0000000
Binary files a/EscapeTheGhost/Library/metadata/be/be4b06d1ee51e4ac2a01a0e499d4c214 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/be/be4b06d1ee51e4ac2a01a0e499d4c214.info b/EscapeTheGhost/Library/metadata/be/be4b06d1ee51e4ac2a01a0e499d4c214.info
deleted file mode 100644
index 5bab1d2..0000000
Binary files a/EscapeTheGhost/Library/metadata/be/be4b06d1ee51e4ac2a01a0e499d4c214.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/bf/bfd567a3d1631a761bca9e99fa53d86d b/EscapeTheGhost/Library/metadata/bf/bfd567a3d1631a761bca9e99fa53d86d
deleted file mode 100644
index d499c44..0000000
Binary files a/EscapeTheGhost/Library/metadata/bf/bfd567a3d1631a761bca9e99fa53d86d and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/bf/bfd567a3d1631a761bca9e99fa53d86d.info b/EscapeTheGhost/Library/metadata/bf/bfd567a3d1631a761bca9e99fa53d86d.info
deleted file mode 100644
index 40b5c1b..0000000
Binary files a/EscapeTheGhost/Library/metadata/bf/bfd567a3d1631a761bca9e99fa53d86d.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/bf/bfd715cd54ab84c22b128149c12b516c b/EscapeTheGhost/Library/metadata/bf/bfd715cd54ab84c22b128149c12b516c
deleted file mode 100644
index 83718fb..0000000
Binary files a/EscapeTheGhost/Library/metadata/bf/bfd715cd54ab84c22b128149c12b516c and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/bf/bfd715cd54ab84c22b128149c12b516c.info b/EscapeTheGhost/Library/metadata/bf/bfd715cd54ab84c22b128149c12b516c.info
deleted file mode 100644
index 4e43ed4..0000000
Binary files a/EscapeTheGhost/Library/metadata/bf/bfd715cd54ab84c22b128149c12b516c.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/c0/c060426bfd6e82575228df6656368eaa b/EscapeTheGhost/Library/metadata/c0/c060426bfd6e82575228df6656368eaa
deleted file mode 100644
index 7994b45..0000000
Binary files a/EscapeTheGhost/Library/metadata/c0/c060426bfd6e82575228df6656368eaa and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/c0/c060426bfd6e82575228df6656368eaa.info b/EscapeTheGhost/Library/metadata/c0/c060426bfd6e82575228df6656368eaa.info
deleted file mode 100644
index 7e2f807..0000000
Binary files a/EscapeTheGhost/Library/metadata/c0/c060426bfd6e82575228df6656368eaa.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/c1/c1080467a31b756c24b7e92941044962 b/EscapeTheGhost/Library/metadata/c1/c1080467a31b756c24b7e92941044962
deleted file mode 100644
index 33114eb..0000000
Binary files a/EscapeTheGhost/Library/metadata/c1/c1080467a31b756c24b7e92941044962 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/c1/c1080467a31b756c24b7e92941044962.info b/EscapeTheGhost/Library/metadata/c1/c1080467a31b756c24b7e92941044962.info
deleted file mode 100644
index 2bfe62b..0000000
Binary files a/EscapeTheGhost/Library/metadata/c1/c1080467a31b756c24b7e92941044962.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/c2/c2f7f6a88b4c4f20a53deb72f3d9144c b/EscapeTheGhost/Library/metadata/c2/c2f7f6a88b4c4f20a53deb72f3d9144c
deleted file mode 100644
index b2b97fb..0000000
Binary files a/EscapeTheGhost/Library/metadata/c2/c2f7f6a88b4c4f20a53deb72f3d9144c and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/c2/c2f7f6a88b4c4f20a53deb72f3d9144c.info b/EscapeTheGhost/Library/metadata/c2/c2f7f6a88b4c4f20a53deb72f3d9144c.info
deleted file mode 100644
index 0df1c01..0000000
Binary files a/EscapeTheGhost/Library/metadata/c2/c2f7f6a88b4c4f20a53deb72f3d9144c.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/c4/c4c68c906ab1d428fbdcd9e1316e6600 b/EscapeTheGhost/Library/metadata/c4/c4c68c906ab1d428fbdcd9e1316e6600
deleted file mode 100644
index f51b222..0000000
Binary files a/EscapeTheGhost/Library/metadata/c4/c4c68c906ab1d428fbdcd9e1316e6600 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/c4/c4c68c906ab1d428fbdcd9e1316e6600.info b/EscapeTheGhost/Library/metadata/c4/c4c68c906ab1d428fbdcd9e1316e6600.info
deleted file mode 100644
index 40b5b15..0000000
Binary files a/EscapeTheGhost/Library/metadata/c4/c4c68c906ab1d428fbdcd9e1316e6600.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/c4/c4df1124e2787ee0c8d1a911de17ee73 b/EscapeTheGhost/Library/metadata/c4/c4df1124e2787ee0c8d1a911de17ee73
deleted file mode 100644
index a63ef0d..0000000
Binary files a/EscapeTheGhost/Library/metadata/c4/c4df1124e2787ee0c8d1a911de17ee73 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/c4/c4df1124e2787ee0c8d1a911de17ee73.info b/EscapeTheGhost/Library/metadata/c4/c4df1124e2787ee0c8d1a911de17ee73.info
deleted file mode 100644
index 2136687..0000000
Binary files a/EscapeTheGhost/Library/metadata/c4/c4df1124e2787ee0c8d1a911de17ee73.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/c5/c522a644a29fcab2eaf63298c118a65b b/EscapeTheGhost/Library/metadata/c5/c522a644a29fcab2eaf63298c118a65b
deleted file mode 100644
index e1bf534..0000000
Binary files a/EscapeTheGhost/Library/metadata/c5/c522a644a29fcab2eaf63298c118a65b and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/c5/c522a644a29fcab2eaf63298c118a65b.info b/EscapeTheGhost/Library/metadata/c5/c522a644a29fcab2eaf63298c118a65b.info
deleted file mode 100644
index f059ac9..0000000
Binary files a/EscapeTheGhost/Library/metadata/c5/c522a644a29fcab2eaf63298c118a65b.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/c5/c56efb0a640c6a349b089888347923f0 b/EscapeTheGhost/Library/metadata/c5/c56efb0a640c6a349b089888347923f0
deleted file mode 100644
index 08d86a3..0000000
Binary files a/EscapeTheGhost/Library/metadata/c5/c56efb0a640c6a349b089888347923f0 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/c5/c56efb0a640c6a349b089888347923f0.info b/EscapeTheGhost/Library/metadata/c5/c56efb0a640c6a349b089888347923f0.info
deleted file mode 100644
index 49f95a5..0000000
Binary files a/EscapeTheGhost/Library/metadata/c5/c56efb0a640c6a349b089888347923f0.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/c5/c5ba7626a737840ff88a3bd84b100482 b/EscapeTheGhost/Library/metadata/c5/c5ba7626a737840ff88a3bd84b100482
deleted file mode 100644
index a459756..0000000
Binary files a/EscapeTheGhost/Library/metadata/c5/c5ba7626a737840ff88a3bd84b100482 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/c5/c5ba7626a737840ff88a3bd84b100482.info b/EscapeTheGhost/Library/metadata/c5/c5ba7626a737840ff88a3bd84b100482.info
deleted file mode 100644
index 9760f74..0000000
Binary files a/EscapeTheGhost/Library/metadata/c5/c5ba7626a737840ff88a3bd84b100482.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/c6/c68ba5b432ef64e67ae0bf74960908a8 b/EscapeTheGhost/Library/metadata/c6/c68ba5b432ef64e67ae0bf74960908a8
deleted file mode 100644
index 2570696..0000000
Binary files a/EscapeTheGhost/Library/metadata/c6/c68ba5b432ef64e67ae0bf74960908a8 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/c6/c68ba5b432ef64e67ae0bf74960908a8.info b/EscapeTheGhost/Library/metadata/c6/c68ba5b432ef64e67ae0bf74960908a8.info
deleted file mode 100644
index ae47c17..0000000
Binary files a/EscapeTheGhost/Library/metadata/c6/c68ba5b432ef64e67ae0bf74960908a8.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/c7/c74ca176c244e4e14bc330098d620f13 b/EscapeTheGhost/Library/metadata/c7/c74ca176c244e4e14bc330098d620f13
deleted file mode 100644
index 020fbcd..0000000
Binary files a/EscapeTheGhost/Library/metadata/c7/c74ca176c244e4e14bc330098d620f13 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/c7/c74ca176c244e4e14bc330098d620f13.info b/EscapeTheGhost/Library/metadata/c7/c74ca176c244e4e14bc330098d620f13.info
deleted file mode 100644
index 1f734fe..0000000
Binary files a/EscapeTheGhost/Library/metadata/c7/c74ca176c244e4e14bc330098d620f13.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/c7/c7559cdbc33f04af1a5a42d2aa5b40a5 b/EscapeTheGhost/Library/metadata/c7/c7559cdbc33f04af1a5a42d2aa5b40a5
deleted file mode 100644
index e24da80..0000000
Binary files a/EscapeTheGhost/Library/metadata/c7/c7559cdbc33f04af1a5a42d2aa5b40a5 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/c7/c7559cdbc33f04af1a5a42d2aa5b40a5.info b/EscapeTheGhost/Library/metadata/c7/c7559cdbc33f04af1a5a42d2aa5b40a5.info
deleted file mode 100644
index 44da15a..0000000
Binary files a/EscapeTheGhost/Library/metadata/c7/c7559cdbc33f04af1a5a42d2aa5b40a5.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/c7/c76700ea0062413d9f69409b4e9e151b b/EscapeTheGhost/Library/metadata/c7/c76700ea0062413d9f69409b4e9e151b
deleted file mode 100644
index 6f3a06e..0000000
Binary files a/EscapeTheGhost/Library/metadata/c7/c76700ea0062413d9f69409b4e9e151b and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/c7/c76700ea0062413d9f69409b4e9e151b.info b/EscapeTheGhost/Library/metadata/c7/c76700ea0062413d9f69409b4e9e151b.info
deleted file mode 100644
index 16a41fe..0000000
Binary files a/EscapeTheGhost/Library/metadata/c7/c76700ea0062413d9f69409b4e9e151b.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/c7/c7e0809b02755e24f8133b643439733b b/EscapeTheGhost/Library/metadata/c7/c7e0809b02755e24f8133b643439733b
deleted file mode 100644
index 069759b..0000000
Binary files a/EscapeTheGhost/Library/metadata/c7/c7e0809b02755e24f8133b643439733b and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/c7/c7e0809b02755e24f8133b643439733b.info b/EscapeTheGhost/Library/metadata/c7/c7e0809b02755e24f8133b643439733b.info
deleted file mode 100644
index 51c408f..0000000
Binary files a/EscapeTheGhost/Library/metadata/c7/c7e0809b02755e24f8133b643439733b.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/c9/c99bfe4fc4e5c4dc3917c14075acd117 b/EscapeTheGhost/Library/metadata/c9/c99bfe4fc4e5c4dc3917c14075acd117
deleted file mode 100644
index 1f227cc..0000000
Binary files a/EscapeTheGhost/Library/metadata/c9/c99bfe4fc4e5c4dc3917c14075acd117 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/c9/c99bfe4fc4e5c4dc3917c14075acd117.info b/EscapeTheGhost/Library/metadata/c9/c99bfe4fc4e5c4dc3917c14075acd117.info
deleted file mode 100644
index 2d42037..0000000
Binary files a/EscapeTheGhost/Library/metadata/c9/c99bfe4fc4e5c4dc3917c14075acd117.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/ca/ca51b19024094d1b87f3e07edb0a75fb b/EscapeTheGhost/Library/metadata/ca/ca51b19024094d1b87f3e07edb0a75fb
deleted file mode 100644
index ba27e05..0000000
Binary files a/EscapeTheGhost/Library/metadata/ca/ca51b19024094d1b87f3e07edb0a75fb and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/ca/ca51b19024094d1b87f3e07edb0a75fb.info b/EscapeTheGhost/Library/metadata/ca/ca51b19024094d1b87f3e07edb0a75fb.info
deleted file mode 100644
index 32d81c8..0000000
Binary files a/EscapeTheGhost/Library/metadata/ca/ca51b19024094d1b87f3e07edb0a75fb.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/ca/ca53a6f1e29564d528bb56b92e0f181c b/EscapeTheGhost/Library/metadata/ca/ca53a6f1e29564d528bb56b92e0f181c
deleted file mode 100644
index 2c86b69..0000000
Binary files a/EscapeTheGhost/Library/metadata/ca/ca53a6f1e29564d528bb56b92e0f181c and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/ca/ca53a6f1e29564d528bb56b92e0f181c.info b/EscapeTheGhost/Library/metadata/ca/ca53a6f1e29564d528bb56b92e0f181c.info
deleted file mode 100644
index 6aea8e4..0000000
Binary files a/EscapeTheGhost/Library/metadata/ca/ca53a6f1e29564d528bb56b92e0f181c.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/ca/ca647023177454af088b4c45041891cb b/EscapeTheGhost/Library/metadata/ca/ca647023177454af088b4c45041891cb
deleted file mode 100644
index addc686..0000000
Binary files a/EscapeTheGhost/Library/metadata/ca/ca647023177454af088b4c45041891cb and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/ca/ca647023177454af088b4c45041891cb.info b/EscapeTheGhost/Library/metadata/ca/ca647023177454af088b4c45041891cb.info
deleted file mode 100644
index 3368d9f..0000000
Binary files a/EscapeTheGhost/Library/metadata/ca/ca647023177454af088b4c45041891cb.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/ca/ca77d26d10b9455ca5a4b22c93be2a31 b/EscapeTheGhost/Library/metadata/ca/ca77d26d10b9455ca5a4b22c93be2a31
deleted file mode 100644
index 49ab28c..0000000
Binary files a/EscapeTheGhost/Library/metadata/ca/ca77d26d10b9455ca5a4b22c93be2a31 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/ca/ca77d26d10b9455ca5a4b22c93be2a31.info b/EscapeTheGhost/Library/metadata/ca/ca77d26d10b9455ca5a4b22c93be2a31.info
deleted file mode 100644
index bbdd963..0000000
Binary files a/EscapeTheGhost/Library/metadata/ca/ca77d26d10b9455ca5a4b22c93be2a31.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/ca/ca819640f53b48919bf7774744f7f15e b/EscapeTheGhost/Library/metadata/ca/ca819640f53b48919bf7774744f7f15e
deleted file mode 100644
index 43b9cf0..0000000
Binary files a/EscapeTheGhost/Library/metadata/ca/ca819640f53b48919bf7774744f7f15e and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/ca/ca819640f53b48919bf7774744f7f15e.info b/EscapeTheGhost/Library/metadata/ca/ca819640f53b48919bf7774744f7f15e.info
deleted file mode 100644
index ca25ca1..0000000
Binary files a/EscapeTheGhost/Library/metadata/ca/ca819640f53b48919bf7774744f7f15e.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/ca/cabaa672b0e3ee91fa7b6da4daab7970 b/EscapeTheGhost/Library/metadata/ca/cabaa672b0e3ee91fa7b6da4daab7970
deleted file mode 100644
index 7234d4e..0000000
Binary files a/EscapeTheGhost/Library/metadata/ca/cabaa672b0e3ee91fa7b6da4daab7970 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/ca/cabaa672b0e3ee91fa7b6da4daab7970.info b/EscapeTheGhost/Library/metadata/ca/cabaa672b0e3ee91fa7b6da4daab7970.info
deleted file mode 100644
index ffca3d5..0000000
Binary files a/EscapeTheGhost/Library/metadata/ca/cabaa672b0e3ee91fa7b6da4daab7970.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/ca/caffda3b538cb49aea73798b4fc500b1 b/EscapeTheGhost/Library/metadata/ca/caffda3b538cb49aea73798b4fc500b1
deleted file mode 100644
index 7d43868..0000000
Binary files a/EscapeTheGhost/Library/metadata/ca/caffda3b538cb49aea73798b4fc500b1 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/ca/caffda3b538cb49aea73798b4fc500b1.info b/EscapeTheGhost/Library/metadata/ca/caffda3b538cb49aea73798b4fc500b1.info
deleted file mode 100644
index c9249a3..0000000
Binary files a/EscapeTheGhost/Library/metadata/ca/caffda3b538cb49aea73798b4fc500b1.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/cc/cc0aeeaf68c0d4ee499cb21748af43e9 b/EscapeTheGhost/Library/metadata/cc/cc0aeeaf68c0d4ee499cb21748af43e9
deleted file mode 100644
index 9adc26d..0000000
Binary files a/EscapeTheGhost/Library/metadata/cc/cc0aeeaf68c0d4ee499cb21748af43e9 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/cc/cc0aeeaf68c0d4ee499cb21748af43e9.info b/EscapeTheGhost/Library/metadata/cc/cc0aeeaf68c0d4ee499cb21748af43e9.info
deleted file mode 100644
index 4b395d8..0000000
Binary files a/EscapeTheGhost/Library/metadata/cc/cc0aeeaf68c0d4ee499cb21748af43e9.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/cc/cc1b50b5501f748da8bec762294d9136 b/EscapeTheGhost/Library/metadata/cc/cc1b50b5501f748da8bec762294d9136
deleted file mode 100644
index d7c21de..0000000
Binary files a/EscapeTheGhost/Library/metadata/cc/cc1b50b5501f748da8bec762294d9136 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/cc/cc1b50b5501f748da8bec762294d9136.info b/EscapeTheGhost/Library/metadata/cc/cc1b50b5501f748da8bec762294d9136.info
deleted file mode 100644
index 14c3de2..0000000
Binary files a/EscapeTheGhost/Library/metadata/cc/cc1b50b5501f748da8bec762294d9136.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/ce/ce4395ccdb12cf62fca756358be1a892 b/EscapeTheGhost/Library/metadata/ce/ce4395ccdb12cf62fca756358be1a892
deleted file mode 100644
index 4129c15..0000000
Binary files a/EscapeTheGhost/Library/metadata/ce/ce4395ccdb12cf62fca756358be1a892 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/ce/ce4395ccdb12cf62fca756358be1a892.info b/EscapeTheGhost/Library/metadata/ce/ce4395ccdb12cf62fca756358be1a892.info
deleted file mode 100644
index 551236f..0000000
Binary files a/EscapeTheGhost/Library/metadata/ce/ce4395ccdb12cf62fca756358be1a892.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/ce/ce4ff17ca867d2b48b5c8a4181611901 b/EscapeTheGhost/Library/metadata/ce/ce4ff17ca867d2b48b5c8a4181611901
deleted file mode 100644
index 1cac29e..0000000
Binary files a/EscapeTheGhost/Library/metadata/ce/ce4ff17ca867d2b48b5c8a4181611901 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/ce/ce4ff17ca867d2b48b5c8a4181611901.info b/EscapeTheGhost/Library/metadata/ce/ce4ff17ca867d2b48b5c8a4181611901.info
deleted file mode 100644
index 90b79f4..0000000
Binary files a/EscapeTheGhost/Library/metadata/ce/ce4ff17ca867d2b48b5c8a4181611901.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/cf/cf1fe50a641faac4691bf49eb32ce333 b/EscapeTheGhost/Library/metadata/cf/cf1fe50a641faac4691bf49eb32ce333
deleted file mode 100644
index 0c93b6a..0000000
Binary files a/EscapeTheGhost/Library/metadata/cf/cf1fe50a641faac4691bf49eb32ce333 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/cf/cf1fe50a641faac4691bf49eb32ce333.info b/EscapeTheGhost/Library/metadata/cf/cf1fe50a641faac4691bf49eb32ce333.info
deleted file mode 100644
index d73b182..0000000
Binary files a/EscapeTheGhost/Library/metadata/cf/cf1fe50a641faac4691bf49eb32ce333.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/d0/d028fbbad11524d13a069f495ddcf01c b/EscapeTheGhost/Library/metadata/d0/d028fbbad11524d13a069f495ddcf01c
deleted file mode 100644
index f0db877..0000000
Binary files a/EscapeTheGhost/Library/metadata/d0/d028fbbad11524d13a069f495ddcf01c and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/d0/d028fbbad11524d13a069f495ddcf01c.info b/EscapeTheGhost/Library/metadata/d0/d028fbbad11524d13a069f495ddcf01c.info
deleted file mode 100644
index 9a71af5..0000000
Binary files a/EscapeTheGhost/Library/metadata/d0/d028fbbad11524d13a069f495ddcf01c.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/d0/d0e3ad91972c66f5238f5b9b7d5ae58a b/EscapeTheGhost/Library/metadata/d0/d0e3ad91972c66f5238f5b9b7d5ae58a
deleted file mode 100644
index bc83799..0000000
Binary files a/EscapeTheGhost/Library/metadata/d0/d0e3ad91972c66f5238f5b9b7d5ae58a and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/d0/d0e3ad91972c66f5238f5b9b7d5ae58a.info b/EscapeTheGhost/Library/metadata/d0/d0e3ad91972c66f5238f5b9b7d5ae58a.info
deleted file mode 100644
index bd700f0..0000000
Binary files a/EscapeTheGhost/Library/metadata/d0/d0e3ad91972c66f5238f5b9b7d5ae58a.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/d1/d1a0a27327b54c3bac52a08929c33f81 b/EscapeTheGhost/Library/metadata/d1/d1a0a27327b54c3bac52a08929c33f81
deleted file mode 100644
index 78ed11b..0000000
Binary files a/EscapeTheGhost/Library/metadata/d1/d1a0a27327b54c3bac52a08929c33f81 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/d1/d1a0a27327b54c3bac52a08929c33f81.info b/EscapeTheGhost/Library/metadata/d1/d1a0a27327b54c3bac52a08929c33f81.info
deleted file mode 100644
index eb23c1a..0000000
Binary files a/EscapeTheGhost/Library/metadata/d1/d1a0a27327b54c3bac52a08929c33f81.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/d1/d1c1a2d988f5148fd9ab17b2460d271e b/EscapeTheGhost/Library/metadata/d1/d1c1a2d988f5148fd9ab17b2460d271e
deleted file mode 100644
index 82a3046..0000000
Binary files a/EscapeTheGhost/Library/metadata/d1/d1c1a2d988f5148fd9ab17b2460d271e and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/d1/d1c1a2d988f5148fd9ab17b2460d271e.info b/EscapeTheGhost/Library/metadata/d1/d1c1a2d988f5148fd9ab17b2460d271e.info
deleted file mode 100644
index 27a7abc..0000000
Binary files a/EscapeTheGhost/Library/metadata/d1/d1c1a2d988f5148fd9ab17b2460d271e.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/d2/d29cb3985930952479ebe9dc61c7b5ef b/EscapeTheGhost/Library/metadata/d2/d29cb3985930952479ebe9dc61c7b5ef
deleted file mode 100644
index d23a9fa..0000000
Binary files a/EscapeTheGhost/Library/metadata/d2/d29cb3985930952479ebe9dc61c7b5ef and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/d2/d29cb3985930952479ebe9dc61c7b5ef.info b/EscapeTheGhost/Library/metadata/d2/d29cb3985930952479ebe9dc61c7b5ef.info
deleted file mode 100644
index 0f96daf..0000000
Binary files a/EscapeTheGhost/Library/metadata/d2/d29cb3985930952479ebe9dc61c7b5ef.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/d3/d33d54853fd0f48e0ac8a63ea91e6626 b/EscapeTheGhost/Library/metadata/d3/d33d54853fd0f48e0ac8a63ea91e6626
deleted file mode 100644
index 6fc06ef..0000000
Binary files a/EscapeTheGhost/Library/metadata/d3/d33d54853fd0f48e0ac8a63ea91e6626 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/d3/d33d54853fd0f48e0ac8a63ea91e6626.info b/EscapeTheGhost/Library/metadata/d3/d33d54853fd0f48e0ac8a63ea91e6626.info
deleted file mode 100644
index df7e2b0..0000000
Binary files a/EscapeTheGhost/Library/metadata/d3/d33d54853fd0f48e0ac8a63ea91e6626.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/d3/d3cbe921f7b3d9a3257e7c61a5761796 b/EscapeTheGhost/Library/metadata/d3/d3cbe921f7b3d9a3257e7c61a5761796
deleted file mode 100644
index ea01455..0000000
Binary files a/EscapeTheGhost/Library/metadata/d3/d3cbe921f7b3d9a3257e7c61a5761796 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/d3/d3cbe921f7b3d9a3257e7c61a5761796.info b/EscapeTheGhost/Library/metadata/d3/d3cbe921f7b3d9a3257e7c61a5761796.info
deleted file mode 100644
index e8d3e39..0000000
Binary files a/EscapeTheGhost/Library/metadata/d3/d3cbe921f7b3d9a3257e7c61a5761796.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/d4/d40e85137bc74864a47f42ceddfec228 b/EscapeTheGhost/Library/metadata/d4/d40e85137bc74864a47f42ceddfec228
deleted file mode 100644
index 2a6a310..0000000
Binary files a/EscapeTheGhost/Library/metadata/d4/d40e85137bc74864a47f42ceddfec228 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/d4/d40e85137bc74864a47f42ceddfec228.info b/EscapeTheGhost/Library/metadata/d4/d40e85137bc74864a47f42ceddfec228.info
deleted file mode 100644
index ed97202..0000000
Binary files a/EscapeTheGhost/Library/metadata/d4/d40e85137bc74864a47f42ceddfec228.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/d5/d5502e7df7eab4c6885f3f012d039148 b/EscapeTheGhost/Library/metadata/d5/d5502e7df7eab4c6885f3f012d039148
deleted file mode 100644
index f2c1138..0000000
Binary files a/EscapeTheGhost/Library/metadata/d5/d5502e7df7eab4c6885f3f012d039148 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/d5/d5502e7df7eab4c6885f3f012d039148.info b/EscapeTheGhost/Library/metadata/d5/d5502e7df7eab4c6885f3f012d039148.info
deleted file mode 100644
index 76a44f6..0000000
Binary files a/EscapeTheGhost/Library/metadata/d5/d5502e7df7eab4c6885f3f012d039148.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/d5/d5a61f8cc87394b28aec6b88b4083217 b/EscapeTheGhost/Library/metadata/d5/d5a61f8cc87394b28aec6b88b4083217
deleted file mode 100644
index 297251e..0000000
Binary files a/EscapeTheGhost/Library/metadata/d5/d5a61f8cc87394b28aec6b88b4083217 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/d5/d5a61f8cc87394b28aec6b88b4083217.info b/EscapeTheGhost/Library/metadata/d5/d5a61f8cc87394b28aec6b88b4083217.info
deleted file mode 100644
index d6b67d5..0000000
Binary files a/EscapeTheGhost/Library/metadata/d5/d5a61f8cc87394b28aec6b88b4083217.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/d5/d5f0b0adc6826e9dd3b72e292e8438be b/EscapeTheGhost/Library/metadata/d5/d5f0b0adc6826e9dd3b72e292e8438be
deleted file mode 100644
index c469b63..0000000
Binary files a/EscapeTheGhost/Library/metadata/d5/d5f0b0adc6826e9dd3b72e292e8438be and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/d5/d5f0b0adc6826e9dd3b72e292e8438be.info b/EscapeTheGhost/Library/metadata/d5/d5f0b0adc6826e9dd3b72e292e8438be.info
deleted file mode 100644
index 5ab4668..0000000
Binary files a/EscapeTheGhost/Library/metadata/d5/d5f0b0adc6826e9dd3b72e292e8438be.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/d6/d607a67dc772b484da060e66a3d61a4e b/EscapeTheGhost/Library/metadata/d6/d607a67dc772b484da060e66a3d61a4e
deleted file mode 100644
index f595a41..0000000
Binary files a/EscapeTheGhost/Library/metadata/d6/d607a67dc772b484da060e66a3d61a4e and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/d6/d607a67dc772b484da060e66a3d61a4e.info b/EscapeTheGhost/Library/metadata/d6/d607a67dc772b484da060e66a3d61a4e.info
deleted file mode 100644
index a5a16c7..0000000
Binary files a/EscapeTheGhost/Library/metadata/d6/d607a67dc772b484da060e66a3d61a4e.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/d6/d6281499612ea4fb7ad0766e692e5c6d b/EscapeTheGhost/Library/metadata/d6/d6281499612ea4fb7ad0766e692e5c6d
deleted file mode 100644
index d73b706..0000000
Binary files a/EscapeTheGhost/Library/metadata/d6/d6281499612ea4fb7ad0766e692e5c6d and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/d6/d6281499612ea4fb7ad0766e692e5c6d.info b/EscapeTheGhost/Library/metadata/d6/d6281499612ea4fb7ad0766e692e5c6d.info
deleted file mode 100644
index f31fcbd..0000000
Binary files a/EscapeTheGhost/Library/metadata/d6/d6281499612ea4fb7ad0766e692e5c6d.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/d6/d6a708dbb74414a6dbd60e07d9513c1c b/EscapeTheGhost/Library/metadata/d6/d6a708dbb74414a6dbd60e07d9513c1c
deleted file mode 100644
index 8d7c12a..0000000
Binary files a/EscapeTheGhost/Library/metadata/d6/d6a708dbb74414a6dbd60e07d9513c1c and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/d6/d6a708dbb74414a6dbd60e07d9513c1c.info b/EscapeTheGhost/Library/metadata/d6/d6a708dbb74414a6dbd60e07d9513c1c.info
deleted file mode 100644
index e53d3cd..0000000
Binary files a/EscapeTheGhost/Library/metadata/d6/d6a708dbb74414a6dbd60e07d9513c1c.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/d6/d6c6a000a805f00649b36b542e8426c2 b/EscapeTheGhost/Library/metadata/d6/d6c6a000a805f00649b36b542e8426c2
deleted file mode 100644
index 4504757..0000000
Binary files a/EscapeTheGhost/Library/metadata/d6/d6c6a000a805f00649b36b542e8426c2 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/d6/d6c6a000a805f00649b36b542e8426c2.info b/EscapeTheGhost/Library/metadata/d6/d6c6a000a805f00649b36b542e8426c2.info
deleted file mode 100644
index 7d2a76a..0000000
Binary files a/EscapeTheGhost/Library/metadata/d6/d6c6a000a805f00649b36b542e8426c2.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/d6/d6db7caf2e852b75ebb9c6098418179c b/EscapeTheGhost/Library/metadata/d6/d6db7caf2e852b75ebb9c6098418179c
deleted file mode 100644
index b9a94f8..0000000
Binary files a/EscapeTheGhost/Library/metadata/d6/d6db7caf2e852b75ebb9c6098418179c and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/d6/d6db7caf2e852b75ebb9c6098418179c.info b/EscapeTheGhost/Library/metadata/d6/d6db7caf2e852b75ebb9c6098418179c.info
deleted file mode 100644
index 365e33c..0000000
Binary files a/EscapeTheGhost/Library/metadata/d6/d6db7caf2e852b75ebb9c6098418179c.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/d7/d72e6637900cc4ff1849deedb971734b b/EscapeTheGhost/Library/metadata/d7/d72e6637900cc4ff1849deedb971734b
deleted file mode 100644
index 76b7b1b..0000000
Binary files a/EscapeTheGhost/Library/metadata/d7/d72e6637900cc4ff1849deedb971734b and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/d7/d72e6637900cc4ff1849deedb971734b.info b/EscapeTheGhost/Library/metadata/d7/d72e6637900cc4ff1849deedb971734b.info
deleted file mode 100644
index 293619a..0000000
Binary files a/EscapeTheGhost/Library/metadata/d7/d72e6637900cc4ff1849deedb971734b.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/d7/d77259f363c009b41b4eb3a0676705d8 b/EscapeTheGhost/Library/metadata/d7/d77259f363c009b41b4eb3a0676705d8
deleted file mode 100644
index 1f1e410..0000000
Binary files a/EscapeTheGhost/Library/metadata/d7/d77259f363c009b41b4eb3a0676705d8 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/d7/d77259f363c009b41b4eb3a0676705d8.info b/EscapeTheGhost/Library/metadata/d7/d77259f363c009b41b4eb3a0676705d8.info
deleted file mode 100644
index 7e135ec..0000000
Binary files a/EscapeTheGhost/Library/metadata/d7/d77259f363c009b41b4eb3a0676705d8.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/d8/d81fec850b3174dffbef820f3ee6f917 b/EscapeTheGhost/Library/metadata/d8/d81fec850b3174dffbef820f3ee6f917
deleted file mode 100644
index bea7bd5..0000000
Binary files a/EscapeTheGhost/Library/metadata/d8/d81fec850b3174dffbef820f3ee6f917 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/d8/d81fec850b3174dffbef820f3ee6f917.info b/EscapeTheGhost/Library/metadata/d8/d81fec850b3174dffbef820f3ee6f917.info
deleted file mode 100644
index 612b05c..0000000
Binary files a/EscapeTheGhost/Library/metadata/d8/d81fec850b3174dffbef820f3ee6f917.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/d8/d85e5eeaf8f135aeaaebdc8aa3cff6c3 b/EscapeTheGhost/Library/metadata/d8/d85e5eeaf8f135aeaaebdc8aa3cff6c3
deleted file mode 100644
index ab99bcf..0000000
Binary files a/EscapeTheGhost/Library/metadata/d8/d85e5eeaf8f135aeaaebdc8aa3cff6c3 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/d8/d85e5eeaf8f135aeaaebdc8aa3cff6c3.info b/EscapeTheGhost/Library/metadata/d8/d85e5eeaf8f135aeaaebdc8aa3cff6c3.info
deleted file mode 100644
index 8034d9a..0000000
Binary files a/EscapeTheGhost/Library/metadata/d8/d85e5eeaf8f135aeaaebdc8aa3cff6c3.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/d9/d91035c548f23744c9bfb107348ed1c0 b/EscapeTheGhost/Library/metadata/d9/d91035c548f23744c9bfb107348ed1c0
deleted file mode 100644
index fdf2505..0000000
Binary files a/EscapeTheGhost/Library/metadata/d9/d91035c548f23744c9bfb107348ed1c0 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/d9/d91035c548f23744c9bfb107348ed1c0.info b/EscapeTheGhost/Library/metadata/d9/d91035c548f23744c9bfb107348ed1c0.info
deleted file mode 100644
index f476560..0000000
Binary files a/EscapeTheGhost/Library/metadata/d9/d91035c548f23744c9bfb107348ed1c0.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/d9/d929147d9f78c487397abb40f2c257b0 b/EscapeTheGhost/Library/metadata/d9/d929147d9f78c487397abb40f2c257b0
deleted file mode 100644
index 29c3830..0000000
Binary files a/EscapeTheGhost/Library/metadata/d9/d929147d9f78c487397abb40f2c257b0 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/d9/d929147d9f78c487397abb40f2c257b0.info b/EscapeTheGhost/Library/metadata/d9/d929147d9f78c487397abb40f2c257b0.info
deleted file mode 100644
index 8924459..0000000
Binary files a/EscapeTheGhost/Library/metadata/d9/d929147d9f78c487397abb40f2c257b0.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/d9/d9647b571c5e44729b71d756b3d55317 b/EscapeTheGhost/Library/metadata/d9/d9647b571c5e44729b71d756b3d55317
deleted file mode 100644
index 9e87801..0000000
Binary files a/EscapeTheGhost/Library/metadata/d9/d9647b571c5e44729b71d756b3d55317 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/d9/d9647b571c5e44729b71d756b3d55317.info b/EscapeTheGhost/Library/metadata/d9/d9647b571c5e44729b71d756b3d55317.info
deleted file mode 100644
index 177f326..0000000
Binary files a/EscapeTheGhost/Library/metadata/d9/d9647b571c5e44729b71d756b3d55317.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/da/da0b41deddf0a4414b09681018c171f1 b/EscapeTheGhost/Library/metadata/da/da0b41deddf0a4414b09681018c171f1
deleted file mode 100644
index da60c1b..0000000
Binary files a/EscapeTheGhost/Library/metadata/da/da0b41deddf0a4414b09681018c171f1 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/da/da0b41deddf0a4414b09681018c171f1.info b/EscapeTheGhost/Library/metadata/da/da0b41deddf0a4414b09681018c171f1.info
deleted file mode 100644
index b8a02bc..0000000
Binary files a/EscapeTheGhost/Library/metadata/da/da0b41deddf0a4414b09681018c171f1.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/db/db8aaff416254941ad06a59da318af92 b/EscapeTheGhost/Library/metadata/db/db8aaff416254941ad06a59da318af92
deleted file mode 100644
index 138b86a..0000000
Binary files a/EscapeTheGhost/Library/metadata/db/db8aaff416254941ad06a59da318af92 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/db/db8aaff416254941ad06a59da318af92.info b/EscapeTheGhost/Library/metadata/db/db8aaff416254941ad06a59da318af92.info
deleted file mode 100644
index 69ae1a2..0000000
Binary files a/EscapeTheGhost/Library/metadata/db/db8aaff416254941ad06a59da318af92.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/dc/dc443db3e92b4983b9738c1131f555cb b/EscapeTheGhost/Library/metadata/dc/dc443db3e92b4983b9738c1131f555cb
deleted file mode 100644
index 11aacc4..0000000
Binary files a/EscapeTheGhost/Library/metadata/dc/dc443db3e92b4983b9738c1131f555cb and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/dc/dc443db3e92b4983b9738c1131f555cb.info b/EscapeTheGhost/Library/metadata/dc/dc443db3e92b4983b9738c1131f555cb.info
deleted file mode 100644
index ef29fd6..0000000
Binary files a/EscapeTheGhost/Library/metadata/dc/dc443db3e92b4983b9738c1131f555cb.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/dc/dcc8c6e92b172a65719af5ddf47dd968 b/EscapeTheGhost/Library/metadata/dc/dcc8c6e92b172a65719af5ddf47dd968
deleted file mode 100644
index 0c364a7..0000000
Binary files a/EscapeTheGhost/Library/metadata/dc/dcc8c6e92b172a65719af5ddf47dd968 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/dc/dcc8c6e92b172a65719af5ddf47dd968.info b/EscapeTheGhost/Library/metadata/dc/dcc8c6e92b172a65719af5ddf47dd968.info
deleted file mode 100644
index a695fe2..0000000
Binary files a/EscapeTheGhost/Library/metadata/dc/dcc8c6e92b172a65719af5ddf47dd968.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/dc/dce91326f102345f3ba2f0987c0679c2 b/EscapeTheGhost/Library/metadata/dc/dce91326f102345f3ba2f0987c0679c2
deleted file mode 100644
index b181f6e..0000000
Binary files a/EscapeTheGhost/Library/metadata/dc/dce91326f102345f3ba2f0987c0679c2 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/dc/dce91326f102345f3ba2f0987c0679c2.info b/EscapeTheGhost/Library/metadata/dc/dce91326f102345f3ba2f0987c0679c2.info
deleted file mode 100644
index 5c11764..0000000
Binary files a/EscapeTheGhost/Library/metadata/dc/dce91326f102345f3ba2f0987c0679c2.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/dc/dced8f6ea9f964e8e8e61574ea889d21 b/EscapeTheGhost/Library/metadata/dc/dced8f6ea9f964e8e8e61574ea889d21
deleted file mode 100644
index 0bd5a2b..0000000
Binary files a/EscapeTheGhost/Library/metadata/dc/dced8f6ea9f964e8e8e61574ea889d21 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/dc/dced8f6ea9f964e8e8e61574ea889d21.info b/EscapeTheGhost/Library/metadata/dc/dced8f6ea9f964e8e8e61574ea889d21.info
deleted file mode 100644
index e717750..0000000
Binary files a/EscapeTheGhost/Library/metadata/dc/dced8f6ea9f964e8e8e61574ea889d21.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/dd/dd2fe74169b54bf58fca17288513ef38 b/EscapeTheGhost/Library/metadata/dd/dd2fe74169b54bf58fca17288513ef38
deleted file mode 100644
index 281e41f..0000000
Binary files a/EscapeTheGhost/Library/metadata/dd/dd2fe74169b54bf58fca17288513ef38 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/dd/dd2fe74169b54bf58fca17288513ef38.info b/EscapeTheGhost/Library/metadata/dd/dd2fe74169b54bf58fca17288513ef38.info
deleted file mode 100644
index 3939d94..0000000
Binary files a/EscapeTheGhost/Library/metadata/dd/dd2fe74169b54bf58fca17288513ef38.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/dd/dddeecc066d4e49649fbba36dcb02faa b/EscapeTheGhost/Library/metadata/dd/dddeecc066d4e49649fbba36dcb02faa
deleted file mode 100644
index 17b5f98..0000000
Binary files a/EscapeTheGhost/Library/metadata/dd/dddeecc066d4e49649fbba36dcb02faa and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/dd/dddeecc066d4e49649fbba36dcb02faa.info b/EscapeTheGhost/Library/metadata/dd/dddeecc066d4e49649fbba36dcb02faa.info
deleted file mode 100644
index 3117527..0000000
Binary files a/EscapeTheGhost/Library/metadata/dd/dddeecc066d4e49649fbba36dcb02faa.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/e0/e057a59e6547c4ad8909887f3d9c35aa b/EscapeTheGhost/Library/metadata/e0/e057a59e6547c4ad8909887f3d9c35aa
deleted file mode 100644
index c489a3a..0000000
Binary files a/EscapeTheGhost/Library/metadata/e0/e057a59e6547c4ad8909887f3d9c35aa and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/e0/e057a59e6547c4ad8909887f3d9c35aa.info b/EscapeTheGhost/Library/metadata/e0/e057a59e6547c4ad8909887f3d9c35aa.info
deleted file mode 100644
index c7efd73..0000000
Binary files a/EscapeTheGhost/Library/metadata/e0/e057a59e6547c4ad8909887f3d9c35aa.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/e0/e05ace3bd15740cda0bad60d89092a5b b/EscapeTheGhost/Library/metadata/e0/e05ace3bd15740cda0bad60d89092a5b
deleted file mode 100644
index 59f9c17..0000000
Binary files a/EscapeTheGhost/Library/metadata/e0/e05ace3bd15740cda0bad60d89092a5b and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/e0/e05ace3bd15740cda0bad60d89092a5b.info b/EscapeTheGhost/Library/metadata/e0/e05ace3bd15740cda0bad60d89092a5b.info
deleted file mode 100644
index 457c8b9..0000000
Binary files a/EscapeTheGhost/Library/metadata/e0/e05ace3bd15740cda0bad60d89092a5b.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/e1/e1007cd261c84053beb0c3537782908d b/EscapeTheGhost/Library/metadata/e1/e1007cd261c84053beb0c3537782908d
deleted file mode 100644
index 39f7bfe..0000000
Binary files a/EscapeTheGhost/Library/metadata/e1/e1007cd261c84053beb0c3537782908d and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/e1/e1007cd261c84053beb0c3537782908d.info b/EscapeTheGhost/Library/metadata/e1/e1007cd261c84053beb0c3537782908d.info
deleted file mode 100644
index 6ab7bda..0000000
Binary files a/EscapeTheGhost/Library/metadata/e1/e1007cd261c84053beb0c3537782908d.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/e1/e1ef8466c8fd01a549f10baa4d51fa17 b/EscapeTheGhost/Library/metadata/e1/e1ef8466c8fd01a549f10baa4d51fa17
deleted file mode 100644
index 8515cba..0000000
Binary files a/EscapeTheGhost/Library/metadata/e1/e1ef8466c8fd01a549f10baa4d51fa17 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/e1/e1ef8466c8fd01a549f10baa4d51fa17.info b/EscapeTheGhost/Library/metadata/e1/e1ef8466c8fd01a549f10baa4d51fa17.info
deleted file mode 100644
index 1f0b1f9..0000000
Binary files a/EscapeTheGhost/Library/metadata/e1/e1ef8466c8fd01a549f10baa4d51fa17.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/e2/e21bec35f48a44298911b25ead550ce3 b/EscapeTheGhost/Library/metadata/e2/e21bec35f48a44298911b25ead550ce3
deleted file mode 100644
index 1fd0287..0000000
Binary files a/EscapeTheGhost/Library/metadata/e2/e21bec35f48a44298911b25ead550ce3 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/e2/e21bec35f48a44298911b25ead550ce3.info b/EscapeTheGhost/Library/metadata/e2/e21bec35f48a44298911b25ead550ce3.info
deleted file mode 100644
index 0e79848..0000000
Binary files a/EscapeTheGhost/Library/metadata/e2/e21bec35f48a44298911b25ead550ce3.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/e2/e29b8401ab02c42c5829fd59d5a2846c b/EscapeTheGhost/Library/metadata/e2/e29b8401ab02c42c5829fd59d5a2846c
deleted file mode 100644
index ba9a78a..0000000
Binary files a/EscapeTheGhost/Library/metadata/e2/e29b8401ab02c42c5829fd59d5a2846c and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/e2/e29b8401ab02c42c5829fd59d5a2846c.info b/EscapeTheGhost/Library/metadata/e2/e29b8401ab02c42c5829fd59d5a2846c.info
deleted file mode 100644
index 9225d7e..0000000
Binary files a/EscapeTheGhost/Library/metadata/e2/e29b8401ab02c42c5829fd59d5a2846c.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/e4/e426a33061f184a9785cd5d82f9fb486 b/EscapeTheGhost/Library/metadata/e4/e426a33061f184a9785cd5d82f9fb486
deleted file mode 100644
index 9b76269..0000000
Binary files a/EscapeTheGhost/Library/metadata/e4/e426a33061f184a9785cd5d82f9fb486 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/e4/e426a33061f184a9785cd5d82f9fb486.info b/EscapeTheGhost/Library/metadata/e4/e426a33061f184a9785cd5d82f9fb486.info
deleted file mode 100644
index dee62ec..0000000
Binary files a/EscapeTheGhost/Library/metadata/e4/e426a33061f184a9785cd5d82f9fb486.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/e4/e435d8de5f4b140c7bbdefde7689f69b b/EscapeTheGhost/Library/metadata/e4/e435d8de5f4b140c7bbdefde7689f69b
deleted file mode 100644
index 0f6230a..0000000
Binary files a/EscapeTheGhost/Library/metadata/e4/e435d8de5f4b140c7bbdefde7689f69b and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/e4/e435d8de5f4b140c7bbdefde7689f69b.info b/EscapeTheGhost/Library/metadata/e4/e435d8de5f4b140c7bbdefde7689f69b.info
deleted file mode 100644
index 577977e..0000000
Binary files a/EscapeTheGhost/Library/metadata/e4/e435d8de5f4b140c7bbdefde7689f69b.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/e4/e45f79867376940b7ba31502238d8efa b/EscapeTheGhost/Library/metadata/e4/e45f79867376940b7ba31502238d8efa
deleted file mode 100644
index 923fd46..0000000
Binary files a/EscapeTheGhost/Library/metadata/e4/e45f79867376940b7ba31502238d8efa and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/e4/e45f79867376940b7ba31502238d8efa.info b/EscapeTheGhost/Library/metadata/e4/e45f79867376940b7ba31502238d8efa.info
deleted file mode 100644
index e99214f..0000000
Binary files a/EscapeTheGhost/Library/metadata/e4/e45f79867376940b7ba31502238d8efa.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/e4/e4e0b1de1aee400d81ed4273141e7823 b/EscapeTheGhost/Library/metadata/e4/e4e0b1de1aee400d81ed4273141e7823
deleted file mode 100644
index 67a0aed..0000000
Binary files a/EscapeTheGhost/Library/metadata/e4/e4e0b1de1aee400d81ed4273141e7823 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/e4/e4e0b1de1aee400d81ed4273141e7823.info b/EscapeTheGhost/Library/metadata/e4/e4e0b1de1aee400d81ed4273141e7823.info
deleted file mode 100644
index 3b00775..0000000
Binary files a/EscapeTheGhost/Library/metadata/e4/e4e0b1de1aee400d81ed4273141e7823.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/e4/e4f4cf1b9b434137a499903a7a1d651a b/EscapeTheGhost/Library/metadata/e4/e4f4cf1b9b434137a499903a7a1d651a
deleted file mode 100644
index 4ba09cf..0000000
Binary files a/EscapeTheGhost/Library/metadata/e4/e4f4cf1b9b434137a499903a7a1d651a and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/e4/e4f4cf1b9b434137a499903a7a1d651a.info b/EscapeTheGhost/Library/metadata/e4/e4f4cf1b9b434137a499903a7a1d651a.info
deleted file mode 100644
index ac20f90..0000000
Binary files a/EscapeTheGhost/Library/metadata/e4/e4f4cf1b9b434137a499903a7a1d651a.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/e5/e53bc96d2d054b8cbc811f0d73e761eb b/EscapeTheGhost/Library/metadata/e5/e53bc96d2d054b8cbc811f0d73e761eb
deleted file mode 100644
index ea2d1bf..0000000
Binary files a/EscapeTheGhost/Library/metadata/e5/e53bc96d2d054b8cbc811f0d73e761eb and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/e5/e53bc96d2d054b8cbc811f0d73e761eb.info b/EscapeTheGhost/Library/metadata/e5/e53bc96d2d054b8cbc811f0d73e761eb.info
deleted file mode 100644
index c0dc505..0000000
Binary files a/EscapeTheGhost/Library/metadata/e5/e53bc96d2d054b8cbc811f0d73e761eb.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/e5/e584f4a7cad1e45b7b74a3d434c813b5 b/EscapeTheGhost/Library/metadata/e5/e584f4a7cad1e45b7b74a3d434c813b5
deleted file mode 100644
index b84297f..0000000
Binary files a/EscapeTheGhost/Library/metadata/e5/e584f4a7cad1e45b7b74a3d434c813b5 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/e5/e584f4a7cad1e45b7b74a3d434c813b5.info b/EscapeTheGhost/Library/metadata/e5/e584f4a7cad1e45b7b74a3d434c813b5.info
deleted file mode 100644
index a312424..0000000
Binary files a/EscapeTheGhost/Library/metadata/e5/e584f4a7cad1e45b7b74a3d434c813b5.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/e6/e68b19693f02349c584a4624d3ca88ce b/EscapeTheGhost/Library/metadata/e6/e68b19693f02349c584a4624d3ca88ce
deleted file mode 100644
index 641e136..0000000
Binary files a/EscapeTheGhost/Library/metadata/e6/e68b19693f02349c584a4624d3ca88ce and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/e6/e68b19693f02349c584a4624d3ca88ce.info b/EscapeTheGhost/Library/metadata/e6/e68b19693f02349c584a4624d3ca88ce.info
deleted file mode 100644
index a288676..0000000
Binary files a/EscapeTheGhost/Library/metadata/e6/e68b19693f02349c584a4624d3ca88ce.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/e6/e69259f6ff914146ad610be5491eb44a b/EscapeTheGhost/Library/metadata/e6/e69259f6ff914146ad610be5491eb44a
deleted file mode 100644
index 22d0dba..0000000
Binary files a/EscapeTheGhost/Library/metadata/e6/e69259f6ff914146ad610be5491eb44a and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/e6/e69259f6ff914146ad610be5491eb44a.info b/EscapeTheGhost/Library/metadata/e6/e69259f6ff914146ad610be5491eb44a.info
deleted file mode 100644
index 13d8266..0000000
Binary files a/EscapeTheGhost/Library/metadata/e6/e69259f6ff914146ad610be5491eb44a.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/e6/e6925bb38494e6a43ba0921e65e424fe b/EscapeTheGhost/Library/metadata/e6/e6925bb38494e6a43ba0921e65e424fe
deleted file mode 100644
index dc1c228..0000000
Binary files a/EscapeTheGhost/Library/metadata/e6/e6925bb38494e6a43ba0921e65e424fe and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/e6/e6925bb38494e6a43ba0921e65e424fe.info b/EscapeTheGhost/Library/metadata/e6/e6925bb38494e6a43ba0921e65e424fe.info
deleted file mode 100644
index 63bddfd..0000000
Binary files a/EscapeTheGhost/Library/metadata/e6/e6925bb38494e6a43ba0921e65e424fe.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/e6/e6a1d1e3d2384453a7371b4a07a41ca4 b/EscapeTheGhost/Library/metadata/e6/e6a1d1e3d2384453a7371b4a07a41ca4
deleted file mode 100644
index 98b6b94..0000000
Binary files a/EscapeTheGhost/Library/metadata/e6/e6a1d1e3d2384453a7371b4a07a41ca4 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/e6/e6a1d1e3d2384453a7371b4a07a41ca4.info b/EscapeTheGhost/Library/metadata/e6/e6a1d1e3d2384453a7371b4a07a41ca4.info
deleted file mode 100644
index 28a628d..0000000
Binary files a/EscapeTheGhost/Library/metadata/e6/e6a1d1e3d2384453a7371b4a07a41ca4.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/e8/e8262811c87d0854093bacaf2a074d62 b/EscapeTheGhost/Library/metadata/e8/e8262811c87d0854093bacaf2a074d62
deleted file mode 100644
index f3c372e..0000000
Binary files a/EscapeTheGhost/Library/metadata/e8/e8262811c87d0854093bacaf2a074d62 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/e8/e8262811c87d0854093bacaf2a074d62.info b/EscapeTheGhost/Library/metadata/e8/e8262811c87d0854093bacaf2a074d62.info
deleted file mode 100644
index 4f5689e..0000000
Binary files a/EscapeTheGhost/Library/metadata/e8/e8262811c87d0854093bacaf2a074d62.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/e8/e87e16ece4884c3bb85cc0e02f133a9f b/EscapeTheGhost/Library/metadata/e8/e87e16ece4884c3bb85cc0e02f133a9f
deleted file mode 100644
index b0bfd52..0000000
Binary files a/EscapeTheGhost/Library/metadata/e8/e87e16ece4884c3bb85cc0e02f133a9f and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/e8/e87e16ece4884c3bb85cc0e02f133a9f.info b/EscapeTheGhost/Library/metadata/e8/e87e16ece4884c3bb85cc0e02f133a9f.info
deleted file mode 100644
index 27d824e..0000000
Binary files a/EscapeTheGhost/Library/metadata/e8/e87e16ece4884c3bb85cc0e02f133a9f.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/e9/e93ec7eb6de342aabd156833e253f838 b/EscapeTheGhost/Library/metadata/e9/e93ec7eb6de342aabd156833e253f838
deleted file mode 100644
index f6b64a3..0000000
Binary files a/EscapeTheGhost/Library/metadata/e9/e93ec7eb6de342aabd156833e253f838 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/e9/e93ec7eb6de342aabd156833e253f838.info b/EscapeTheGhost/Library/metadata/e9/e93ec7eb6de342aabd156833e253f838.info
deleted file mode 100644
index fe4e3a1..0000000
Binary files a/EscapeTheGhost/Library/metadata/e9/e93ec7eb6de342aabd156833e253f838.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/e9/e9635cdae52cd4035aced24955775a4b b/EscapeTheGhost/Library/metadata/e9/e9635cdae52cd4035aced24955775a4b
deleted file mode 100644
index 94c55bc..0000000
Binary files a/EscapeTheGhost/Library/metadata/e9/e9635cdae52cd4035aced24955775a4b and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/e9/e9635cdae52cd4035aced24955775a4b.info b/EscapeTheGhost/Library/metadata/e9/e9635cdae52cd4035aced24955775a4b.info
deleted file mode 100644
index a6045e4..0000000
Binary files a/EscapeTheGhost/Library/metadata/e9/e9635cdae52cd4035aced24955775a4b.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/e9/e9df95f53f1c1d0c9199e235d6c42b50 b/EscapeTheGhost/Library/metadata/e9/e9df95f53f1c1d0c9199e235d6c42b50
deleted file mode 100644
index d4132dc..0000000
Binary files a/EscapeTheGhost/Library/metadata/e9/e9df95f53f1c1d0c9199e235d6c42b50 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/e9/e9df95f53f1c1d0c9199e235d6c42b50.info b/EscapeTheGhost/Library/metadata/e9/e9df95f53f1c1d0c9199e235d6c42b50.info
deleted file mode 100644
index 5a5f6c9..0000000
Binary files a/EscapeTheGhost/Library/metadata/e9/e9df95f53f1c1d0c9199e235d6c42b50.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/ea/ead147da21254ff9a0a936bdd75e1680 b/EscapeTheGhost/Library/metadata/ea/ead147da21254ff9a0a936bdd75e1680
deleted file mode 100644
index c8a5744..0000000
Binary files a/EscapeTheGhost/Library/metadata/ea/ead147da21254ff9a0a936bdd75e1680 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/ea/ead147da21254ff9a0a936bdd75e1680.info b/EscapeTheGhost/Library/metadata/ea/ead147da21254ff9a0a936bdd75e1680.info
deleted file mode 100644
index 76d990d..0000000
Binary files a/EscapeTheGhost/Library/metadata/ea/ead147da21254ff9a0a936bdd75e1680.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/ec/ec02776fe29df900b897106d61977735 b/EscapeTheGhost/Library/metadata/ec/ec02776fe29df900b897106d61977735
deleted file mode 100644
index b174168..0000000
Binary files a/EscapeTheGhost/Library/metadata/ec/ec02776fe29df900b897106d61977735 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/ec/ec02776fe29df900b897106d61977735.info b/EscapeTheGhost/Library/metadata/ec/ec02776fe29df900b897106d61977735.info
deleted file mode 100644
index 7b69a82..0000000
Binary files a/EscapeTheGhost/Library/metadata/ec/ec02776fe29df900b897106d61977735.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/ed/ed041e68439749a69d0efa0e3d896c2e b/EscapeTheGhost/Library/metadata/ed/ed041e68439749a69d0efa0e3d896c2e
deleted file mode 100644
index dc085e5..0000000
Binary files a/EscapeTheGhost/Library/metadata/ed/ed041e68439749a69d0efa0e3d896c2e and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/ed/ed041e68439749a69d0efa0e3d896c2e.info b/EscapeTheGhost/Library/metadata/ed/ed041e68439749a69d0efa0e3d896c2e.info
deleted file mode 100644
index d93bf4f..0000000
Binary files a/EscapeTheGhost/Library/metadata/ed/ed041e68439749a69d0efa0e3d896c2e.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/ed/ed7343f30e3843b3afda8f8b02669cea b/EscapeTheGhost/Library/metadata/ed/ed7343f30e3843b3afda8f8b02669cea
deleted file mode 100644
index 8e9e31b..0000000
Binary files a/EscapeTheGhost/Library/metadata/ed/ed7343f30e3843b3afda8f8b02669cea and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/ed/ed7343f30e3843b3afda8f8b02669cea.info b/EscapeTheGhost/Library/metadata/ed/ed7343f30e3843b3afda8f8b02669cea.info
deleted file mode 100644
index b7a0dac..0000000
Binary files a/EscapeTheGhost/Library/metadata/ed/ed7343f30e3843b3afda8f8b02669cea.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/ed/eda2fa5524cd44de48d928b9c47ac0e1 b/EscapeTheGhost/Library/metadata/ed/eda2fa5524cd44de48d928b9c47ac0e1
deleted file mode 100644
index 41d27a7..0000000
Binary files a/EscapeTheGhost/Library/metadata/ed/eda2fa5524cd44de48d928b9c47ac0e1 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/ed/eda2fa5524cd44de48d928b9c47ac0e1.info b/EscapeTheGhost/Library/metadata/ed/eda2fa5524cd44de48d928b9c47ac0e1.info
deleted file mode 100644
index c1cfab3..0000000
Binary files a/EscapeTheGhost/Library/metadata/ed/eda2fa5524cd44de48d928b9c47ac0e1.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/ed/ede0462698a4a5643aa9872c074acd38 b/EscapeTheGhost/Library/metadata/ed/ede0462698a4a5643aa9872c074acd38
deleted file mode 100644
index 799d55f..0000000
Binary files a/EscapeTheGhost/Library/metadata/ed/ede0462698a4a5643aa9872c074acd38 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/ed/ede0462698a4a5643aa9872c074acd38.info b/EscapeTheGhost/Library/metadata/ed/ede0462698a4a5643aa9872c074acd38.info
deleted file mode 100644
index fbbfcf7..0000000
Binary files a/EscapeTheGhost/Library/metadata/ed/ede0462698a4a5643aa9872c074acd38.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/ee/ee148e281f3c41c5b4ff5f8a5afe5a6c b/EscapeTheGhost/Library/metadata/ee/ee148e281f3c41c5b4ff5f8a5afe5a6c
deleted file mode 100644
index 095c864..0000000
Binary files a/EscapeTheGhost/Library/metadata/ee/ee148e281f3c41c5b4ff5f8a5afe5a6c and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/ee/ee148e281f3c41c5b4ff5f8a5afe5a6c.info b/EscapeTheGhost/Library/metadata/ee/ee148e281f3c41c5b4ff5f8a5afe5a6c.info
deleted file mode 100644
index 5d48176..0000000
Binary files a/EscapeTheGhost/Library/metadata/ee/ee148e281f3c41c5b4ff5f8a5afe5a6c.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/ee/eeed6954b3c264ca0b28a92aa6289bf0 b/EscapeTheGhost/Library/metadata/ee/eeed6954b3c264ca0b28a92aa6289bf0
deleted file mode 100644
index 8d2f2ba..0000000
Binary files a/EscapeTheGhost/Library/metadata/ee/eeed6954b3c264ca0b28a92aa6289bf0 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/ee/eeed6954b3c264ca0b28a92aa6289bf0.info b/EscapeTheGhost/Library/metadata/ee/eeed6954b3c264ca0b28a92aa6289bf0.info
deleted file mode 100644
index 4d381dd..0000000
Binary files a/EscapeTheGhost/Library/metadata/ee/eeed6954b3c264ca0b28a92aa6289bf0.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/ef/ef5a2781610c4f12a79939f717f789cf b/EscapeTheGhost/Library/metadata/ef/ef5a2781610c4f12a79939f717f789cf
deleted file mode 100644
index c91922d..0000000
Binary files a/EscapeTheGhost/Library/metadata/ef/ef5a2781610c4f12a79939f717f789cf and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/ef/ef5a2781610c4f12a79939f717f789cf.info b/EscapeTheGhost/Library/metadata/ef/ef5a2781610c4f12a79939f717f789cf.info
deleted file mode 100644
index dc9a16c..0000000
Binary files a/EscapeTheGhost/Library/metadata/ef/ef5a2781610c4f12a79939f717f789cf.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/ef/ef5f5ff48b2d249029c8569481615c69 b/EscapeTheGhost/Library/metadata/ef/ef5f5ff48b2d249029c8569481615c69
deleted file mode 100644
index 8fd24c3..0000000
Binary files a/EscapeTheGhost/Library/metadata/ef/ef5f5ff48b2d249029c8569481615c69 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/ef/ef5f5ff48b2d249029c8569481615c69.info b/EscapeTheGhost/Library/metadata/ef/ef5f5ff48b2d249029c8569481615c69.info
deleted file mode 100644
index c249118..0000000
Binary files a/EscapeTheGhost/Library/metadata/ef/ef5f5ff48b2d249029c8569481615c69.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/ef/effb76e1937b45ff8adf45e51a4c08cf b/EscapeTheGhost/Library/metadata/ef/effb76e1937b45ff8adf45e51a4c08cf
deleted file mode 100644
index 20c6b56..0000000
Binary files a/EscapeTheGhost/Library/metadata/ef/effb76e1937b45ff8adf45e51a4c08cf and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/ef/effb76e1937b45ff8adf45e51a4c08cf.info b/EscapeTheGhost/Library/metadata/ef/effb76e1937b45ff8adf45e51a4c08cf.info
deleted file mode 100644
index 520e301..0000000
Binary files a/EscapeTheGhost/Library/metadata/ef/effb76e1937b45ff8adf45e51a4c08cf.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/f0/f0f13f2ab3d6d13cfc6e4656824bfca8 b/EscapeTheGhost/Library/metadata/f0/f0f13f2ab3d6d13cfc6e4656824bfca8
deleted file mode 100644
index dd7cc15..0000000
Binary files a/EscapeTheGhost/Library/metadata/f0/f0f13f2ab3d6d13cfc6e4656824bfca8 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/f0/f0f13f2ab3d6d13cfc6e4656824bfca8.info b/EscapeTheGhost/Library/metadata/f0/f0f13f2ab3d6d13cfc6e4656824bfca8.info
deleted file mode 100644
index b655a74..0000000
Binary files a/EscapeTheGhost/Library/metadata/f0/f0f13f2ab3d6d13cfc6e4656824bfca8.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/f0/f0fec68172b84dae8d5407bc0702a509 b/EscapeTheGhost/Library/metadata/f0/f0fec68172b84dae8d5407bc0702a509
deleted file mode 100644
index 06d6b66..0000000
Binary files a/EscapeTheGhost/Library/metadata/f0/f0fec68172b84dae8d5407bc0702a509 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/f0/f0fec68172b84dae8d5407bc0702a509.info b/EscapeTheGhost/Library/metadata/f0/f0fec68172b84dae8d5407bc0702a509.info
deleted file mode 100644
index 32a537e..0000000
Binary files a/EscapeTheGhost/Library/metadata/f0/f0fec68172b84dae8d5407bc0702a509.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/f1/f1045c695c5bf4fb7b8509687bc60fc0 b/EscapeTheGhost/Library/metadata/f1/f1045c695c5bf4fb7b8509687bc60fc0
deleted file mode 100644
index 02955c1..0000000
Binary files a/EscapeTheGhost/Library/metadata/f1/f1045c695c5bf4fb7b8509687bc60fc0 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/f1/f1045c695c5bf4fb7b8509687bc60fc0.info b/EscapeTheGhost/Library/metadata/f1/f1045c695c5bf4fb7b8509687bc60fc0.info
deleted file mode 100644
index edec865..0000000
Binary files a/EscapeTheGhost/Library/metadata/f1/f1045c695c5bf4fb7b8509687bc60fc0.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/f1/f1687bb24464840ae9e1d253685ae0f6 b/EscapeTheGhost/Library/metadata/f1/f1687bb24464840ae9e1d253685ae0f6
deleted file mode 100644
index b41a73f..0000000
Binary files a/EscapeTheGhost/Library/metadata/f1/f1687bb24464840ae9e1d253685ae0f6 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/f1/f1687bb24464840ae9e1d253685ae0f6.info b/EscapeTheGhost/Library/metadata/f1/f1687bb24464840ae9e1d253685ae0f6.info
deleted file mode 100644
index 51b1372..0000000
Binary files a/EscapeTheGhost/Library/metadata/f1/f1687bb24464840ae9e1d253685ae0f6.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/f1/f1ea944dcf8849ebab391e461b99ccb7 b/EscapeTheGhost/Library/metadata/f1/f1ea944dcf8849ebab391e461b99ccb7
deleted file mode 100644
index f331729..0000000
Binary files a/EscapeTheGhost/Library/metadata/f1/f1ea944dcf8849ebab391e461b99ccb7 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/f1/f1ea944dcf8849ebab391e461b99ccb7.info b/EscapeTheGhost/Library/metadata/f1/f1ea944dcf8849ebab391e461b99ccb7.info
deleted file mode 100644
index c82a93a..0000000
Binary files a/EscapeTheGhost/Library/metadata/f1/f1ea944dcf8849ebab391e461b99ccb7.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/f2/f28fcced5af094cf78eb4e1109a71981 b/EscapeTheGhost/Library/metadata/f2/f28fcced5af094cf78eb4e1109a71981
deleted file mode 100644
index 160f16e..0000000
Binary files a/EscapeTheGhost/Library/metadata/f2/f28fcced5af094cf78eb4e1109a71981 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/f2/f28fcced5af094cf78eb4e1109a71981.info b/EscapeTheGhost/Library/metadata/f2/f28fcced5af094cf78eb4e1109a71981.info
deleted file mode 100644
index d4fdbb1..0000000
Binary files a/EscapeTheGhost/Library/metadata/f2/f28fcced5af094cf78eb4e1109a71981.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/f3/f34f5fa2437664b2a81b4a7f34df87ad b/EscapeTheGhost/Library/metadata/f3/f34f5fa2437664b2a81b4a7f34df87ad
deleted file mode 100644
index 38eec1e..0000000
Binary files a/EscapeTheGhost/Library/metadata/f3/f34f5fa2437664b2a81b4a7f34df87ad and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/f3/f34f5fa2437664b2a81b4a7f34df87ad.info b/EscapeTheGhost/Library/metadata/f3/f34f5fa2437664b2a81b4a7f34df87ad.info
deleted file mode 100644
index 1c2739b..0000000
Binary files a/EscapeTheGhost/Library/metadata/f3/f34f5fa2437664b2a81b4a7f34df87ad.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/f4/f4688fdb7df04437aeb418b961361dc5 b/EscapeTheGhost/Library/metadata/f4/f4688fdb7df04437aeb418b961361dc5
deleted file mode 100644
index ccc0b07..0000000
Binary files a/EscapeTheGhost/Library/metadata/f4/f4688fdb7df04437aeb418b961361dc5 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/f4/f4688fdb7df04437aeb418b961361dc5.info b/EscapeTheGhost/Library/metadata/f4/f4688fdb7df04437aeb418b961361dc5.info
deleted file mode 100644
index cde92f4..0000000
Binary files a/EscapeTheGhost/Library/metadata/f4/f4688fdb7df04437aeb418b961361dc5.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/f4/f4845225cf0e4acfab0f1903ff872bc9 b/EscapeTheGhost/Library/metadata/f4/f4845225cf0e4acfab0f1903ff872bc9
deleted file mode 100644
index 1d4e0e5..0000000
Binary files a/EscapeTheGhost/Library/metadata/f4/f4845225cf0e4acfab0f1903ff872bc9 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/f4/f4845225cf0e4acfab0f1903ff872bc9.info b/EscapeTheGhost/Library/metadata/f4/f4845225cf0e4acfab0f1903ff872bc9.info
deleted file mode 100644
index ad8500c..0000000
Binary files a/EscapeTheGhost/Library/metadata/f4/f4845225cf0e4acfab0f1903ff872bc9.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/f4/f4935fb862d54980b1bcbca942962642 b/EscapeTheGhost/Library/metadata/f4/f4935fb862d54980b1bcbca942962642
deleted file mode 100644
index 8ca3c73..0000000
Binary files a/EscapeTheGhost/Library/metadata/f4/f4935fb862d54980b1bcbca942962642 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/f4/f4935fb862d54980b1bcbca942962642.info b/EscapeTheGhost/Library/metadata/f4/f4935fb862d54980b1bcbca942962642.info
deleted file mode 100644
index 47663e0..0000000
Binary files a/EscapeTheGhost/Library/metadata/f4/f4935fb862d54980b1bcbca942962642.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/f4/f499e12eaeb145bf9022f581c0b7fa5b b/EscapeTheGhost/Library/metadata/f4/f499e12eaeb145bf9022f581c0b7fa5b
deleted file mode 100644
index e276717..0000000
Binary files a/EscapeTheGhost/Library/metadata/f4/f499e12eaeb145bf9022f581c0b7fa5b and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/f4/f499e12eaeb145bf9022f581c0b7fa5b.info b/EscapeTheGhost/Library/metadata/f4/f499e12eaeb145bf9022f581c0b7fa5b.info
deleted file mode 100644
index 6632a13..0000000
Binary files a/EscapeTheGhost/Library/metadata/f4/f499e12eaeb145bf9022f581c0b7fa5b.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/f4/f4da9cbb408be44968e85ee20767deef b/EscapeTheGhost/Library/metadata/f4/f4da9cbb408be44968e85ee20767deef
deleted file mode 100644
index 6897828..0000000
Binary files a/EscapeTheGhost/Library/metadata/f4/f4da9cbb408be44968e85ee20767deef and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/f4/f4da9cbb408be44968e85ee20767deef.info b/EscapeTheGhost/Library/metadata/f4/f4da9cbb408be44968e85ee20767deef.info
deleted file mode 100644
index eabeb5d..0000000
Binary files a/EscapeTheGhost/Library/metadata/f4/f4da9cbb408be44968e85ee20767deef.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/f5/f5600e6ae5a1464da659eca36bef9d64 b/EscapeTheGhost/Library/metadata/f5/f5600e6ae5a1464da659eca36bef9d64
deleted file mode 100644
index 211c70f..0000000
Binary files a/EscapeTheGhost/Library/metadata/f5/f5600e6ae5a1464da659eca36bef9d64 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/f5/f5600e6ae5a1464da659eca36bef9d64.info b/EscapeTheGhost/Library/metadata/f5/f5600e6ae5a1464da659eca36bef9d64.info
deleted file mode 100644
index 03d4ed2..0000000
Binary files a/EscapeTheGhost/Library/metadata/f5/f5600e6ae5a1464da659eca36bef9d64.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/f5/f5f67c52d1564df4a8936ccd202a3bd8 b/EscapeTheGhost/Library/metadata/f5/f5f67c52d1564df4a8936ccd202a3bd8
deleted file mode 100644
index 31299c7..0000000
Binary files a/EscapeTheGhost/Library/metadata/f5/f5f67c52d1564df4a8936ccd202a3bd8 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/f5/f5f67c52d1564df4a8936ccd202a3bd8.info b/EscapeTheGhost/Library/metadata/f5/f5f67c52d1564df4a8936ccd202a3bd8.info
deleted file mode 100644
index 311e931..0000000
Binary files a/EscapeTheGhost/Library/metadata/f5/f5f67c52d1564df4a8936ccd202a3bd8.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/f6/f68d88b9933cd4204925b22192bf15b4 b/EscapeTheGhost/Library/metadata/f6/f68d88b9933cd4204925b22192bf15b4
deleted file mode 100644
index ccf4f83..0000000
Binary files a/EscapeTheGhost/Library/metadata/f6/f68d88b9933cd4204925b22192bf15b4 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/f6/f68d88b9933cd4204925b22192bf15b4.info b/EscapeTheGhost/Library/metadata/f6/f68d88b9933cd4204925b22192bf15b4.info
deleted file mode 100644
index 75b097b..0000000
Binary files a/EscapeTheGhost/Library/metadata/f6/f68d88b9933cd4204925b22192bf15b4.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/f6/f695b5f9415c40b39ae877eaff41c96e b/EscapeTheGhost/Library/metadata/f6/f695b5f9415c40b39ae877eaff41c96e
deleted file mode 100644
index 8fa0510..0000000
Binary files a/EscapeTheGhost/Library/metadata/f6/f695b5f9415c40b39ae877eaff41c96e and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/f6/f695b5f9415c40b39ae877eaff41c96e.info b/EscapeTheGhost/Library/metadata/f6/f695b5f9415c40b39ae877eaff41c96e.info
deleted file mode 100644
index 5e39b48..0000000
Binary files a/EscapeTheGhost/Library/metadata/f6/f695b5f9415c40b39ae877eaff41c96e.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/f7/f70555f144d8491a825f0804e09c671c b/EscapeTheGhost/Library/metadata/f7/f70555f144d8491a825f0804e09c671c
deleted file mode 100644
index ac4f270..0000000
Binary files a/EscapeTheGhost/Library/metadata/f7/f70555f144d8491a825f0804e09c671c and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/f7/f70555f144d8491a825f0804e09c671c.info b/EscapeTheGhost/Library/metadata/f7/f70555f144d8491a825f0804e09c671c.info
deleted file mode 100644
index df250ee..0000000
Binary files a/EscapeTheGhost/Library/metadata/f7/f70555f144d8491a825f0804e09c671c.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/f7/f7a8357347c80dc69c08d0b1a05e2122 b/EscapeTheGhost/Library/metadata/f7/f7a8357347c80dc69c08d0b1a05e2122
deleted file mode 100644
index 1578164..0000000
Binary files a/EscapeTheGhost/Library/metadata/f7/f7a8357347c80dc69c08d0b1a05e2122 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/f7/f7a8357347c80dc69c08d0b1a05e2122.info b/EscapeTheGhost/Library/metadata/f7/f7a8357347c80dc69c08d0b1a05e2122.info
deleted file mode 100644
index 429760b..0000000
Binary files a/EscapeTheGhost/Library/metadata/f7/f7a8357347c80dc69c08d0b1a05e2122.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/f7/f7b54ff4a43d4fcf81b4538b678e0bcc b/EscapeTheGhost/Library/metadata/f7/f7b54ff4a43d4fcf81b4538b678e0bcc
deleted file mode 100644
index c0b120d..0000000
Binary files a/EscapeTheGhost/Library/metadata/f7/f7b54ff4a43d4fcf81b4538b678e0bcc and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/f7/f7b54ff4a43d4fcf81b4538b678e0bcc.info b/EscapeTheGhost/Library/metadata/f7/f7b54ff4a43d4fcf81b4538b678e0bcc.info
deleted file mode 100644
index e6c932f..0000000
Binary files a/EscapeTheGhost/Library/metadata/f7/f7b54ff4a43d4fcf81b4538b678e0bcc.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/f7/f7b8813687894ccf9d4e8261242250a0 b/EscapeTheGhost/Library/metadata/f7/f7b8813687894ccf9d4e8261242250a0
deleted file mode 100644
index dfb9275..0000000
Binary files a/EscapeTheGhost/Library/metadata/f7/f7b8813687894ccf9d4e8261242250a0 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/f7/f7b8813687894ccf9d4e8261242250a0.info b/EscapeTheGhost/Library/metadata/f7/f7b8813687894ccf9d4e8261242250a0.info
deleted file mode 100644
index 0371cc4..0000000
Binary files a/EscapeTheGhost/Library/metadata/f7/f7b8813687894ccf9d4e8261242250a0.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/f8/f851ca8f9604f442aafccf60a6713ce9 b/EscapeTheGhost/Library/metadata/f8/f851ca8f9604f442aafccf60a6713ce9
deleted file mode 100644
index ad0c4d2..0000000
Binary files a/EscapeTheGhost/Library/metadata/f8/f851ca8f9604f442aafccf60a6713ce9 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/f8/f851ca8f9604f442aafccf60a6713ce9.info b/EscapeTheGhost/Library/metadata/f8/f851ca8f9604f442aafccf60a6713ce9.info
deleted file mode 100644
index 64c8ec5..0000000
Binary files a/EscapeTheGhost/Library/metadata/f8/f851ca8f9604f442aafccf60a6713ce9.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/f8/f8e6a2d47aba4c6c9b3c5a72d9f48da5 b/EscapeTheGhost/Library/metadata/f8/f8e6a2d47aba4c6c9b3c5a72d9f48da5
deleted file mode 100644
index fc2b80d..0000000
Binary files a/EscapeTheGhost/Library/metadata/f8/f8e6a2d47aba4c6c9b3c5a72d9f48da5 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/f8/f8e6a2d47aba4c6c9b3c5a72d9f48da5.info b/EscapeTheGhost/Library/metadata/f8/f8e6a2d47aba4c6c9b3c5a72d9f48da5.info
deleted file mode 100644
index be5c771..0000000
Binary files a/EscapeTheGhost/Library/metadata/f8/f8e6a2d47aba4c6c9b3c5a72d9f48da5.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/f8/f8eca3a711f4842eba0c52ea9885ef7f b/EscapeTheGhost/Library/metadata/f8/f8eca3a711f4842eba0c52ea9885ef7f
deleted file mode 100644
index 0478288..0000000
Binary files a/EscapeTheGhost/Library/metadata/f8/f8eca3a711f4842eba0c52ea9885ef7f and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/f8/f8eca3a711f4842eba0c52ea9885ef7f.info b/EscapeTheGhost/Library/metadata/f8/f8eca3a711f4842eba0c52ea9885ef7f.info
deleted file mode 100644
index 7cab547..0000000
Binary files a/EscapeTheGhost/Library/metadata/f8/f8eca3a711f4842eba0c52ea9885ef7f.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/fa/fa27413e9edb06a6058d6c894eca0338 b/EscapeTheGhost/Library/metadata/fa/fa27413e9edb06a6058d6c894eca0338
deleted file mode 100644
index 50a909b..0000000
Binary files a/EscapeTheGhost/Library/metadata/fa/fa27413e9edb06a6058d6c894eca0338 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/fa/fa27413e9edb06a6058d6c894eca0338.info b/EscapeTheGhost/Library/metadata/fa/fa27413e9edb06a6058d6c894eca0338.info
deleted file mode 100644
index 5c6f1f0..0000000
Binary files a/EscapeTheGhost/Library/metadata/fa/fa27413e9edb06a6058d6c894eca0338.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/fa/fa6bd40a216346b783a4cce741d277a5 b/EscapeTheGhost/Library/metadata/fa/fa6bd40a216346b783a4cce741d277a5
deleted file mode 100644
index b38f17e..0000000
Binary files a/EscapeTheGhost/Library/metadata/fa/fa6bd40a216346b783a4cce741d277a5 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/fa/fa6bd40a216346b783a4cce741d277a5.info b/EscapeTheGhost/Library/metadata/fa/fa6bd40a216346b783a4cce741d277a5.info
deleted file mode 100644
index 6ec0fd1..0000000
Binary files a/EscapeTheGhost/Library/metadata/fa/fa6bd40a216346b783a4cce741d277a5.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/fc/fc3a810351931f5e6183e16b9beb5563 b/EscapeTheGhost/Library/metadata/fc/fc3a810351931f5e6183e16b9beb5563
deleted file mode 100644
index e616143..0000000
Binary files a/EscapeTheGhost/Library/metadata/fc/fc3a810351931f5e6183e16b9beb5563 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/fc/fc3a810351931f5e6183e16b9beb5563.info b/EscapeTheGhost/Library/metadata/fc/fc3a810351931f5e6183e16b9beb5563.info
deleted file mode 100644
index 8a7604c..0000000
Binary files a/EscapeTheGhost/Library/metadata/fc/fc3a810351931f5e6183e16b9beb5563.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/fc/fcc60c1d6bb544d9b712b652f418ff3a b/EscapeTheGhost/Library/metadata/fc/fcc60c1d6bb544d9b712b652f418ff3a
deleted file mode 100644
index 0704f6f..0000000
Binary files a/EscapeTheGhost/Library/metadata/fc/fcc60c1d6bb544d9b712b652f418ff3a and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/fc/fcc60c1d6bb544d9b712b652f418ff3a.info b/EscapeTheGhost/Library/metadata/fc/fcc60c1d6bb544d9b712b652f418ff3a.info
deleted file mode 100644
index ff31018..0000000
Binary files a/EscapeTheGhost/Library/metadata/fc/fcc60c1d6bb544d9b712b652f418ff3a.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/fd/fd382b8abbd6145c29e32af0e2a26d88 b/EscapeTheGhost/Library/metadata/fd/fd382b8abbd6145c29e32af0e2a26d88
deleted file mode 100644
index c99cbd7..0000000
Binary files a/EscapeTheGhost/Library/metadata/fd/fd382b8abbd6145c29e32af0e2a26d88 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/fd/fd382b8abbd6145c29e32af0e2a26d88.info b/EscapeTheGhost/Library/metadata/fd/fd382b8abbd6145c29e32af0e2a26d88.info
deleted file mode 100644
index 8ed9e09..0000000
Binary files a/EscapeTheGhost/Library/metadata/fd/fd382b8abbd6145c29e32af0e2a26d88.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/fd/fd871a8be47119612f7c254e96a822b7 b/EscapeTheGhost/Library/metadata/fd/fd871a8be47119612f7c254e96a822b7
deleted file mode 100644
index 42afb44..0000000
Binary files a/EscapeTheGhost/Library/metadata/fd/fd871a8be47119612f7c254e96a822b7 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/fd/fd871a8be47119612f7c254e96a822b7.info b/EscapeTheGhost/Library/metadata/fd/fd871a8be47119612f7c254e96a822b7.info
deleted file mode 100644
index 34db361..0000000
Binary files a/EscapeTheGhost/Library/metadata/fd/fd871a8be47119612f7c254e96a822b7.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/fe/fe684bbd80eab45778b9eb316893ff7c b/EscapeTheGhost/Library/metadata/fe/fe684bbd80eab45778b9eb316893ff7c
deleted file mode 100644
index ac35feb..0000000
Binary files a/EscapeTheGhost/Library/metadata/fe/fe684bbd80eab45778b9eb316893ff7c and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/fe/fe684bbd80eab45778b9eb316893ff7c.info b/EscapeTheGhost/Library/metadata/fe/fe684bbd80eab45778b9eb316893ff7c.info
deleted file mode 100644
index ac9f6b9..0000000
Binary files a/EscapeTheGhost/Library/metadata/fe/fe684bbd80eab45778b9eb316893ff7c.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/fe/fea24dc53b50441a9b2a8f9473fede33 b/EscapeTheGhost/Library/metadata/fe/fea24dc53b50441a9b2a8f9473fede33
deleted file mode 100644
index ea51532..0000000
Binary files a/EscapeTheGhost/Library/metadata/fe/fea24dc53b50441a9b2a8f9473fede33 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/fe/fea24dc53b50441a9b2a8f9473fede33.info b/EscapeTheGhost/Library/metadata/fe/fea24dc53b50441a9b2a8f9473fede33.info
deleted file mode 100644
index 468babc..0000000
Binary files a/EscapeTheGhost/Library/metadata/fe/fea24dc53b50441a9b2a8f9473fede33.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/fe/fea49a0730244a98bf1087f7ca9410a8 b/EscapeTheGhost/Library/metadata/fe/fea49a0730244a98bf1087f7ca9410a8
deleted file mode 100644
index 8337ad3..0000000
Binary files a/EscapeTheGhost/Library/metadata/fe/fea49a0730244a98bf1087f7ca9410a8 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/fe/fea49a0730244a98bf1087f7ca9410a8.info b/EscapeTheGhost/Library/metadata/fe/fea49a0730244a98bf1087f7ca9410a8.info
deleted file mode 100644
index 3be9a50..0000000
Binary files a/EscapeTheGhost/Library/metadata/fe/fea49a0730244a98bf1087f7ca9410a8.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/fe/fec197bad419341558f81f2ec8a05e18 b/EscapeTheGhost/Library/metadata/fe/fec197bad419341558f81f2ec8a05e18
deleted file mode 100644
index 85db80e..0000000
Binary files a/EscapeTheGhost/Library/metadata/fe/fec197bad419341558f81f2ec8a05e18 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/fe/fec197bad419341558f81f2ec8a05e18.info b/EscapeTheGhost/Library/metadata/fe/fec197bad419341558f81f2ec8a05e18.info
deleted file mode 100644
index 2921cec..0000000
Binary files a/EscapeTheGhost/Library/metadata/fe/fec197bad419341558f81f2ec8a05e18.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/ff/ff4e7e56da0854496bc82775733a8ef6 b/EscapeTheGhost/Library/metadata/ff/ff4e7e56da0854496bc82775733a8ef6
deleted file mode 100644
index c8c72d0..0000000
Binary files a/EscapeTheGhost/Library/metadata/ff/ff4e7e56da0854496bc82775733a8ef6 and /dev/null differ
diff --git a/EscapeTheGhost/Library/metadata/ff/ff4e7e56da0854496bc82775733a8ef6.info b/EscapeTheGhost/Library/metadata/ff/ff4e7e56da0854496bc82775733a8ef6.info
deleted file mode 100644
index 66697b9..0000000
Binary files a/EscapeTheGhost/Library/metadata/ff/ff4e7e56da0854496bc82775733a8ef6.info and /dev/null differ
diff --git a/EscapeTheGhost/Library/shadercompiler-UnityShaderCompiler0.log b/EscapeTheGhost/Library/shadercompiler-UnityShaderCompiler0.log
deleted file mode 100644
index 96b1a61..0000000
--- a/EscapeTheGhost/Library/shadercompiler-UnityShaderCompiler0.log
+++ /dev/null
@@ -1,10 +0,0 @@
-Base path: /home/sergei/Unity/Editor/Data
-Cmd: initializeCompiler
-Cmd: initializeCompiler
-Cmd: compileSnippet
- api=5 type=0 insize=1238 outsize=4269 kw= pd=UNITY_NO_DXT5nm UNITY_NO_RGBM UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_NO_CUBEMAP_ARRAY UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 SHADER_API_MOBILE UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING ok=1
-Cmd: initializeCompiler
-Cmd: compileSnippet
- api=15 type=0 insize=1564 outsize=6735 kw=UNITY_PASS_FORWARDBASE DIRECTIONAL pd=UNITY_NO_DXT5nm UNITY_ENABLE_REFLECTION_BUFFERS UNITY_NO_CUBEMAP_ARRAY UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 SHADER_API_DESKTOP UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHTMAP_DLDR_ENCODING ok=1
-Cmd: compileSnippet
- api=15 type=1 insize=1564 outsize=0 kw=UNITY_PASS_FORWARDBASE DIRECTIONAL pd=UNITY_NO_DXT5nm UNITY_ENABLE_REFLECTION_BUFFERS UNITY_NO_CUBEMAP_ARRAY UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 SHADER_API_DESKTOP UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHTMAP_DLDR_ENCODING ok=1
diff --git a/EscapeTheGhost/Library/shadercompiler-UnityShaderCompiler1.log b/EscapeTheGhost/Library/shadercompiler-UnityShaderCompiler1.log
deleted file mode 100644
index 34f6c85..0000000
--- a/EscapeTheGhost/Library/shadercompiler-UnityShaderCompiler1.log
+++ /dev/null
@@ -1,11 +0,0 @@
-Base path: /home/sergei/Unity/Editor/Data
-Cmd: initializeCompiler
-Cmd: compileSnippet
- api=9 type=0 insize=1238 outsize=6424 kw= pd=UNITY_NO_DXT5nm UNITY_NO_RGBM UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_NO_CUBEMAP_ARRAY UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 SHADER_API_MOBILE UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHTMAP_DLDR_ENCODING ok=1
-Cmd: compileSnippet
- api=5 type=1 insize=1238 outsize=0 kw= pd=UNITY_NO_DXT5nm UNITY_NO_RGBM UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_NO_CUBEMAP_ARRAY UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 SHADER_API_MOBILE UNITY_HARDWARE_TIER2 UNITY_COLORSPACE_GAMMA UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING ok=1
-Cmd: compileSnippet
- api=9 type=1 insize=1238 outsize=0 kw= pd=UNITY_NO_DXT5nm UNITY_NO_RGBM UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_NO_CUBEMAP_ARRAY UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER SHADER_API_MOBILE UNITY_HARDWARE_TIER1 UNITY_COLORSPACE_GAMMA UNITY_LIGHTMAP_DLDR_ENCODING ok=1
-Cmd: initializeCompiler
-
-Quitting shader compiler process
diff --git a/EscapeTheGhost/Library/shadercompiler-UnityShaderCompiler2.log b/EscapeTheGhost/Library/shadercompiler-UnityShaderCompiler2.log
deleted file mode 100644
index 17631d9..0000000
--- a/EscapeTheGhost/Library/shadercompiler-UnityShaderCompiler2.log
+++ /dev/null
@@ -1,11 +0,0 @@
-Base path: /home/sergei/Unity/Editor/Data
-Cmd: initializeCompiler
-Cmd: compileSnippet
- api=9 type=0 insize=1238 outsize=6424 kw= pd=UNITY_NO_DXT5nm UNITY_NO_RGBM UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_NO_CUBEMAP_ARRAY UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 SHADER_API_MOBILE UNITY_HARDWARE_TIER2 UNITY_COLORSPACE_GAMMA UNITY_LIGHTMAP_DLDR_ENCODING ok=1
-Cmd: compileSnippet
- api=5 type=1 insize=1238 outsize=0 kw= pd=UNITY_NO_DXT5nm UNITY_NO_RGBM UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_NO_CUBEMAP_ARRAY UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER SHADER_API_MOBILE UNITY_HARDWARE_TIER1 UNITY_COLORSPACE_GAMMA UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING ok=1
-Cmd: compileSnippet
- api=9 type=1 insize=1238 outsize=0 kw= pd=UNITY_NO_DXT5nm UNITY_NO_RGBM UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_NO_CUBEMAP_ARRAY UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 SHADER_API_MOBILE UNITY_HARDWARE_TIER2 UNITY_COLORSPACE_GAMMA UNITY_LIGHTMAP_DLDR_ENCODING ok=1
-Cmd: initializeCompiler
-
-Quitting shader compiler process
diff --git a/EscapeTheGhost/Library/shadercompiler-UnityShaderCompiler3.log b/EscapeTheGhost/Library/shadercompiler-UnityShaderCompiler3.log
deleted file mode 100644
index d5c3dca..0000000
--- a/EscapeTheGhost/Library/shadercompiler-UnityShaderCompiler3.log
+++ /dev/null
@@ -1,11 +0,0 @@
-Base path: /home/sergei/Unity/Editor/Data
-Cmd: initializeCompiler
-Cmd: compileSnippet
- api=9 type=0 insize=1238 outsize=6424 kw= pd=UNITY_NO_DXT5nm UNITY_NO_RGBM UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_NO_CUBEMAP_ARRAY UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER SHADER_API_MOBILE UNITY_HARDWARE_TIER1 UNITY_COLORSPACE_GAMMA UNITY_LIGHTMAP_DLDR_ENCODING ok=1
-Cmd: compileSnippet
- api=5 type=1 insize=1238 outsize=0 kw= pd=UNITY_NO_DXT5nm UNITY_NO_RGBM UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_NO_CUBEMAP_ARRAY UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 SHADER_API_MOBILE UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING ok=1
-Cmd: compileSnippet
- api=9 type=1 insize=1238 outsize=0 kw= pd=UNITY_NO_DXT5nm UNITY_NO_RGBM UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_NO_CUBEMAP_ARRAY UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 SHADER_API_MOBILE UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHTMAP_DLDR_ENCODING ok=1
-Cmd: initializeCompiler
-
-Quitting shader compiler process
diff --git a/EscapeTheGhost/Packages/manifest.json b/EscapeTheGhost/Packages/manifest.json
deleted file mode 100644
index 1342d0a..0000000
--- a/EscapeTheGhost/Packages/manifest.json
+++ /dev/null
@@ -1,39 +0,0 @@
-{
- "dependencies": {
- "com.unity.ads": "2.0.8",
- "com.unity.analytics": "2.0.16",
- "com.unity.package-manager-ui": "1.9.11",
- "com.unity.purchasing": "2.0.3",
- "com.unity.textmeshpro": "1.2.4",
- "com.unity.modules.ai": "1.0.0",
- "com.unity.modules.animation": "1.0.0",
- "com.unity.modules.assetbundle": "1.0.0",
- "com.unity.modules.audio": "1.0.0",
- "com.unity.modules.cloth": "1.0.0",
- "com.unity.modules.director": "1.0.0",
- "com.unity.modules.imageconversion": "1.0.0",
- "com.unity.modules.imgui": "1.0.0",
- "com.unity.modules.jsonserialize": "1.0.0",
- "com.unity.modules.particlesystem": "1.0.0",
- "com.unity.modules.physics": "1.0.0",
- "com.unity.modules.physics2d": "1.0.0",
- "com.unity.modules.screencapture": "1.0.0",
- "com.unity.modules.terrain": "1.0.0",
- "com.unity.modules.terrainphysics": "1.0.0",
- "com.unity.modules.tilemap": "1.0.0",
- "com.unity.modules.ui": "1.0.0",
- "com.unity.modules.uielements": "1.0.0",
- "com.unity.modules.umbra": "1.0.0",
- "com.unity.modules.unityanalytics": "1.0.0",
- "com.unity.modules.unitywebrequest": "1.0.0",
- "com.unity.modules.unitywebrequestassetbundle": "1.0.0",
- "com.unity.modules.unitywebrequestaudio": "1.0.0",
- "com.unity.modules.unitywebrequesttexture": "1.0.0",
- "com.unity.modules.unitywebrequestwww": "1.0.0",
- "com.unity.modules.vehicles": "1.0.0",
- "com.unity.modules.video": "1.0.0",
- "com.unity.modules.vr": "1.0.0",
- "com.unity.modules.wind": "1.0.0",
- "com.unity.modules.xr": "1.0.0"
- }
-}
diff --git a/EscapeTheGhost/ProjectSettings/AudioManager.asset b/EscapeTheGhost/ProjectSettings/AudioManager.asset
deleted file mode 100644
index 304925e..0000000
--- a/EscapeTheGhost/ProjectSettings/AudioManager.asset
+++ /dev/null
@@ -1,17 +0,0 @@
-%YAML 1.1
-%TAG !u! tag:unity3d.com,2011:
---- !u!11 &1
-AudioManager:
- m_ObjectHideFlags: 0
- m_Volume: 1
- Rolloff Scale: 1
- Doppler Factor: 1
- Default Speaker Mode: 2
- m_SampleRate: 0
- m_DSPBufferSize: 1024
- m_VirtualVoiceCount: 512
- m_RealVoiceCount: 32
- m_SpatializerPlugin:
- m_AmbisonicDecoderPlugin:
- m_DisableAudio: 0
- m_VirtualizeEffects: 1
diff --git a/EscapeTheGhost/ProjectSettings/ClusterInputManager.asset b/EscapeTheGhost/ProjectSettings/ClusterInputManager.asset
deleted file mode 100644
index a84cf4e..0000000
--- a/EscapeTheGhost/ProjectSettings/ClusterInputManager.asset
+++ /dev/null
@@ -1,6 +0,0 @@
-%YAML 1.1
-%TAG !u! tag:unity3d.com,2011:
---- !u!236 &1
-ClusterInputManager:
- m_ObjectHideFlags: 0
- m_Inputs: []
diff --git a/EscapeTheGhost/ProjectSettings/DynamicsManager.asset b/EscapeTheGhost/ProjectSettings/DynamicsManager.asset
deleted file mode 100644
index 78992f0..0000000
--- a/EscapeTheGhost/ProjectSettings/DynamicsManager.asset
+++ /dev/null
@@ -1,29 +0,0 @@
-%YAML 1.1
-%TAG !u! tag:unity3d.com,2011:
---- !u!55 &1
-PhysicsManager:
- m_ObjectHideFlags: 0
- serializedVersion: 7
- m_Gravity: {x: 0, y: -9.81, z: 0}
- m_DefaultMaterial: {fileID: 0}
- m_BounceThreshold: 2
- m_SleepThreshold: 0.005
- m_DefaultContactOffset: 0.01
- m_DefaultSolverIterations: 6
- m_DefaultSolverVelocityIterations: 1
- m_QueriesHitBackfaces: 0
- m_QueriesHitTriggers: 1
- m_EnableAdaptiveForce: 0
- m_ClothInterCollisionDistance: 0
- m_ClothInterCollisionStiffness: 0
- m_ContactsGeneration: 1
- m_LayerCollisionMatrix: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
- m_AutoSimulation: 1
- m_AutoSyncTransforms: 1
- m_ClothInterCollisionSettingsToggle: 0
- m_ContactPairsMode: 0
- m_BroadphaseType: 0
- m_WorldBounds:
- m_Center: {x: 0, y: 0, z: 0}
- m_Extent: {x: 250, y: 250, z: 250}
- m_WorldSubdivisions: 8
diff --git a/EscapeTheGhost/ProjectSettings/EditorBuildSettings.asset b/EscapeTheGhost/ProjectSettings/EditorBuildSettings.asset
deleted file mode 100644
index 62c5a75..0000000
--- a/EscapeTheGhost/ProjectSettings/EditorBuildSettings.asset
+++ /dev/null
@@ -1,11 +0,0 @@
-%YAML 1.1
-%TAG !u! tag:unity3d.com,2011:
---- !u!1045 &1
-EditorBuildSettings:
- m_ObjectHideFlags: 0
- serializedVersion: 2
- m_Scenes:
- - enabled: 1
- path: Assets/Scenes/SampleScene.unity
- guid: 2cda990e2423bbf4892e6590ba056729
- m_configObjects: {}
diff --git a/EscapeTheGhost/ProjectSettings/EditorSettings.asset b/EscapeTheGhost/ProjectSettings/EditorSettings.asset
deleted file mode 100644
index 3376fd8..0000000
--- a/EscapeTheGhost/ProjectSettings/EditorSettings.asset
+++ /dev/null
@@ -1,21 +0,0 @@
-%YAML 1.1
-%TAG !u! tag:unity3d.com,2011:
---- !u!159 &1
-EditorSettings:
- m_ObjectHideFlags: 0
- serializedVersion: 7
- m_ExternalVersionControlSupport: Visible Meta Files
- m_SerializationMode: 2
- m_LineEndingsForNewScripts: 2
- m_DefaultBehaviorMode: 1
- m_SpritePackerMode: 4
- m_SpritePackerPaddingPower: 1
- m_EtcTextureCompressorBehavior: 1
- m_EtcTextureFastCompressor: 1
- m_EtcTextureNormalCompressor: 2
- m_EtcTextureBestCompressor: 4
- m_ProjectGenerationIncludedExtensions: txt;xml;fnt;cd
- m_ProjectGenerationRootNamespace:
- m_UserGeneratedProjectSuffix:
- m_CollabEditorSettings:
- inProgressEnabled: 1
diff --git a/EscapeTheGhost/ProjectSettings/GraphicsSettings.asset b/EscapeTheGhost/ProjectSettings/GraphicsSettings.asset
deleted file mode 100644
index b35e28e..0000000
--- a/EscapeTheGhost/ProjectSettings/GraphicsSettings.asset
+++ /dev/null
@@ -1,60 +0,0 @@
-%YAML 1.1
-%TAG !u! tag:unity3d.com,2011:
---- !u!30 &1
-GraphicsSettings:
- m_ObjectHideFlags: 0
- serializedVersion: 12
- m_Deferred:
- m_Mode: 1
- m_Shader: {fileID: 69, guid: 0000000000000000f000000000000000, type: 0}
- m_DeferredReflections:
- m_Mode: 1
- m_Shader: {fileID: 74, guid: 0000000000000000f000000000000000, type: 0}
- m_ScreenSpaceShadows:
- m_Mode: 1
- m_Shader: {fileID: 64, guid: 0000000000000000f000000000000000, type: 0}
- m_LegacyDeferred:
- m_Mode: 1
- m_Shader: {fileID: 63, guid: 0000000000000000f000000000000000, type: 0}
- m_DepthNormals:
- m_Mode: 1
- m_Shader: {fileID: 62, guid: 0000000000000000f000000000000000, type: 0}
- m_MotionVectors:
- m_Mode: 1
- m_Shader: {fileID: 75, guid: 0000000000000000f000000000000000, type: 0}
- m_LightHalo:
- m_Mode: 1
- m_Shader: {fileID: 105, guid: 0000000000000000f000000000000000, type: 0}
- m_LensFlare:
- m_Mode: 1
- m_Shader: {fileID: 102, guid: 0000000000000000f000000000000000, type: 0}
- m_AlwaysIncludedShaders:
- - {fileID: 10753, guid: 0000000000000000f000000000000000, type: 0}
- - {fileID: 10770, guid: 0000000000000000f000000000000000, type: 0}
- - {fileID: 17000, guid: 0000000000000000f000000000000000, type: 0}
- - {fileID: 16000, guid: 0000000000000000f000000000000000, type: 0}
- - {fileID: 16002, guid: 0000000000000000f000000000000000, type: 0}
- m_PreloadedShaders: []
- m_SpritesDefaultMaterial: {fileID: 10754, guid: 0000000000000000f000000000000000,
- type: 0}
- m_CustomRenderPipeline: {fileID: 0}
- m_TransparencySortMode: 0
- m_TransparencySortAxis: {x: 0, y: 0, z: 1}
- m_DefaultRenderingPath: 1
- m_DefaultMobileRenderingPath: 1
- m_TierSettings: []
- m_LightmapStripping: 0
- m_FogStripping: 0
- m_InstancingStripping: 0
- m_LightmapKeepPlain: 1
- m_LightmapKeepDirCombined: 1
- m_LightmapKeepDynamicPlain: 1
- m_LightmapKeepDynamicDirCombined: 1
- m_LightmapKeepShadowMask: 1
- m_LightmapKeepSubtractive: 1
- m_FogKeepLinear: 1
- m_FogKeepExp: 1
- m_FogKeepExp2: 1
- m_AlbedoSwatchInfos: []
- m_LightsUseLinearIntensity: 0
- m_LightsUseColorTemperature: 0
diff --git a/EscapeTheGhost/ProjectSettings/InputManager.asset b/EscapeTheGhost/ProjectSettings/InputManager.asset
deleted file mode 100644
index 2596646..0000000
--- a/EscapeTheGhost/ProjectSettings/InputManager.asset
+++ /dev/null
@@ -1,295 +0,0 @@
-%YAML 1.1
-%TAG !u! tag:unity3d.com,2011:
---- !u!13 &1
-InputManager:
- m_ObjectHideFlags: 0
- serializedVersion: 2
- m_Axes:
- - serializedVersion: 3
- m_Name: Horizontal
- descriptiveName:
- descriptiveNegativeName:
- negativeButton: left
- positiveButton: right
- altNegativeButton: a
- altPositiveButton: d
- gravity: 3
- dead: 0.001
- sensitivity: 3
- snap: 1
- invert: 0
- type: 0
- axis: 0
- joyNum: 0
- - serializedVersion: 3
- m_Name: Vertical
- descriptiveName:
- descriptiveNegativeName:
- negativeButton: down
- positiveButton: up
- altNegativeButton: s
- altPositiveButton: w
- gravity: 3
- dead: 0.001
- sensitivity: 3
- snap: 1
- invert: 0
- type: 0
- axis: 0
- joyNum: 0
- - serializedVersion: 3
- m_Name: Fire1
- descriptiveName:
- descriptiveNegativeName:
- negativeButton:
- positiveButton: left ctrl
- altNegativeButton:
- altPositiveButton: mouse 0
- gravity: 1000
- dead: 0.001
- sensitivity: 1000
- snap: 0
- invert: 0
- type: 0
- axis: 0
- joyNum: 0
- - serializedVersion: 3
- m_Name: Fire2
- descriptiveName:
- descriptiveNegativeName:
- negativeButton:
- positiveButton: left alt
- altNegativeButton:
- altPositiveButton: mouse 1
- gravity: 1000
- dead: 0.001
- sensitivity: 1000
- snap: 0
- invert: 0
- type: 0
- axis: 0
- joyNum: 0
- - serializedVersion: 3
- m_Name: Fire3
- descriptiveName:
- descriptiveNegativeName:
- negativeButton:
- positiveButton: left shift
- altNegativeButton:
- altPositiveButton: mouse 2
- gravity: 1000
- dead: 0.001
- sensitivity: 1000
- snap: 0
- invert: 0
- type: 0
- axis: 0
- joyNum: 0
- - serializedVersion: 3
- m_Name: Jump
- descriptiveName:
- descriptiveNegativeName:
- negativeButton:
- positiveButton: space
- altNegativeButton:
- altPositiveButton:
- gravity: 1000
- dead: 0.001
- sensitivity: 1000
- snap: 0
- invert: 0
- type: 0
- axis: 0
- joyNum: 0
- - serializedVersion: 3
- m_Name: Mouse X
- descriptiveName:
- descriptiveNegativeName:
- negativeButton:
- positiveButton:
- altNegativeButton:
- altPositiveButton:
- gravity: 0
- dead: 0
- sensitivity: 0.1
- snap: 0
- invert: 0
- type: 1
- axis: 0
- joyNum: 0
- - serializedVersion: 3
- m_Name: Mouse Y
- descriptiveName:
- descriptiveNegativeName:
- negativeButton:
- positiveButton:
- altNegativeButton:
- altPositiveButton:
- gravity: 0
- dead: 0
- sensitivity: 0.1
- snap: 0
- invert: 0
- type: 1
- axis: 1
- joyNum: 0
- - serializedVersion: 3
- m_Name: Mouse ScrollWheel
- descriptiveName:
- descriptiveNegativeName:
- negativeButton:
- positiveButton:
- altNegativeButton:
- altPositiveButton:
- gravity: 0
- dead: 0
- sensitivity: 0.1
- snap: 0
- invert: 0
- type: 1
- axis: 2
- joyNum: 0
- - serializedVersion: 3
- m_Name: Horizontal
- descriptiveName:
- descriptiveNegativeName:
- negativeButton:
- positiveButton:
- altNegativeButton:
- altPositiveButton:
- gravity: 0
- dead: 0.19
- sensitivity: 1
- snap: 0
- invert: 0
- type: 2
- axis: 0
- joyNum: 0
- - serializedVersion: 3
- m_Name: Vertical
- descriptiveName:
- descriptiveNegativeName:
- negativeButton:
- positiveButton:
- altNegativeButton:
- altPositiveButton:
- gravity: 0
- dead: 0.19
- sensitivity: 1
- snap: 0
- invert: 1
- type: 2
- axis: 1
- joyNum: 0
- - serializedVersion: 3
- m_Name: Fire1
- descriptiveName:
- descriptiveNegativeName:
- negativeButton:
- positiveButton: joystick button 0
- altNegativeButton:
- altPositiveButton:
- gravity: 1000
- dead: 0.001
- sensitivity: 1000
- snap: 0
- invert: 0
- type: 0
- axis: 0
- joyNum: 0
- - serializedVersion: 3
- m_Name: Fire2
- descriptiveName:
- descriptiveNegativeName:
- negativeButton:
- positiveButton: joystick button 1
- altNegativeButton:
- altPositiveButton:
- gravity: 1000
- dead: 0.001
- sensitivity: 1000
- snap: 0
- invert: 0
- type: 0
- axis: 0
- joyNum: 0
- - serializedVersion: 3
- m_Name: Fire3
- descriptiveName:
- descriptiveNegativeName:
- negativeButton:
- positiveButton: joystick button 2
- altNegativeButton:
- altPositiveButton:
- gravity: 1000
- dead: 0.001
- sensitivity: 1000
- snap: 0
- invert: 0
- type: 0
- axis: 0
- joyNum: 0
- - serializedVersion: 3
- m_Name: Jump
- descriptiveName:
- descriptiveNegativeName:
- negativeButton:
- positiveButton: joystick button 3
- altNegativeButton:
- altPositiveButton:
- gravity: 1000
- dead: 0.001
- sensitivity: 1000
- snap: 0
- invert: 0
- type: 0
- axis: 0
- joyNum: 0
- - serializedVersion: 3
- m_Name: Submit
- descriptiveName:
- descriptiveNegativeName:
- negativeButton:
- positiveButton: return
- altNegativeButton:
- altPositiveButton: joystick button 0
- gravity: 1000
- dead: 0.001
- sensitivity: 1000
- snap: 0
- invert: 0
- type: 0
- axis: 0
- joyNum: 0
- - serializedVersion: 3
- m_Name: Submit
- descriptiveName:
- descriptiveNegativeName:
- negativeButton:
- positiveButton: enter
- altNegativeButton:
- altPositiveButton: space
- gravity: 1000
- dead: 0.001
- sensitivity: 1000
- snap: 0
- invert: 0
- type: 0
- axis: 0
- joyNum: 0
- - serializedVersion: 3
- m_Name: Cancel
- descriptiveName:
- descriptiveNegativeName:
- negativeButton:
- positiveButton: escape
- altNegativeButton:
- altPositiveButton: joystick button 1
- gravity: 1000
- dead: 0.001
- sensitivity: 1000
- snap: 0
- invert: 0
- type: 0
- axis: 0
- joyNum: 0
diff --git a/EscapeTheGhost/ProjectSettings/NavMeshAreas.asset b/EscapeTheGhost/ProjectSettings/NavMeshAreas.asset
deleted file mode 100644
index c8fa1b5..0000000
--- a/EscapeTheGhost/ProjectSettings/NavMeshAreas.asset
+++ /dev/null
@@ -1,91 +0,0 @@
-%YAML 1.1
-%TAG !u! tag:unity3d.com,2011:
---- !u!126 &1
-NavMeshProjectSettings:
- m_ObjectHideFlags: 0
- serializedVersion: 2
- areas:
- - name: Walkable
- cost: 1
- - name: Not Walkable
- cost: 1
- - name: Jump
- cost: 2
- - name:
- cost: 1
- - name:
- cost: 1
- - name:
- cost: 1
- - name:
- cost: 1
- - name:
- cost: 1
- - name:
- cost: 1
- - name:
- cost: 1
- - name:
- cost: 1
- - name:
- cost: 1
- - name:
- cost: 1
- - name:
- cost: 1
- - name:
- cost: 1
- - name:
- cost: 1
- - name:
- cost: 1
- - name:
- cost: 1
- - name:
- cost: 1
- - name:
- cost: 1
- - name:
- cost: 1
- - name:
- cost: 1
- - name:
- cost: 1
- - name:
- cost: 1
- - name:
- cost: 1
- - name:
- cost: 1
- - name:
- cost: 1
- - name:
- cost: 1
- - name:
- cost: 1
- - name:
- cost: 1
- - name:
- cost: 1
- - name:
- cost: 1
- m_LastAgentTypeID: -887442657
- m_Settings:
- - serializedVersion: 2
- agentTypeID: 0
- agentRadius: 0.5
- agentHeight: 2
- agentSlope: 45
- agentClimb: 0.75
- ledgeDropHeight: 0
- maxJumpAcrossDistance: 0
- minRegionArea: 2
- manualCellSize: 0
- cellSize: 0.16666667
- manualTileSize: 0
- tileSize: 256
- accuratePlacement: 0
- debug:
- m_Flags: 0
- m_SettingNames:
- - Humanoid
diff --git a/EscapeTheGhost/ProjectSettings/NetworkManager.asset b/EscapeTheGhost/ProjectSettings/NetworkManager.asset
deleted file mode 100644
index e9cd578..0000000
--- a/EscapeTheGhost/ProjectSettings/NetworkManager.asset
+++ /dev/null
@@ -1,8 +0,0 @@
-%YAML 1.1
-%TAG !u! tag:unity3d.com,2011:
---- !u!149 &1
-NetworkManager:
- m_ObjectHideFlags: 0
- m_DebugLevel: 0
- m_Sendrate: 15
- m_AssetToPrefab: {}
diff --git a/EscapeTheGhost/ProjectSettings/Physics2DSettings.asset b/EscapeTheGhost/ProjectSettings/Physics2DSettings.asset
deleted file mode 100644
index 8e9e021..0000000
--- a/EscapeTheGhost/ProjectSettings/Physics2DSettings.asset
+++ /dev/null
@@ -1,55 +0,0 @@
-%YAML 1.1
-%TAG !u! tag:unity3d.com,2011:
---- !u!19 &1
-Physics2DSettings:
- m_ObjectHideFlags: 0
- serializedVersion: 3
- m_Gravity: {x: 0, y: -9.81}
- m_DefaultMaterial: {fileID: 0}
- m_VelocityIterations: 8
- m_PositionIterations: 3
- m_VelocityThreshold: 1
- m_MaxLinearCorrection: 0.2
- m_MaxAngularCorrection: 8
- m_MaxTranslationSpeed: 100
- m_MaxRotationSpeed: 360
- m_BaumgarteScale: 0.2
- m_BaumgarteTimeOfImpactScale: 0.75
- m_TimeToSleep: 0.5
- m_LinearSleepTolerance: 0.01
- m_AngularSleepTolerance: 2
- m_DefaultContactOffset: 0.01
- m_JobOptions:
- serializedVersion: 2
- useMultithreading: 0
- useConsistencySorting: 0
- m_InterpolationPosesPerJob: 100
- m_NewContactsPerJob: 30
- m_CollideContactsPerJob: 100
- m_ClearFlagsPerJob: 200
- m_ClearBodyForcesPerJob: 200
- m_SyncDiscreteFixturesPerJob: 50
- m_SyncContinuousFixturesPerJob: 50
- m_FindNearestContactsPerJob: 100
- m_UpdateTriggerContactsPerJob: 100
- m_IslandSolverCostThreshold: 100
- m_IslandSolverBodyCostScale: 1
- m_IslandSolverContactCostScale: 10
- m_IslandSolverJointCostScale: 10
- m_IslandSolverBodiesPerJob: 50
- m_IslandSolverContactsPerJob: 50
- m_AutoSimulation: 1
- m_QueriesHitTriggers: 1
- m_QueriesStartInColliders: 1
- m_CallbacksOnDisable: 1
- m_AutoSyncTransforms: 1
- m_AlwaysShowColliders: 0
- m_ShowColliderSleep: 1
- m_ShowColliderContacts: 0
- m_ShowColliderAABB: 0
- m_ContactArrowScale: 0.2
- m_ColliderAwakeColor: {r: 0.5686275, g: 0.95686275, b: 0.54509807, a: 0.7529412}
- m_ColliderAsleepColor: {r: 0.5686275, g: 0.95686275, b: 0.54509807, a: 0.36078432}
- m_ColliderContactColor: {r: 1, g: 0, b: 1, a: 0.6862745}
- m_ColliderAABBColor: {r: 1, g: 1, b: 0, a: 0.2509804}
- m_LayerCollisionMatrix: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
diff --git a/EscapeTheGhost/ProjectSettings/PresetManager.asset b/EscapeTheGhost/ProjectSettings/PresetManager.asset
deleted file mode 100644
index 0832099..0000000
--- a/EscapeTheGhost/ProjectSettings/PresetManager.asset
+++ /dev/null
@@ -1,13 +0,0 @@
-%YAML 1.1
-%TAG !u! tag:unity3d.com,2011:
---- !u!1386491679 &1
-PresetManager:
- m_ObjectHideFlags: 0
- m_DefaultList:
- - type:
- m_NativeTypeID: 20
- m_ManagedTypePPtr: {fileID: 0}
- m_ManagedTypeFallback:
- defaultPresets:
- - m_Preset: {fileID: 2655988077585873504, guid: bfcfc320427f8224bbb7a96f3d3aebad,
- type: 2}
diff --git a/EscapeTheGhost/ProjectSettings/ProjectSettings.asset b/EscapeTheGhost/ProjectSettings/ProjectSettings.asset
deleted file mode 100644
index 39b8c01..0000000
--- a/EscapeTheGhost/ProjectSettings/ProjectSettings.asset
+++ /dev/null
@@ -1,722 +0,0 @@
-%YAML 1.1
-%TAG !u! tag:unity3d.com,2011:
---- !u!129 &1
-PlayerSettings:
- m_ObjectHideFlags: 0
- serializedVersion: 15
- productGUID: 63bab7eeb335448028ab46cee417621d
- AndroidProfiler: 0
- AndroidFilterTouchesWhenObscured: 0
- AndroidEnableSustainedPerformanceMode: 0
- defaultScreenOrientation: 4
- targetDevice: 2
- useOnDemandResources: 0
- accelerometerFrequency: 60
- companyName: ch.epfl.chili
- productName: EscapeTheGhost
- defaultCursor: {fileID: 0}
- cursorHotspot: {x: 0, y: 0}
- m_SplashScreenBackgroundColor: {r: 0.13725491, g: 0.12156863, b: 0.1254902, a: 1}
- m_ShowUnitySplashScreen: 1
- m_ShowUnitySplashLogo: 1
- m_SplashScreenOverlayOpacity: 1
- m_SplashScreenAnimation: 1
- m_SplashScreenLogoStyle: 1
- m_SplashScreenDrawMode: 0
- m_SplashScreenBackgroundAnimationZoom: 1
- m_SplashScreenLogoAnimationZoom: 1
- m_SplashScreenBackgroundLandscapeAspect: 1
- m_SplashScreenBackgroundPortraitAspect: 1
- m_SplashScreenBackgroundLandscapeUvs:
- serializedVersion: 2
- x: 0
- y: 0
- width: 1
- height: 1
- m_SplashScreenBackgroundPortraitUvs:
- serializedVersion: 2
- x: 0
- y: 0
- width: 1
- height: 1
- m_SplashScreenLogos: []
- m_VirtualRealitySplashScreen: {fileID: 0}
- m_HolographicTrackingLossScreen: {fileID: 0}
- defaultScreenWidth: 1024
- defaultScreenHeight: 768
- defaultScreenWidthWeb: 960
- defaultScreenHeightWeb: 600
- m_StereoRenderingPath: 0
- m_ActiveColorSpace: 0
- m_MTRendering: 1
- m_StackTraceTypes: 010000000100000001000000010000000100000001000000
- iosShowActivityIndicatorOnLoading: -1
- androidShowActivityIndicatorOnLoading: -1
- iosAppInBackgroundBehavior: 0
- displayResolutionDialog: 1
- iosAllowHTTPDownload: 1
- allowedAutorotateToPortrait: 1
- allowedAutorotateToPortraitUpsideDown: 1
- allowedAutorotateToLandscapeRight: 1
- allowedAutorotateToLandscapeLeft: 1
- useOSAutorotation: 1
- use32BitDisplayBuffer: 1
- preserveFramebufferAlpha: 0
- disableDepthAndStencilBuffers: 0
- androidBlitType: 0
- defaultIsNativeResolution: 1
- macRetinaSupport: 1
- runInBackground: 1
- captureSingleScreen: 0
- muteOtherAudioSources: 0
- Prepare IOS For Recording: 0
- Force IOS Speakers When Recording: 0
- deferSystemGesturesMode: 0
- hideHomeButton: 0
- submitAnalytics: 1
- usePlayerLog: 1
- bakeCollisionMeshes: 0
- forceSingleInstance: 0
- resizableWindow: 0
- useMacAppStoreValidation: 0
- macAppStoreCategory: public.app-category.games
- gpuSkinning: 0
- graphicsJobs: 0
- xboxPIXTextureCapture: 0
- xboxEnableAvatar: 0
- xboxEnableKinect: 0
- xboxEnableKinectAutoTracking: 0
- xboxEnableFitness: 0
- visibleInBackground: 1
- allowFullscreenSwitch: 1
- graphicsJobMode: 0
- fullscreenMode: 1
- xboxSpeechDB: 0
- xboxEnableHeadOrientation: 0
- xboxEnableGuest: 0
- xboxEnablePIXSampling: 0
- metalFramebufferOnly: 0
- n3dsDisableStereoscopicView: 0
- n3dsEnableSharedListOpt: 1
- n3dsEnableVSync: 0
- xboxOneResolution: 0
- xboxOneSResolution: 0
- xboxOneXResolution: 3
- xboxOneMonoLoggingLevel: 0
- xboxOneLoggingLevel: 1
- xboxOneDisableEsram: 0
- xboxOnePresentImmediateThreshold: 0
- switchQueueCommandMemory: 0
- videoMemoryForVertexBuffers: 0
- psp2PowerMode: 0
- psp2AcquireBGM: 1
- vulkanEnableSetSRGBWrite: 0
- vulkanUseSWCommandBuffers: 0
- m_SupportedAspectRatios:
- 4:3: 1
- 5:4: 1
- 16:10: 1
- 16:9: 1
- Others: 1
- bundleVersion: 0.1
- preloadedAssets: []
- metroInputSource: 0
- wsaTransparentSwapchain: 0
- m_HolographicPauseOnTrackingLoss: 1
- xboxOneDisableKinectGpuReservation: 0
- xboxOneEnable7thCore: 0
- vrSettings:
- cardboard:
- depthFormat: 0
- enableTransitionView: 0
- daydream:
- depthFormat: 0
- useSustainedPerformanceMode: 0
- enableVideoLayer: 0
- useProtectedVideoMemory: 0
- minimumSupportedHeadTracking: 0
- maximumSupportedHeadTracking: 1
- hololens:
- depthFormat: 1
- depthBufferSharingEnabled: 0
- oculus:
- sharedDepthBuffer: 0
- dashSupport: 0
- enable360StereoCapture: 0
- protectGraphicsMemory: 0
- useHDRDisplay: 0
- m_ColorGamuts: 00000000
- targetPixelDensity: 30
- resolutionScalingMode: 0
- androidSupportedAspectRatio: 1
- androidMaxAspectRatio: 2.1
- applicationIdentifier:
- Android: ch.epfl.chili.escapetheghost
- Standalone: com.Company.ProductName
- buildNumber: {}
- AndroidBundleVersionCode: 1
- AndroidMinSdkVersion: 16
- AndroidTargetSdkVersion: 0
- AndroidPreferredInstallLocation: 1
- aotOptions:
- stripEngineCode: 1
- iPhoneStrippingLevel: 0
- iPhoneScriptCallOptimization: 0
- ForceInternetPermission: 0
- ForceSDCardPermission: 0
- CreateWallpaper: 0
- APKExpansionFiles: 0
- keepLoadedShadersAlive: 0
- StripUnusedMeshComponents: 1
- VertexChannelCompressionMask: 4054
- iPhoneSdkVersion: 988
- iOSTargetOSVersionString: 8.0
- tvOSSdkVersion: 0
- tvOSRequireExtendedGameController: 0
- tvOSTargetOSVersionString: 9.0
- uIPrerenderedIcon: 0
- uIRequiresPersistentWiFi: 0
- uIRequiresFullScreen: 1
- uIStatusBarHidden: 1
- uIExitOnSuspend: 0
- uIStatusBarStyle: 0
- iPhoneSplashScreen: {fileID: 0}
- iPhoneHighResSplashScreen: {fileID: 0}
- iPhoneTallHighResSplashScreen: {fileID: 0}
- iPhone47inSplashScreen: {fileID: 0}
- iPhone55inPortraitSplashScreen: {fileID: 0}
- iPhone55inLandscapeSplashScreen: {fileID: 0}
- iPhone58inPortraitSplashScreen: {fileID: 0}
- iPhone58inLandscapeSplashScreen: {fileID: 0}
- iPadPortraitSplashScreen: {fileID: 0}
- iPadHighResPortraitSplashScreen: {fileID: 0}
- iPadLandscapeSplashScreen: {fileID: 0}
- iPadHighResLandscapeSplashScreen: {fileID: 0}
- appleTVSplashScreen: {fileID: 0}
- appleTVSplashScreen2x: {fileID: 0}
- tvOSSmallIconLayers: []
- tvOSSmallIconLayers2x: []
- tvOSLargeIconLayers: []
- tvOSLargeIconLayers2x: []
- tvOSTopShelfImageLayers: []
- tvOSTopShelfImageLayers2x: []
- tvOSTopShelfImageWideLayers: []
- tvOSTopShelfImageWideLayers2x: []
- iOSLaunchScreenType: 0
- iOSLaunchScreenPortrait: {fileID: 0}
- iOSLaunchScreenLandscape: {fileID: 0}
- iOSLaunchScreenBackgroundColor:
- serializedVersion: 2
- rgba: 0
- iOSLaunchScreenFillPct: 100
- iOSLaunchScreenSize: 100
- iOSLaunchScreenCustomXibPath:
- iOSLaunchScreeniPadType: 0
- iOSLaunchScreeniPadImage: {fileID: 0}
- iOSLaunchScreeniPadBackgroundColor:
- serializedVersion: 2
- rgba: 0
- iOSLaunchScreeniPadFillPct: 100
- iOSLaunchScreeniPadSize: 100
- iOSLaunchScreeniPadCustomXibPath:
- iOSUseLaunchScreenStoryboard: 0
- iOSLaunchScreenCustomStoryboardPath:
- iOSDeviceRequirements: []
- iOSURLSchemes: []
- iOSBackgroundModes: 0
- iOSMetalForceHardShadows: 0
- metalEditorSupport: 1
- metalAPIValidation: 1
- iOSRenderExtraFrameOnPause: 0
- appleDeveloperTeamID:
- iOSManualSigningProvisioningProfileID:
- tvOSManualSigningProvisioningProfileID:
- iOSManualSigningProvisioningProfileType: 0
- tvOSManualSigningProvisioningProfileType: 0
- appleEnableAutomaticSigning: 0
- iOSRequireARKit: 0
- appleEnableProMotion: 0
- vulkanEditorSupport: 0
- clonedFromGUID: 5f34be1353de5cf4398729fda238591b
- templatePackageId: com.unity.template.2d@1.0.1
- templateDefaultScene: Assets/Scenes/SampleScene.unity
- AndroidTargetArchitectures: 5
- AndroidSplashScreenScale: 0
- androidSplashScreen: {fileID: 0}
- AndroidKeystoreName:
- AndroidKeyaliasName:
- AndroidBuildApkPerCpuArchitecture: 0
- AndroidTVCompatibility: 1
- AndroidIsGame: 1
- AndroidEnableTango: 0
- androidEnableBanner: 1
- androidUseLowAccuracyLocation: 0
- m_AndroidBanners:
- - width: 320
- height: 180
- banner: {fileID: 0}
- androidGamepadSupportLevel: 0
- resolutionDialogBanner: {fileID: 0}
- m_BuildTargetIcons: []
- m_BuildTargetPlatformIcons:
- - m_BuildTarget: Android
- m_Icons:
- - m_Textures: []
- m_Width: 432
- m_Height: 432
- m_Kind: 2
- m_SubKind:
- - m_Textures: []
- m_Width: 324
- m_Height: 324
- m_Kind: 2
- m_SubKind:
- - m_Textures: []
- m_Width: 216
- m_Height: 216
- m_Kind: 2
- m_SubKind:
- - m_Textures: []
- m_Width: 162
- m_Height: 162
- m_Kind: 2
- m_SubKind:
- - m_Textures: []
- m_Width: 108
- m_Height: 108
- m_Kind: 2
- m_SubKind:
- - m_Textures: []
- m_Width: 81
- m_Height: 81
- m_Kind: 2
- m_SubKind:
- - m_Textures: []
- m_Width: 192
- m_Height: 192
- m_Kind: 1
- m_SubKind:
- - m_Textures: []
- m_Width: 144
- m_Height: 144
- m_Kind: 1
- m_SubKind:
- - m_Textures: []
- m_Width: 96
- m_Height: 96
- m_Kind: 1
- m_SubKind:
- - m_Textures: []
- m_Width: 72
- m_Height: 72
- m_Kind: 1
- m_SubKind:
- - m_Textures: []
- m_Width: 48
- m_Height: 48
- m_Kind: 1
- m_SubKind:
- - m_Textures: []
- m_Width: 36
- m_Height: 36
- m_Kind: 1
- m_SubKind:
- - m_Textures: []
- m_Width: 192
- m_Height: 192
- m_Kind: 0
- m_SubKind:
- - m_Textures: []
- m_Width: 144
- m_Height: 144
- m_Kind: 0
- m_SubKind:
- - m_Textures: []
- m_Width: 96
- m_Height: 96
- m_Kind: 0
- m_SubKind:
- - m_Textures: []
- m_Width: 72
- m_Height: 72
- m_Kind: 0
- m_SubKind:
- - m_Textures: []
- m_Width: 48
- m_Height: 48
- m_Kind: 0
- m_SubKind:
- - m_Textures: []
- m_Width: 36
- m_Height: 36
- m_Kind: 0
- m_SubKind:
- m_BuildTargetBatching: []
- m_BuildTargetGraphicsAPIs: []
- m_BuildTargetVRSettings: []
- m_BuildTargetEnableVuforiaSettings: []
- openGLRequireES31: 0
- openGLRequireES31AEP: 0
- m_TemplateCustomTags: {}
- mobileMTRendering:
- Android: 1
- iPhone: 1
- tvOS: 1
- m_BuildTargetGroupLightmapEncodingQuality: []
- m_BuildTargetGroupLightmapSettings: []
- playModeTestRunnerEnabled: 0
- runPlayModeTestAsEditModeTest: 0
- actionOnDotNetUnhandledException: 1
- enableInternalProfiler: 0
- logObjCUncaughtExceptions: 1
- enableCrashReportAPI: 0
- cameraUsageDescription:
- locationUsageDescription:
- microphoneUsageDescription:
- switchNetLibKey:
- switchSocketMemoryPoolSize: 6144
- switchSocketAllocatorPoolSize: 128
- switchSocketConcurrencyLimit: 14
- switchScreenResolutionBehavior: 2
- switchUseCPUProfiler: 0
- switchApplicationID: 0x01004b9000490000
- switchNSODependencies:
- switchTitleNames_0:
- switchTitleNames_1:
- switchTitleNames_2:
- switchTitleNames_3:
- switchTitleNames_4:
- switchTitleNames_5:
- switchTitleNames_6:
- switchTitleNames_7:
- switchTitleNames_8:
- switchTitleNames_9:
- switchTitleNames_10:
- switchTitleNames_11:
- switchTitleNames_12:
- switchTitleNames_13:
- switchTitleNames_14:
- switchPublisherNames_0:
- switchPublisherNames_1:
- switchPublisherNames_2:
- switchPublisherNames_3:
- switchPublisherNames_4:
- switchPublisherNames_5:
- switchPublisherNames_6:
- switchPublisherNames_7:
- switchPublisherNames_8:
- switchPublisherNames_9:
- switchPublisherNames_10:
- switchPublisherNames_11:
- switchPublisherNames_12:
- switchPublisherNames_13:
- switchPublisherNames_14:
- switchIcons_0: {fileID: 0}
- switchIcons_1: {fileID: 0}
- switchIcons_2: {fileID: 0}
- switchIcons_3: {fileID: 0}
- switchIcons_4: {fileID: 0}
- switchIcons_5: {fileID: 0}
- switchIcons_6: {fileID: 0}
- switchIcons_7: {fileID: 0}
- switchIcons_8: {fileID: 0}
- switchIcons_9: {fileID: 0}
- switchIcons_10: {fileID: 0}
- switchIcons_11: {fileID: 0}
- switchIcons_12: {fileID: 0}
- switchIcons_13: {fileID: 0}
- switchIcons_14: {fileID: 0}
- switchSmallIcons_0: {fileID: 0}
- switchSmallIcons_1: {fileID: 0}
- switchSmallIcons_2: {fileID: 0}
- switchSmallIcons_3: {fileID: 0}
- switchSmallIcons_4: {fileID: 0}
- switchSmallIcons_5: {fileID: 0}
- switchSmallIcons_6: {fileID: 0}
- switchSmallIcons_7: {fileID: 0}
- switchSmallIcons_8: {fileID: 0}
- switchSmallIcons_9: {fileID: 0}
- switchSmallIcons_10: {fileID: 0}
- switchSmallIcons_11: {fileID: 0}
- switchSmallIcons_12: {fileID: 0}
- switchSmallIcons_13: {fileID: 0}
- switchSmallIcons_14: {fileID: 0}
- switchManualHTML:
- switchAccessibleURLs:
- switchLegalInformation:
- switchMainThreadStackSize: 1048576
- switchPresenceGroupId:
- switchLogoHandling: 0
- switchReleaseVersion: 0
- switchDisplayVersion: 1.0.0
- switchStartupUserAccount: 0
- switchTouchScreenUsage: 0
- switchSupportedLanguagesMask: 0
- switchLogoType: 0
- switchApplicationErrorCodeCategory:
- switchUserAccountSaveDataSize: 0
- switchUserAccountSaveDataJournalSize: 0
- switchApplicationAttribute: 0
- switchCardSpecSize: -1
- switchCardSpecClock: -1
- switchRatingsMask: 0
- switchRatingsInt_0: 0
- switchRatingsInt_1: 0
- switchRatingsInt_2: 0
- switchRatingsInt_3: 0
- switchRatingsInt_4: 0
- switchRatingsInt_5: 0
- switchRatingsInt_6: 0
- switchRatingsInt_7: 0
- switchRatingsInt_8: 0
- switchRatingsInt_9: 0
- switchRatingsInt_10: 0
- switchRatingsInt_11: 0
- switchLocalCommunicationIds_0:
- switchLocalCommunicationIds_1:
- switchLocalCommunicationIds_2:
- switchLocalCommunicationIds_3:
- switchLocalCommunicationIds_4:
- switchLocalCommunicationIds_5:
- switchLocalCommunicationIds_6:
- switchLocalCommunicationIds_7:
- switchParentalControl: 0
- switchAllowsScreenshot: 1
- switchAllowsVideoCapturing: 1
- switchAllowsRuntimeAddOnContentInstall: 0
- switchDataLossConfirmation: 0
- switchSupportedNpadStyles: 3
- switchNativeFsCacheSize: 32
- switchIsHoldTypeHorizontal: 0
- switchSupportedNpadCount: 8
- switchSocketConfigEnabled: 0
- switchTcpInitialSendBufferSize: 32
- switchTcpInitialReceiveBufferSize: 64
- switchTcpAutoSendBufferSizeMax: 256
- switchTcpAutoReceiveBufferSizeMax: 256
- switchUdpSendBufferSize: 9
- switchUdpReceiveBufferSize: 42
- switchSocketBufferEfficiency: 4
- switchSocketInitializeEnabled: 1
- switchNetworkInterfaceManagerInitializeEnabled: 1
- switchPlayerConnectionEnabled: 1
- ps4NPAgeRating: 12
- ps4NPTitleSecret:
- ps4NPTrophyPackPath:
- ps4ParentalLevel: 11
- ps4ContentID: ED1633-NPXX51362_00-0000000000000000
- ps4Category: 0
- ps4MasterVersion: 01.00
- ps4AppVersion: 01.00
- ps4AppType: 0
- ps4ParamSfxPath:
- ps4VideoOutPixelFormat: 0
- ps4VideoOutInitialWidth: 1920
- ps4VideoOutBaseModeInitialWidth: 1920
- ps4VideoOutReprojectionRate: 60
- ps4PronunciationXMLPath:
- ps4PronunciationSIGPath:
- ps4BackgroundImagePath:
- ps4StartupImagePath:
- ps4StartupImagesFolder:
- ps4IconImagesFolder:
- ps4SaveDataImagePath:
- ps4SdkOverride:
- ps4BGMPath:
- ps4ShareFilePath:
- ps4ShareOverlayImagePath:
- ps4PrivacyGuardImagePath:
- ps4NPtitleDatPath:
- ps4RemotePlayKeyAssignment: -1
- ps4RemotePlayKeyMappingDir:
- ps4PlayTogetherPlayerCount: 0
- ps4EnterButtonAssignment: 1
- ps4ApplicationParam1: 0
- ps4ApplicationParam2: 0
- ps4ApplicationParam3: 0
- ps4ApplicationParam4: 0
- ps4DownloadDataSize: 0
- ps4GarlicHeapSize: 2048
- ps4ProGarlicHeapSize: 2560
- ps4Passcode: frAQBc8Wsa1xVPfvJcrgRYwTiizs2trQ
- ps4pnSessions: 1
- ps4pnPresence: 1
- ps4pnFriends: 1
- ps4pnGameCustomData: 1
- playerPrefsSupport: 0
- enableApplicationExit: 0
- restrictedAudioUsageRights: 0
- ps4UseResolutionFallback: 0
- ps4ReprojectionSupport: 0
- ps4UseAudio3dBackend: 0
- ps4SocialScreenEnabled: 0
- ps4ScriptOptimizationLevel: 0
- ps4Audio3dVirtualSpeakerCount: 14
- ps4attribCpuUsage: 0
- ps4PatchPkgPath:
- ps4PatchLatestPkgPath:
- ps4PatchChangeinfoPath:
- ps4PatchDayOne: 0
- ps4attribUserManagement: 0
- ps4attribMoveSupport: 0
- ps4attrib3DSupport: 0
- ps4attribShareSupport: 0
- ps4attribExclusiveVR: 0
- ps4disableAutoHideSplash: 0
- ps4videoRecordingFeaturesUsed: 0
- ps4contentSearchFeaturesUsed: 0
- ps4attribEyeToEyeDistanceSettingVR: 0
- ps4IncludedModules: []
- monoEnv:
- psp2Splashimage: {fileID: 0}
- psp2NPTrophyPackPath:
- psp2NPSupportGBMorGJP: 0
- psp2NPAgeRating: 12
- psp2NPTitleDatPath:
- psp2NPCommsID:
- psp2NPCommunicationsID:
- psp2NPCommsPassphrase:
- psp2NPCommsSig:
- psp2ParamSfxPath:
- psp2ManualPath:
- psp2LiveAreaGatePath:
- psp2LiveAreaBackroundPath:
- psp2LiveAreaPath:
- psp2LiveAreaTrialPath:
- psp2PatchChangeInfoPath:
- psp2PatchOriginalPackage:
- psp2PackagePassword: F69AzBlax3CF3EDNhm3soLBPh71Yexui
- psp2KeystoneFile:
- psp2MemoryExpansionMode: 0
- psp2DRMType: 0
- psp2StorageType: 0
- psp2MediaCapacity: 0
- psp2DLCConfigPath:
- psp2ThumbnailPath:
- psp2BackgroundPath:
- psp2SoundPath:
- psp2TrophyCommId:
- psp2TrophyPackagePath:
- psp2PackagedResourcesPath:
- psp2SaveDataQuota: 10240
- psp2ParentalLevel: 1
- psp2ShortTitle: Not Set
- psp2ContentID: IV0000-ABCD12345_00-0123456789ABCDEF
- psp2Category: 0
- psp2MasterVersion: 01.00
- psp2AppVersion: 01.00
- psp2TVBootMode: 0
- psp2EnterButtonAssignment: 2
- psp2TVDisableEmu: 0
- psp2AllowTwitterDialog: 1
- psp2Upgradable: 0
- psp2HealthWarning: 0
- psp2UseLibLocation: 0
- psp2InfoBarOnStartup: 0
- psp2InfoBarColor: 0
- psp2ScriptOptimizationLevel: 0
- splashScreenBackgroundSourceLandscape: {fileID: 0}
- splashScreenBackgroundSourcePortrait: {fileID: 0}
- spritePackerPolicy:
- webGLMemorySize: 256
- webGLExceptionSupport: 1
- webGLNameFilesAsHashes: 0
- webGLDataCaching: 1
- webGLDebugSymbols: 0
- webGLEmscriptenArgs:
- webGLModulesDirectory:
- webGLTemplate: APPLICATION:Default
- webGLAnalyzeBuildSize: 0
- webGLUseEmbeddedResources: 0
- webGLCompressionFormat: 1
- webGLLinkerTarget: 1
- scriptingDefineSymbols: {}
- platformArchitecture: {}
- scriptingBackend: {}
- il2cppCompilerConfiguration: {}
- incrementalIl2cppBuild: {}
- allowUnsafeCode: 0
- additionalIl2CppArgs:
- scriptingRuntimeVersion: 0
- apiCompatibilityLevelPerPlatform: {}
- m_RenderingPath: 1
- m_MobileRenderingPath: 1
- metroPackageName: Template_2D
- metroPackageVersion:
- metroCertificatePath:
- metroCertificatePassword:
- metroCertificateSubject:
- metroCertificateIssuer:
- metroCertificateNotAfter: 0000000000000000
- metroApplicationDescription: Template_2D
- wsaImages: {}
- metroTileShortName:
- metroTileShowName: 0
- metroMediumTileShowName: 0
- metroLargeTileShowName: 0
- metroWideTileShowName: 0
- metroDefaultTileSize: 1
- metroTileForegroundText: 2
- metroTileBackgroundColor: {r: 0.13333334, g: 0.17254902, b: 0.21568628, a: 0}
- metroSplashScreenBackgroundColor: {r: 0.12941177, g: 0.17254902, b: 0.21568628,
- a: 1}
- metroSplashScreenUseBackgroundColor: 0
- platformCapabilities: {}
- metroFTAName:
- metroFTAFileTypes: []
- metroProtocolName:
- metroCompilationOverrides: 1
- n3dsUseExtSaveData: 0
- n3dsCompressStaticMem: 1
- n3dsExtSaveDataNumber: 0x12345
- n3dsStackSize: 131072
- n3dsTargetPlatform: 2
- n3dsRegion: 7
- n3dsMediaSize: 0
- n3dsLogoStyle: 3
- n3dsTitle: GameName
- n3dsProductCode:
- n3dsApplicationId: 0xFF3FF
- XboxOneProductId:
- XboxOneUpdateKey:
- XboxOneSandboxId:
- XboxOneContentId:
- XboxOneTitleId:
- XboxOneSCId:
- XboxOneGameOsOverridePath:
- XboxOnePackagingOverridePath:
- XboxOneAppManifestOverridePath:
- XboxOneVersion: 1.0.0.0
- XboxOnePackageEncryption: 0
- XboxOnePackageUpdateGranularity: 2
- XboxOneDescription:
- XboxOneLanguage:
- - enus
- XboxOneCapability: []
- XboxOneGameRating: {}
- XboxOneIsContentPackage: 0
- XboxOneEnableGPUVariability: 0
- XboxOneSockets: {}
- XboxOneSplashScreen: {fileID: 0}
- XboxOneAllowedProductIds: []
- XboxOnePersistentLocalStorageSize: 0
- XboxOneXTitleMemory: 8
- xboxOneScriptCompiler: 0
- vrEditorSettings:
- daydream:
- daydreamIconForeground: {fileID: 0}
- daydreamIconBackground: {fileID: 0}
- cloudServicesEnabled:
- Build: 0
- Collab: 0
- ErrorHub: 0
- Hub: 0
- UNet: 0
- facebookSdkVersion: 7.9.4
- apiCompatibilityLevel: 2
- cloudProjectId: 16be371e-c8b2-4b7e-8015-a8a74fbc6ab8
- projectName: EscapeTheGhost
- organizationId: etoestja1
- cloudEnabled: 0
- enableNativePlatformBackendsForNewInputSystem: 0
- disableOldInputManagerSupport: 0
diff --git a/EscapeTheGhost/ProjectSettings/ProjectVersion.txt b/EscapeTheGhost/ProjectSettings/ProjectVersion.txt
deleted file mode 100644
index 0498f4d..0000000
--- a/EscapeTheGhost/ProjectSettings/ProjectVersion.txt
+++ /dev/null
@@ -1 +0,0 @@
-m_EditorVersion: 2018.2.0f2
diff --git a/EscapeTheGhost/ProjectSettings/QualitySettings.asset b/EscapeTheGhost/ProjectSettings/QualitySettings.asset
deleted file mode 100644
index b055962..0000000
--- a/EscapeTheGhost/ProjectSettings/QualitySettings.asset
+++ /dev/null
@@ -1,191 +0,0 @@
-%YAML 1.1
-%TAG !u! tag:unity3d.com,2011:
---- !u!47 &1
-QualitySettings:
- m_ObjectHideFlags: 0
- serializedVersion: 5
- m_CurrentQuality: 3
- m_QualitySettings:
- - serializedVersion: 2
- name: Very Low
- pixelLightCount: 0
- shadows: 0
- shadowResolution: 0
- shadowProjection: 1
- shadowCascades: 1
- shadowDistance: 15
- shadowNearPlaneOffset: 3
- shadowCascade2Split: 0.33333334
- shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667}
- shadowmaskMode: 0
- blendWeights: 1
- textureQuality: 1
- anisotropicTextures: 0
- antiAliasing: 0
- softParticles: 0
- softVegetation: 0
- realtimeReflectionProbes: 0
- billboardsFaceCameraPosition: 0
- vSyncCount: 0
- lodBias: 0.3
- maximumLODLevel: 0
- particleRaycastBudget: 4
- asyncUploadTimeSlice: 2
- asyncUploadBufferSize: 4
- resolutionScalingFixedDPIFactor: 1
- excludedTargetPlatforms: []
- - serializedVersion: 2
- name: Low
- pixelLightCount: 0
- shadows: 0
- shadowResolution: 0
- shadowProjection: 1
- shadowCascades: 1
- shadowDistance: 20
- shadowNearPlaneOffset: 3
- shadowCascade2Split: 0.33333334
- shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667}
- shadowmaskMode: 0
- blendWeights: 2
- textureQuality: 0
- anisotropicTextures: 0
- antiAliasing: 0
- softParticles: 0
- softVegetation: 0
- realtimeReflectionProbes: 0
- billboardsFaceCameraPosition: 0
- vSyncCount: 0
- lodBias: 0.4
- maximumLODLevel: 0
- particleRaycastBudget: 16
- asyncUploadTimeSlice: 2
- asyncUploadBufferSize: 4
- resolutionScalingFixedDPIFactor: 1
- excludedTargetPlatforms: []
- - serializedVersion: 2
- name: Medium
- pixelLightCount: 1
- shadows: 0
- shadowResolution: 0
- shadowProjection: 1
- shadowCascades: 1
- shadowDistance: 20
- shadowNearPlaneOffset: 3
- shadowCascade2Split: 0.33333334
- shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667}
- shadowmaskMode: 0
- blendWeights: 2
- textureQuality: 0
- anisotropicTextures: 0
- antiAliasing: 0
- softParticles: 0
- softVegetation: 0
- realtimeReflectionProbes: 0
- billboardsFaceCameraPosition: 0
- vSyncCount: 1
- lodBias: 0.7
- maximumLODLevel: 0
- particleRaycastBudget: 64
- asyncUploadTimeSlice: 2
- asyncUploadBufferSize: 4
- resolutionScalingFixedDPIFactor: 1
- excludedTargetPlatforms: []
- - serializedVersion: 2
- name: High
- pixelLightCount: 2
- shadows: 0
- shadowResolution: 1
- shadowProjection: 1
- shadowCascades: 2
- shadowDistance: 40
- shadowNearPlaneOffset: 3
- shadowCascade2Split: 0.33333334
- shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667}
- shadowmaskMode: 1
- blendWeights: 2
- textureQuality: 0
- anisotropicTextures: 0
- antiAliasing: 0
- softParticles: 0
- softVegetation: 1
- realtimeReflectionProbes: 0
- billboardsFaceCameraPosition: 0
- vSyncCount: 1
- lodBias: 1
- maximumLODLevel: 0
- particleRaycastBudget: 256
- asyncUploadTimeSlice: 2
- asyncUploadBufferSize: 4
- resolutionScalingFixedDPIFactor: 1
- excludedTargetPlatforms: []
- - serializedVersion: 2
- name: Very High
- pixelLightCount: 3
- shadows: 0
- shadowResolution: 2
- shadowProjection: 1
- shadowCascades: 2
- shadowDistance: 70
- shadowNearPlaneOffset: 3
- shadowCascade2Split: 0.33333334
- shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667}
- shadowmaskMode: 1
- blendWeights: 4
- textureQuality: 0
- anisotropicTextures: 0
- antiAliasing: 0
- softParticles: 0
- softVegetation: 1
- realtimeReflectionProbes: 0
- billboardsFaceCameraPosition: 0
- vSyncCount: 1
- lodBias: 1.5
- maximumLODLevel: 0
- particleRaycastBudget: 1024
- asyncUploadTimeSlice: 2
- asyncUploadBufferSize: 4
- resolutionScalingFixedDPIFactor: 1
- excludedTargetPlatforms: []
- - serializedVersion: 2
- name: Ultra
- pixelLightCount: 4
- shadows: 0
- shadowResolution: 0
- shadowProjection: 1
- shadowCascades: 4
- shadowDistance: 150
- shadowNearPlaneOffset: 3
- shadowCascade2Split: 0.33333334
- shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667}
- shadowmaskMode: 1
- blendWeights: 4
- textureQuality: 0
- anisotropicTextures: 0
- antiAliasing: 0
- softParticles: 0
- softVegetation: 1
- realtimeReflectionProbes: 0
- billboardsFaceCameraPosition: 0
- vSyncCount: 1
- lodBias: 2
- maximumLODLevel: 0
- particleRaycastBudget: 4096
- asyncUploadTimeSlice: 2
- asyncUploadBufferSize: 4
- resolutionScalingFixedDPIFactor: 1
- excludedTargetPlatforms: []
- m_PerPlatformDefaultQuality:
- Android: 2
- Nintendo 3DS: 5
- Nintendo Switch: 5
- PS4: 5
- PSM: 5
- PSP2: 2
- Standalone: 5
- Tizen: 2
- WebGL: 3
- WiiU: 5
- Windows Store Apps: 5
- XboxOne: 5
- iPhone: 2
- tvOS: 2
diff --git a/EscapeTheGhost/ProjectSettings/TagManager.asset b/EscapeTheGhost/ProjectSettings/TagManager.asset
deleted file mode 100644
index 3281f1b..0000000
--- a/EscapeTheGhost/ProjectSettings/TagManager.asset
+++ /dev/null
@@ -1,43 +0,0 @@
-%YAML 1.1
-%TAG !u! tag:unity3d.com,2011:
---- !u!78 &1
-TagManager:
- serializedVersion: 2
- tags: []
- layers:
- - Default
- - TransparentFX
- - Ignore Raycast
- -
- - Water
- - UI
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- m_SortingLayers:
- - name: Default
- uniqueID: 0
- locked: 0
diff --git a/EscapeTheGhost/ProjectSettings/TimeManager.asset b/EscapeTheGhost/ProjectSettings/TimeManager.asset
deleted file mode 100644
index 06bcc6d..0000000
--- a/EscapeTheGhost/ProjectSettings/TimeManager.asset
+++ /dev/null
@@ -1,9 +0,0 @@
-%YAML 1.1
-%TAG !u! tag:unity3d.com,2011:
---- !u!5 &1
-TimeManager:
- m_ObjectHideFlags: 0
- Fixed Timestep: 0.02
- Maximum Allowed Timestep: 0.1
- m_TimeScale: 1
- Maximum Particle Timestep: 0.03
diff --git a/EscapeTheGhost/ProjectSettings/UnityConnectSettings.asset b/EscapeTheGhost/ProjectSettings/UnityConnectSettings.asset
deleted file mode 100644
index 863581f..0000000
--- a/EscapeTheGhost/ProjectSettings/UnityConnectSettings.asset
+++ /dev/null
@@ -1,34 +0,0 @@
-%YAML 1.1
-%TAG !u! tag:unity3d.com,2011:
---- !u!310 &1
-UnityConnectSettings:
- m_ObjectHideFlags: 0
- m_Enabled: 1
- m_TestMode: 0
- m_TestEventUrl:
- m_TestConfigUrl:
- m_TestInitMode: 0
- CrashReportingSettings:
- m_EventUrl: https://perf-events.cloud.unity3d.com/api/events/crashes
- m_NativeEventUrl: https://perf-events.cloud.unity3d.com/symbolicate
- m_Enabled: 0
- m_CaptureEditorExceptions: 1
- UnityPurchasingSettings:
- m_Enabled: 0
- m_TestMode: 0
- UnityAnalyticsSettings:
- m_Enabled: 1
- m_InitializeOnStartup: 1
- m_TestMode: 0
- m_TestEventUrl:
- m_TestConfigUrl:
- UnityAdsSettings:
- m_Enabled: 0
- m_InitializeOnStartup: 1
- m_TestMode: 0
- m_IosGameId:
- m_AndroidGameId:
- m_GameIds: {}
- m_GameId:
- PerformanceReportingSettings:
- m_Enabled: 0

Event Timeline